:root {
    --blue: #2377BD;
    --darkclr: #103757;
    --white: #ffffff; 
    --black: #000000;
    --headclr: #0B273D;
    --textclr: #323435;
    --bgwhtxtclr: #666666;
    --bgdktxtclr: #9FAEBE;
    --bgdkclr: #19578A;
    --bgwhclr: #f9f9f9;
    --paraheadfont: "Montserrat", sans-serif;
    --subheadfont: "Mooli", sans-serif;
}

body {
    color: var(--textclr);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    font-family: var(--paraheadfont);
}

a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    color: var(--blue);
}

a:focus, input:focus, textarea:focus, button:focus {
    border: 0;
    outline: 0;
    box-shadow: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--headclr);
    font-family: var(--paraheadfont);
}

.container {
    max-width: 1480px;
    width: 85%;
}

section {
    position: relative;
}

ul.lists {
    margin-bottom: 20px;
}

ul.lists li {
    margin: 5px 0;
}

h2.m-title {
    position: relative;
    padding: 5px 0 5px 20px;
    font-size: 36px;
}

h2.m-title span {
    color: var(--blue);
}

h2.m-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--blue);
}



/* --- Scrollbar Code --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--blue);
}
::-webkit-scrollbar-thumb {
    background: var(--black);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--blue);
}

.light-txtclr {
    color: var(--white);
}

/* --- Button Code --- */
.custom-btn {
    display: inline-block;
    font-family: var(--paraheadfont);
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    padding: 15px 45px 15px 45px;
    border-radius: 0px;
    text-transform: capitalize;
    text-align: center;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.custom-btn:before {
    left: -20px;
    transform: translate(-50%, -50%);
}
.custom-btn:after {
    right: -20px;
    transform: translate(50%, -50%);
}
.custom-btn:before, .custom-btn:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--black);
    border-radius: 50%;
    z-index: -1;
}
.custom-btn:hover:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}
.custom-btn:hover:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.custom-btn span:after {
    content: '\2192';
    font-size: 32px;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    line-height: 1.3;
    transition: all 0.3s ease-in-out;
}

.custom-btn:hover span:after {
    transform: translateX(10px);
}


.dark-btn {
    color: var(--white);
    background-color: var(--darkclr);
}

.dark-btn:hover {
    color: var(--white);
}

.light-btn {
    color: var(--black);
    background-color: var(--white);
}

.light-btn:hover {
    color: var(--white);
}

.border-btn {
    color: var(--blue);
    border: 1px solid var(--blue);
}

.border-btn:hover {
    color: var(--white);
    border: 1px solid var(--blue);
}



/* --- Header Code --- */
header {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 999;
}
.home header{
    position: absolute;
}
.nav-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 20px 0;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}
.home .nav-header{
    background: transparent;
}
header.fixed-header .top-header {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
}

header.fixed-header {
    background-color: var(--white);
    position: fixed !important;
    animation: smoothScroll 1s forwards;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

header .logo-col img {
    transition: all 0.3s ease-in-out;
}

header.fixed-header .logo-col img {
    max-width: 80%;
}

nav button.navbar-toggler {
    background-color: var(--blue);
}

.nav-header .row {
    align-items: center;
}



.top-header {
    padding: 10px 0;
    border-bottom: 2px solid #2377BD;
    background: #F9F9F9;
    position: relative;
    z-index: 1;
}

.top-header .info-row {
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.header-btn {
    padding: 12px 25px;
    text-transform: uppercase;
}


ul.header-info {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    width: fit-content;
    padding: 5px 0;
    margin: 0;
}

ul.header-info li {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 0 15px;
    border-right: 2px solid #000;
    line-height: 1;
}

ul.header-info li:first-child {
    padding-left: 0;
}

ul.header-info li:last-child {
    padding-right: 0;
    border-right: 0;
}

ul.header-info li img {
    width: 20px;
    margin-right: 5px;
}



ul.h-links {
    display: flex;
    list-style: none;
    padding: 5px 0;
    width: fit-content;
    margin: 0;
}

ul.h-links li {
    font-size: 16px;
    font-weight: 500;
    padding: 0 15px;
    border-right: 2px solid #000;
    line-height: 1;
}

ul.h-links li a {
    color: var(--black);
}

ul.h-links li:first-child {
    padding-left: 0;
}

ul.h-links li:last-child {
    padding-right: 0;
    border-right: 0;
}


ul.social-links {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

ul.social-links>li {
    margin: 4px 4px;
}

ul.social-links>li img {
    width: 20px;
    transition: all 0.3s ease-in-out;
}

ul.social-links>li:hover img {
    transform: scale(1.2);
}


.nav-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

nav.navbar {
    width: fit-content;
}

ul.navbar-nav li {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 12px;
}

ul.navbar-nav li a {
    position: relative;
}

ul.navbar-nav li a:before, ul.navbar-nav li a:after {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 30px;
    height: 24px;
    background: url(/wp-content/uploads/2025/07/menu-select-1.webp) center no-repeat;
    background-size: contain;
    opacity: 0;
    transition: all 0.3s ease-in;
}

ul.navbar-nav li a:after {
    transform: rotate(-180deg);
    top: -24px;
}

ul.navbar-nav li.current-menu-item a {
    color: var(--blue);
}

ul.navbar-nav li a:hover:before,
ul.navbar-nav li a:hover:after,
ul.navbar-nav li.current-menu-item a:before,
ul.navbar-nav li.current-menu-item a:after {
    opacity: 1;
}







/* --- Footer Code --- */
footer {
    background-color: var(--headclr);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    color: var(--bgdktxtclr);
    font-family: var(--mulishfont);
    font-size: 14px;
    border-radius: 15px 15px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bottom-footer {
    background-color: var(--bgdkclr);
    width: 100%;
}

.bottom-footer .copyright-row {
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
}

.bottom-footer .copyright-row>* {
    width: fit-content;
    padding: 0;
    margin: 0;
    color: var(--white);
}



.f-cta-row .container {
    margin-top: -15%;
    position: relative;
    z-index: 1;
    width: 100%;
}

.f-cta-row .row {
    border-radius: 15px;
    background: var(--bgwhclr);
    padding: 40px 25px;
}

.f-cta-row .row>div:last-child {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    padding-left: 30px;
}

.f-content h2 {
    margin-bottom: 15px;
}

.f-content p {
    color: var(--textclr);
    font-size: 16px;
}

.f-content h2 span {
    display: block;
}

.f-content p {
    color: var(--textclr);
    font-size: 16px;
}

.f-list-content h6 {
    font-weight: 600;
    font-size: 20px;
}









.footer-info {
    margin: auto;
    margin-top: 100px;
    margin-bottom: 50px;
    clear: both;
    width: 100%;
}

.link-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.link-row h4, .newsletter-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.link-row ul {
    padding: 0;
    list-style: none;
}

.link-row ul li {
    margin-bottom: 8px;
}

.link-row ul a {
    color: var(--white);
}

.newsletter-col {
    padding-left: 40px;
}

.newsletter-col h4 { 
    margin-bottom: 5px;
    line-height: 1.4;
}

.newsletter-col input[type="email"] {
    color: #656565;
    font-size: 14px;
    letter-spacing: 1.2px;
    padding: 8px 15px;
    width: 100%;
    border: 0;
}

.newsletter-col input[type="submit"] {
    border-radius: 4px;
    border: 2px solid var(--white);
    background-color: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    width: 100%;
    padding: 8px 15px;
    transition: all 0.3s ease-in-out;
}

.newsletter-col input[type="submit"]:hover {
    background-color: var(--white);
    color: var(--black);
}

ul.fcta-lists {
    padding: 0;
    margin: 30px 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

ul.fcta-lists li {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--headclr);
    line-height: 1.3;
}

ul.fcta-lists li img {
    width: 60px;
    margin-right: 15px;
}

ul.fcta-lists li p {
    margin: 0;
    max-width: 180px;
}

ul.f-links {
    display: flex;
    list-style: none;
}

ul.f-links li {
    padding: 0 20px;
}

ul.f-links li:first-child {
    padding-left: 0;
}

ul.f-links li:last-child {
    padding-left: 0;
}

ul.f-links li a {
    color: var(--white);
}

a.f-logo {
    display: block;
    margin-bottom: 20px;
    width: 75%;
    max-width: 320px;
}

.sm-div {
    display: flex;
    margin-top: 20px;
}

ul.f-social-links {
    padding: 0;
    margin: 0 0 0 20px;
    display: flex;
    list-style: none;
    gap: 15px;
}

ul.f-social-links li a {
    color: var(--white);
    font-size: 18px;
}

ul.f-social-links li a:hover, .link-row ul a:hover {
    color: var(--blue);
}

.sm-div p {
    margin: 0;
}

.fab-content {
    max-width: 400px;
}


/* --- Back To Top Code --- */

.back-to-top {
    position: fixed;
    z-index: 9;
    bottom: 150px;
    right: -2px;
    background-color: var(--blue);
    padding: 10px 12px 5px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #979797;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

#btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    transition: all 0.3s ease-in-out;
    color: var(--white);
}

.back-to-top:hover {
    background-color: var(--darkclr);
}

.back-to-top:hover i {
    color: var(--white);
}



/* --- Contact Form 7 --- */

.wpcf7 form span.wpcf7-not-valid-tip {
    display: none;
}

.wpcf7 form input.wpcf7-not-valid, .wpcf7 form select.wpcf7-not-valid {
    border: 1px solid #ff0000;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    text-align: center;
}




/* --- Home Page Code --- */
.banner-section {
    background: linear-gradient(147deg, #DEF0FF 19.73%, #FFF 65.12%);
    padding: 180px 0 80px 0;
}

.sub-title {
    font-size: 18px;
    color: var(--blue);
}

.banner-section h1 {
    font-size: 45px;
}

.banner-section h3 {
    font-family: var(--subheadfont);
    font-size: 30px;
}

.banner-section h1 span {
    color: var(--blue);
    display: block;
}

.banner-section .desc {
    margin-top: 20px;
    max-width: 670px;
}

.b-content-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.review-box {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.review-box img {
    max-width: 280px;
    margin-bottom: 8px;
}

.b-inner-row {
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.btn-col {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}


.whowe-sec {
    background: url(/wp-content/uploads/2025/07/ab-bg-1-scaled.webp) lightgray 0px 19.546px / 100% 117.622% no-repeat;
}



.whychoose-sec {    
    background: conic-gradient(from 180deg at 50% 50%, #DEF0FF 15.332554131746292deg, #FFF 87.98986673355103deg, #DEF0FF 180.6147837638855deg, #FFF 267.4230623245239deg, #DEF0FF 336.6000008583069deg);
    padding: 70px 20px;
}

























/* --- Inner Page Code --- */
.inner-banner-section {
    padding: 120px 0 150px 0;
    background-color: var(--darkclr);
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.inner-banner-section h1 {
    color: var(--white);
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.36);
    font-size: 75px;
    font-weight: 700;
}




/* --- Animation Code --- */
@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes criss-cross-left {
    0% {
      left: -20px;
    }
    50% {
      left: 50%;
      transform: scale(2.0);
    }
    100% {
      left: 50%;
      transform: scale(15.0);
    }
}
  
@keyframes criss-cross-right {
    0% {
      right: -20px;
    }
    50% {
      right: 50%;
      transform: scale(2.0);
    }
    100% {
      right: 50%;
      transform: scale(15.0);
    }
}

@keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
}