* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary: #135f9dd9;
    --primary-light: #ffffff;

    --text-red: #135F9D;
    --text-black: #171717;
    --text-grey: #868593;
    --text-grey-2: #8B8B8B;
    --text-white: #fff;
    --text-green: #A9FF00;
    --text-blue: #00E9FF;

    --primary-bg: #fff;
    --secondary-bg: #171717;
    --tertiary-bg: #1997FF;
    --tertiary-bg-deep: #E5E7E9;
    --green-bg: #A9FF00;

    --primary-font: "Inter Tight", sans-serif;
    --secondary-font: "Poppins", serif;
}

ol,
ul,
li,
a {
    list-style: none;
    text-decoration: none;
}

ol,
ul {
    padding: 0 !important;
    margin-bottom: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
ul {
    margin-bottom: 0 !important;
}

p {
    font-size: 16px !important;
    line-height: 1.6;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-black);
    font-family: var(--secondary-font);
}

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

.logo img {
    width: 230px;
}

.nav-close-btn {
    display: none;
}

.nav-close-btn i {
    color: var(--primary-bg);
}

.navigation {
    background: var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.navigation-links li a {
    font-weight: 400;
    color: var(--text-white);
    padding: 10px 16px;
    letter-spacing: 0.1rem;
}

.nav-close-btn {
    display: none;
}

.menu-btn {
    height: 36px;
    width: 36px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid var(--primary-bg);
    cursor: pointer;
    flex-shrink: 0;
}

.menu-btn i {
    font-size: 1.25rem;
    color: var(--primary-bg);
}

.navigation-scrolled {
    /* position: sticky;
    top: 0; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: #135f9d;
    transition: 0.4s ease;
}

.hero {
    height: 850px;
}

.hero-card {
    height: 100%;
}

.hero-content-container {
    position: absolute;
    z-index: 9999;
    top: 90px;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero-content-container .container {
    height: 100%;
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-content h1 {
    font-family: var(--primary-font);
    color: var(--primary-bg);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1rem !important;
}

.hero-content ul li {
    color: var(--text-green);
    font-size: 32px;
    font-weight: 600;
    font-family: var(--secondary-font);
}

.hero-content h6 {
    color: var(--text-white);
    font-weight: 300;
    font-size: 21px;
}

.hero-content h5 {
    color: var(--text-blue);
    font-weight: 400;
    font-size: 32px;
}

/* Common Section  */
.section {
    padding: 100px 0;
    position: relative;
}

.section h6 {
    color: var(--text-black);
    font-size: 20px;
}

.section h6 span {
    color: var(--tertiary-bg);
}

.section h2 {
    font-size: 42px;
    font-weight: 700;
}

.section p {
    line-height: 32px;
}

/* About */
.about-col {
    height: 100%;
}

.about-img {
    width: 100%;
}

.about-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Service */

.service {
    background: rgba(25, 151, 255, 0.08);
    padding-bottom: 200px;
}

.section.service h6 {
    background: #ffffff;
    border-radius: 40px;
    padding: 3px 20px;
    width: fit-content;
    margin: 0 auto;
}

.services {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

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

.service-card {
    position: relative;
}

.service-absolute {
    position: absolute;
    top: -10rem;
    bottom: 0;
    left: 0;
    right: 0;
}

.service-cardSwiper {
    padding-bottom: 10rem !important;
}

.service-text {
    position: absolute;
    z-index: 9999;
    top: 93%;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    width: 50%;
    margin: 0 auto;
    height: 145px;
    box-shadow: 0px 0px 10px #17171731;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.service-text i {
    font-size: 19px;
    color: var(--tertiary-bg);
    border: 2px solid var(--tertiary-bg);
    border-radius: 50px;
    padding: 2px;
    text-align: center;
    height: 34px;
    width: 34px;
}

/* Media Page */
.media-img {
    overflow: hidden;
    border-radius: 15px;
}

.media-card img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: 300ms ease;
    cursor: pointer;
}

.media-img:hover img {
    transform: scale(1.2);
}

.gallery h6 {
    color: var(--tertiary-bg);
}

.branches {
    padding-bottom: 100px;
    position: relative;
}

.branches h2 {
    color: var(--tertiary-bg);
    font-size: 45px;
    font-weight: 900;
    text-align: center;
}

.branches h4 {
    color: var(--text-black);
    font-size: 32px;
    font-weight: 500;
    text-align: center;
}

.branch-slide h4 {
    font-size: 28px;
    font-weight: 700;
}

.branch-slide {
    background: var(--primary-bg);
    box-shadow: 0px 0px 10px #0000002f;
    gap: 10px;
    padding: 15px;
    margin: 10px;
}

.branch-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.75rem;
}

.branch-content i {
    font-size: 1.65rem;
    color: #1997FF;
}

.footer {
    background: var(--primary);
    padding-bottom: 0;
    margin-top: 30px;
    padding-top: 50px;
}

.section.footer h6 {
    background: #ffffff;
    border-radius: 40px;
    padding: 3px 20px;
    width: fit-content;
    margin: 0 auto;
}

.footer-logo img {
    width: 270px;
}

.footer-text p {
    color: var(--primary-bg);
}

.footer h4 {
    color: var(--primary-bg);
}

.footer ul li a {
    color: var(--primary-bg);
    font-size: 17px;
    line-height: 37px;
}

.footer ul li i {
    color: var(--text-green);
}

.footer-icon i {
    color: var(--primary-bg) !important;
    font-size: 23px;
    margin-right: 8px;
}

.footer .bottom {
    position: relative;
    display: block;
    padding: 30px 0;
}

.footer .bottom p {
    color: var(--primary-bg);
    font-size: 15px;
    margin: 10px;
}

.footer .bottom p a {
    background: linear-gradient(to bottom, var(--base-color) 0%, var(--base-color) 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 1px 1px;
    color: var(--green-bg);
    text-decoration: none;
    transition: background-size .2s;
    line-height: 1.75em;
}

.divido {
    border-top: 1px dotted rgb(255, 255, 255);
    width: 100%;
}

.top {
    padding-bottom: 40px;
}

.branch-Swiper {
    padding-bottom: 3rem !important;
}

.about-content ul li {
    line-height: 42px;
    font-size: 18px;
}

.service-section {
    background: rgba(25, 151, 255, 0.08);
}

.gallery-page {
    margin: 110px 0;
}

/* Contact Us */
.contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-box:not(:first-child) {
    margin-top: 3rem;
}

.contact-info-icon {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.45rem;
    color: var(--text-black);
}

.contact-info-text h6 {
    font-size: 1.25rem;
    font-family: var(--primary-font);
    font-weight: 600;
}

.contact-info-text p {
    color: var(--text-grey);
    margin: 0.25rem 0 0.25rem 0 !important;
}

.contact-info-text a {
    font-weight: 600;
    color: var(--text-black);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.contact-info-text a i {
    color: var(--primary);
    margin-top: -1px;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form {
    padding: 3.5rem;
    border-radius: 20px;
    background-color: rgba(25, 151, 255, 0.08);
}

.contact-form h4 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--primary-font);
    margin-bottom: 1.75rem !important;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 2px solid var(--primary);
    background-color: var(--primary-bg);
}

.contact-form button {
    background-color: var(--primary) !important;
}

.address-card {
    padding: 2rem;
    border-radius: 20px;
    background-color: rgba(25, 151, 255, 0.08);
    align-items: center;
    height: 100%;
}

.address-card .address-icon {
    font-size: 2.5rem;
    color: var(--text-red);
}

.address-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--primary-font);
    margin-bottom: 1rem !important;
}

.address-card-info {
    width: 100%;
}

.address-card-info a {
    color: var(--text-black);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-weight: 500;
}

.address-card-info a i {
    font-size: 1.25rem;
    margin-top: -4px;
    color: var(--text-red);
}

.map-cont {
    width: 100%;
    max-width: 400px;
    border: 4px solid #000;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.pagi-left,
.pagi-right {
    font-size: 40px;
    color: var(--tertiary-bg);

}

.pagi-left {
    position: absolute;
    top: 300px;
    left: 0;
    bottom: 0;
}

.pagi-right {
    position: absolute;
    top: 300px;
    right: 91%;
    bottom: 0;
    z-index: 9999;
}

.menu-contact-lg {
    display: none;
}

/* Choose Us */
.choose-header-img img {
    width: 60px;
    position: relative;
}

.choose-header-img img:nth-child(1) {
    z-index: 1;
}

.choose-header-img img:nth-child(2) {
    z-index: -1;
}

.choose-header-img img:nth-child(3) {
    z-index: -3;
}

.choose-header-img img:not(:first-child) {
    margin-left: -30px;
}

.choose-us-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.choose-us-card {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.choose-us-card:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.25);
}

.choose-us-icon {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.25);
    margin: 0 auto;
}

.choose-us-card h6 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--primary-font);
    margin-top: 0.5rem;
}

.choose-us-icon i {
    font-size: 37px;
    color: var(--text-red);
}

.branch-Swiper .swiper-slide {
    height: auto !important;
}

.branch-slide {
    height: 100%;
}

/* Text Scroller */
.certificate-slider .swiper-slide,
.partner-slider .swiper-slide {
    width: max-content;
    display: flex;
    align-items: center;
}

.certificate-slider>.swiper-wrapper,
.partner-slider>.swiper-wrapper {
    transition-timing-function: linear;
}

.certificate-slider-card {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    height: 100px;
    width: 200px;
    border-radius: 15px;
    background-color: #f2f3f4;
}

.certificate-slider .swiper-slide img,
.partner-slider .swiper-slide img {
    height: 60px;
    width: 150px;
    object-fit: contain;
}

.certifications .section-header h2 {
    font-size: 2.5rem !important;
}

/* Promo Banner */
.promo-banner {
    margin-top: 24rem;
}

.promo-banner-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.promo-slider-container {
    position: relative;
}

.promo-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 42px;
    width: 42px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1997ff;
    z-index: 1;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor: pointer;
}

.promo-slider-nav i {
    font-size: 2rem;
    color: #fff;
}

.promo-left-nav {
    left: -21px;
}

.promo-right-nav {
    right: -21px;
}