/* 01. RESETING DEFAULT */
/* 02. SITE THEME SETTING  */
/* 03. COMMON COMPONENTS */
/* 04. HOME PAGE STYLING */
/* 05. SITE SECTION ANIMATION */

/* 01. RESETING DEFAULT */
/* /////////////////////////////////////////////// */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

::selection {
    background-color: var(--optional-color);
    color: var(--white-color);
}

/* 02. SITE THEME SETTING  */
/* /////////////////////////////////////////////// */
:root {
    --dark-blue-color: #071952;
    --light-shade-color: #EBF4F6;
    --helper-color: #37B7C3;
    --text-on-light: #484848;
    --text-on-dark: #C9C9C9;
    --optional-color: #088395;
    --white-color: #fff;
    --black-color: #000;
}

.dual-heading .heading-one {
    color: var(--dark-blue-color);
}

.dual-heading .heading-two {
    color: var(--helper-color);
}

.icon-lists {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
}

span.icon-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-box {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--helper-color);
    border-radius: 100px;
}

.icon-box i {
    color: var(--white-color);
}

.theme-color {
    color: var(--helper-color);
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: unset;
    bottom: 45px;
}

/* 03. COMMON COMPONENTS */
/* /////////////////////////////////////////////// */
#nav-ribon {
    background-color: var(--dark-blue-color);
}

.footer-social-icons i,
#nav-ribon i {
    color: var(--helper-color);
}

#nav-ribon > div div a span,
#nav-ribon > div div span {
    color: var(--white-color);
}

.footer-social-icons a.social-icon,
#nav-ribon a.social-icon {
    width: 30px;
    height: 30px;
    background-color: var(--helper-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

#nav-ribon .quick-contact a,
#nav-ribon .quick-contact {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
}

.footer-social-icons a.social-icon i,
#nav-ribon a.social-icon i {
    color: var(--dark-blue-color);
}

.footer-social-icons,
#nav-ribon .nav-social-icons {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 8px;
}

#main-nav {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--light-shade-color);
}

a.navbar-brand {
    width: 24%;
}

#main-nav > div > a > img {
    width: 300px;
}

div#navbarNav {
    width: 52%;
}

#navbarNav > ul {
    width: 80%;
    justify-content: space-around;
}

ul.dropdown-menu li {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

ul.dropdown-menu li i {
    color: var(--helper-color);
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbarNav > ul li a {
    font-weight: 500;
    color: var(--dark-blue-color);
}

#navbarNav .navbar-nav .nav-link.active,
#navbarNav .navbar-nav .nav-link.show {
    color: var(--helper-color);
    border-bottom: 2px solid var(--dark-blue-color);
}

#main-nav .nav-contact-us {
    width: 24%;
    display: flex;
    justify-content: end;
}

button.navbar-toggler {
    border: none;
    padding: 0;
    margin-left: 25px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    text-decoration: none;
    border: none;
}

.btn.btn-primary {
    width: max-content;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 50px;
    background: var(--dark-blue-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn.btn-primary.theme-light-btn {
    background-color: var(--helper-color);
    color: var(--white-color);
    width: 100%;
}

.separator {
    width: 150px;
    height: 2.5px;
    background: var(--helper-color);
    border-radius: 100px;
    margin: 10px 0;
    position: relative;
}

.separator::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100px;
    height: 2px;
    background-color: var(--dark-blue-color);
    border-radius: 100px;
}

/* 04. HOME PAGE STYLING */
/* /////////////////////////////////////////////// */
.hero-section {
    height: 100vh;
    /* background-image: url("../images/home-images/hero-bg.webp"); */
    /* background-image: url("../images/home-images/hero-bg-1.webp"); */
    background-image: url("../images/home-images/hero-bg-2.webp");
    background-size: 65%;
    background-position-x: right;
    background-position-y: center;
    background-repeat: no-repeat;
    position: relative;
}

#hero-section > div {
    height: 100%;
    display: flex;
    align-items: start;
    padding-top: 50px;
}

.hero-info {
    width: 50%;
}

#hero-section h1 {
    font-size: 70px;
    line-height: 80px;
    font-weight: 700;
    height: 245px;
}

.typing-text {
    border-right: 2px solid black;
    white-space: nowrap;
    display: inline-block;
}

@keyframes blink {
    0% { border-color: black; }
    50% { border-color: transparent; }
    100% { border-color: black; }
}

.typing-text {
    animation: blink 0.75s step-end infinite;
}

#fact-section > div {
    margin-top: -160px;
}

#fact-section > div > div {
    background-color: var(--light-shade-color);
    background-image: url("../images/Wave.svg");
    background-blend-mode: multiply;
    background-position-x: center;
    background-position-y: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    height: 150px;
    /* padding: 2% 10%; */
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

#fact-section .icon-box {
    width: 70px;
    height: 70px;
}

#fact-section .icon-heading.counter {
    font-size: 35px;
    font-weight: 700;
}

#fact-section span.icon-list {
    justify-content: center;
}

#fact-section .icon-lists {
    gap: 0;
}

.main-section {
    height: 80vh;
    background-image: url("../images/Dots.svg");
    background-repeat: no-repeat;
    background-size: 400px;
    background-position: left top;
}

.main-section .quick-title{
    color: var(--helper-color);
}

.about-us-imgs {
    position: relative;
    margin: -70px 0 0 0;
}

.about-us-imgs img:nth-child(1) {
    width: 60%;
}

.about-us-imgs img:nth-child(2) {
    width: 300px;
    position: absolute;
    top: 75%;
    left: 20%;
    z-index: 1;
    border-top: 25px solid var(--white-color);
    border-right: 25px solid var(--white-color);
    border-radius: 0 100px 100px 100px;
}

section#why-us {
    background: var(--dark-blue-color);
    height: 120vh;
    padding-bottom: 10%;
}

section#why-us .separator::after {
    left: 50%;
    transform: translate(-50%, 0);
    background-color: var(--white-color);
}

.why-us-header > i {
    height: 75px;
    width: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background-color: var(--helper-color);
    font-size: 30px;
    color: var(--white-color);
}

.why-us-header > h3 {
    font-size: 25px;
}

.service-card.p-4,
.why-us-card.p-4 {
    border: 1px solid var(--helper-color);
    border-radius: 15px;
}

#company-facts > div > div {
    margin-top: -116px;
    background-color: var(--optional-color);
    background-image: url("../images/Dots.svg");
    background-blend-mode: soft-light;
    background-repeat: no-repeat;
    background-size: 300px;
    background-position: right bottom;
    border-radius: 15px;
}

.company-img > img {
    width: 60%;
    border-top: 25px solid white;
    border-right: 25px solid white;
    border-radius: 0 100px 100px;
    margin-top: 50px;
}

#company-facts > div > div > div.col-lg-6 {
    border-right: 5px solid white;
}

#company-facts .icon-box {
    width: 70px;
    height: 70px;
    background: var(--helper-color);
}

#company-facts .icon-heading {
    font-size: 25px;
    font-weight: 500;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

section#services {
    background-color: var(--light-shade-color);
    margin: 100px 0 0 0;
    padding-top: 100px;
    padding-bottom: 100px;
}

section#services .separator::after {
    left: 50%;
    transform: translate(-50%, 0);
    background-color: var(--dark-blue-color);
}

.service-card {
    width: 100%;
}

.testimonial-wrapper {
    max-width: 100%;
    width: 100%;
}

.testimonial {
    text-align: center;
    padding: 8%;
    margin: 0 auto;
}

.testimonial-client-plofile {
    display: flex;
    justify-content: start;
    align-items: center;
}

.testimonial-client-plofile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.testimonial-heading span:first-child {
    display: block;
    font-weight: bold;
}

.testimonial-heading span:last-child {
    display: block;
    font-weight: normal;
    font-style: italic;
}

.carousel-item {
    width: 100%;
}

.carousel-indicators {
    justify-content: center;
}

.carousel-indicators button {
    background-color: #007bff;
}
  
section#testimonial-contact .separator::after {
    left: 50%;
    transform: translate(-50%, 0);
    background-color: var(--dark-blue-color);
}

div#testimonialCarousel {
    background-color: var(--dark-blue-color);
    border-radius: 15px;
    padding-bottom: 70px;
}

section#testimonial-contact {
    padding: 100px 0;
}

.form-container {
    background: var(--dark-blue-color);
    border-radius: 15px;
    position: relative;
}

.form-container::before {
    content: "";
    height: 20px;
    width: 20px;
    position: absolute;
    left: -10px;
    top: 10%;
    z-index: -1;
    transform: rotate(45deg);
    background: var(--dark-blue-color);
}

.form-group {
    position: relative;
}

.form-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--helper-color);
}

#testimonial-contact form > div > select,
.form-control {
    padding-left: 40px;
}

input.form-control, select.form-select {
    border-radius: 50px;
}

.text-area-container.form-group i {
    top: 18%;
}

.text-area-container.form-group textarea {
    border-radius: 20px;
    resize: none;
    background-color: transparent;
    color: var(--white-color);
}

form .btn.btn-primary {
    width: 100%;
}

.carousel-indicators {
    bottom: 30px;
}

input.form-control, select.form-select {
    border-radius: 50px;
    background: transparent;
    color: var(--white-color);
}

::placeholder {
    color: var(--white-color) !important;
}

select.form-select {
    color: #fff;
}

select.form-select option {
    color: var(--dark-blue-color);
}

.form-control:focus {
    color: var(--white-color);
    background-color: transparent;
    border-color: none
}

.faq-img-container > img {
    height: 600px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding-left: 35px;
}

div#faqAccordion {
    margin-bottom: 175px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--helper-color);
    color: var(--white-color);
}

footer {
    background-color: var(--dark-blue-color);
}

.subscribe-form {
    width: 60%;
}

input#sub-email {
    width: 100%;
    border-radius: 100px;
    border: none;
    padding: 0 20px;
}

.subscribe-form .btn.btn-primary {
    width: fit-content;
}

.subscribe-wrapper form input::placeholder {
    color: var(--text-on-light) !important;
}

.footer-brand img {
    width: 300px;
    margin: -15px 0 20px 0;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer h5 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-social-icons {
    justify-content: start;
}

.footer ul {
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer ul li a {
    text-decoration: none;
    color: #fff;
}

.footer ul li a:hover {
    color: #ddd;
}

.footer ul li i {
    margin-right: 10px;
    color: #fff;
}

.footer .row {
    margin-bottom: 1.5rem;
}

.footer .row:last-child {
    margin-bottom: 0;
}

.footer .copyright {
    font-size: 0.8rem;
    color: #ddd;
}

footer .subscribe-wrapper > div {
    /* background: red; */
    margin-top: -170px;
    margin-bottom: 80px !important;
}

footer > div.container.subscribe-wrapper > div > div {
    background: var(--optional-color);
    padding: 4%;
    border-radius: 15px;
}

footer > div:nth-child(2) > div:nth-child(1) {
    border-bottom: 1px solid var(--optional-color);
}

a.goto-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--helper-color);
    border-radius: 5px;
    color: var(--white-color);
}

/* 05. SITE SECTION ANIMATION */
.bottomToTop {
    opacity: 0;
    transform: translateY(250px); /* Start 100px below the original position */
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.bottomToTop.in-view {
    opacity: 1;
    transform: translateY(0); /* Slide to the original position */
}