@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --primary-color: #0093D4;
    --secondary-color: #B9E8FE;
    --tertiary-color: #07314A;
    --white-color: #FFFFFF;
    --black-color: #000000;


    /* font-size */
    --fs-h1: 64px;
    --fs-h2: 32px;
    --fs-h3: 28px;
    --fs-h4: 20px;
    --fs-body: 16px;
}


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

body {
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
    color: var(--tertiary-color);
}

.main_container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    overflow-x: hidden;
}

.customized_h4 {
    font-weight: 700;
    font-size: var(--fs-h4);
    line-height: 100%;
    text-transform: capitalize;
}

.customized_h2 {
    font-weight: 700;
    font-size: var(--fs-h2);
    line-height: 40px;
}

/* header styling begins */
header {
    padding: 20px 0;
    background-color: var(--white-color);
}
.menu_toggle {
    display: none;
    background: transparent;
    border: none;
}
nav {
    gap: 20px;
}

nav ul {
    gap: 20px;
    margin-bottom: 0;
}

nav ul li {
    list-style: none;
    display: flex;
}

nav ul li .nav_link {
    padding: 15px 10px;
    text-decoration: none;
    padding-bottom: 0;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.nav_link::after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    margin-top: 5px;
}

.nav_link:hover::after {
    width: 100%;
}

.nav_link.active::after {
    width: 100%;
}

.cta {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
}

.cta:hover {
    background-color: var(--tertiary-color);
    color: var(--white-color);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
}

.hero .swiper {
    width: 100%;
    height: 87vh;
    max-height: 800px;
}

.hero .swiper-wrapper,
.hero .swiper-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 80%);

}

.slide-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--white-color);
    max-width: 900px;
    overflow-y: hidden;
}

.hero-title {
    font-weight: 700;
    font-style: Bold;
    line-height: 80px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: capitalize;
    font-size: var(--fs-h1);
    margin: 0;
}

.hero-subtitle {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    margin-top: 10px;
}

.hero-cta {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.hero_btn_1 {
    background-color: var(--white-color);
    color: var(--primary-color);
    display: flex;
    gap: 10px;
    padding: 18px 25px;
    text-transform: capitalize;

}

.hero_btn_1:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transition: all 0.3s ease;
}

.hero_btn_1:hover img {
    filter: brightness(0) invert(1);
}

.hero_btn_2 {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-transform: capitalize;
    padding: 18px 53px;
}

.hero_btn_2:hover {
    background-color: var(--tertiary-color);
    color: var(--white-color);
    transition: all 0.3s ease;

}

.hero .hero-title,
.hero .hero-subtitle,
.hero .hero-cta {
    opacity: 0;
}

.hero .is-visible {
    opacity: 1;
}

.hero-pagination {
    bottom: 30px !important;
}

.hero .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, .6);
    opacity: 1;
}

.hero .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
    color: var(--white-color);
    width: 44px;
    height: 44px;
    background: #FFFFFF80;
    border-radius: 50%;
    display: none;
}

.hero .swiper-button-prev:after,
.hero .swiper-button-next:after {
    font-size: 18px;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
    background: rgba(0, 0, 0, .4);
}

/* hero styling ends */



.ratings {
    background-color: #065D86;
    padding: 40px 0;
    text-align: center;
}

.ratings_container {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
    color: var(--white-color);
}

.ratings_img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.ratings_title {
    font-weight: bold;
    font-size: var(--fs-h2);
    line-height: 100%;
    text-align: center;
    text-transform: capitalize;
    margin-top: 10px;

}

.ratings_subtitle {
    font-weight: 600;
    font-size: var(--fs-body);
    line-height: 100%;
    text-align: center;
    text-transform: capitalize;

}

/* ratings ends */

.who_we_are {
    padding: 90px 0;
    background-image: url(../images/who_we_are_bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.who_we_are_content {
    padding-top: 35px;
}

.who_we_are_text {
    font-weight: 600;
    font-size: var(--fs-body);
    line-height: 30px;
    /* margin-bottom: 35px; */
}

.who_we_are_cta {
    padding: 14px 33px;
    display: inline-block;
}

.who_we_are_content_col {
    overflow-y: hidden;
}

/* who we are ends */
.who_we_are_img,
.what_we_do_img {
    text-align: center;
}

.what_we_do {
    padding: 90px 0;
    background-image: url(../images/what_we_do_bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.what_we_do_content {
    padding-top: 70px;
}

.what_we_do_text {
    font-weight: 600;
    font-size: var(--fs-body);
    line-height: 30px;
}

.what_we_do_cta {
    padding: 14px 33px;
    display: inline-block;
}

.what_we_do_content_col {
    overflow-y: hidden;
}

/* what we do ends */
.services {
    padding: 90px 0;
    text-align: center;
}

.services_subtitle {
    font-weight: 600;
    font-size: var(--fs-body);
    line-height: 30px;
    text-align: center;
    text-transform: capitalize;
    max-width: 945px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.services_card {
    text-align: left;
    padding: 63px 24px;
    border: 2px solid var(--tertiary-color);
    border-radius: 10px;
    max-height: 315px;
    background: white;
    transition: all 0.3s ease-in-out;
}
.services_card.services_card_1:hover{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%), 
            url("../images/service_hover_1.png");
            background-size: cover;
background-position: center;
box-shadow: 0px 10px 16px 0px #00000040;
}
.services_card.services_card_1:hover{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%), 
            url("../images/service_hover_1.png");
            background-size: cover;
background-position: center;
box-shadow: 0px 10px 16px 0px #00000040;
}
.services_card.services_card_2:hover{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%), 
            url("../images/service_hover_2.png");
            background-size: cover;
background-position: center;
box-shadow: 0px 10px 16px 0px #00000040;
}
.services_card.services_card_3:hover{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%), 
            url("../images/service_hover_3.png");
            background-size: cover;
background-position: center;
box-shadow: 0px 10px 16px 0px #00000040;
}
.services_card.services_card_4:hover{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%), 
            url("../images/service_hover_4.jpg");
            background-size: cover;
background-position: center;
box-shadow: 0px 10px 16px 0px #00000040;
}
.services_card.services_card_5:hover{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%), 
            url("../images/service_hover_5.jpg");
            background-size: cover;
background-position: center;
box-shadow: 0px 10px 16px 0px #00000040;
}
.services_card.services_card_6:hover{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%), 
            url("../images/service_hover_6.jpg");
            background-size: cover;
background-position: center;
box-shadow: 0px 10px 16px 0px #00000040;
}
.services_card_title {
    margin: 0;
}

.services_card_top {
    gap: 16px;
}

.services_card_text {
    margin-top: 45px;
}

.services_img {
    background-color: var(--secondary-color);
    padding: 16px 14px;
    border-radius: 10px;
}

.services_container {
    overflow: hidden;
}

.services_cta {
    margin-top: 55px;
}

/* services end */

.contact_us {
    padding: 50px 0;
    background-image: url(../images/contact\ us\ bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.contact_us_text {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    max-width: 543px;
}

.contact_us_title {
    margin-bottom: 10px;
}

.contact_us_form {
    max-width: 534px;
    background-color: var(--tertiary-color);
    padding: 20px 20px 30px 20px;
    border-radius: 24px;
    margin-top: 20px;
}

.contact_us_btn {
    border: none;
    text-transform: capitalize;
    margin-top: 10px;
    width: 100%;
}

.contact_us_form .input-group {
    padding: 10px 12px;
    background-color: var(--white-color);
    border-radius: 12px;
    border: 1px solid #D5DEE7;
}

.contact_us_form .input-group-text {
    border: none;
    background-color: transparent;
    display: flex;
    align-items: flex-start;
}

.contact_us_form .input-group .form-control {
    border: none;
}

.contact_us_form .input-group .form-control:focus {
    box-shadow: none;
    outline: none;
}

.contact_us_form textarea {
    height: 160px;
    resize: none;
}

.clients {
    padding: 50px 0;
    overflow: hidden;
}

.clients_header {
    text-align: center;
    margin-bottom: 20px;
}

.clients_track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: clients-marquee 35s linear infinite;
    margin-top: 50px;
}

.clients_strip {
    display: flex;
    align-items: center;
    gap: 50px;
}

.client_logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: .95;
}

.client_logo:hover {
    opacity: 1;
}

.clients_title {
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.clients_subtitle {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    text-transform: capitalize;
}

.site_footer {
    background-image: url(../images/footer.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--white-color);
    font-size: 14px;
}

.footer_top {
    padding: 60px 0;
    font-weight: 600;
}

.footer_logo {
    height: auto;
    margin-bottom: 14px;
    width: 350px;
}

.footer_about {
    margin: 8px 0 16px;
    line-height: 26px;
    max-width: 400px;
}

.footer_social {
    gap: 20px;
    margin-top: 50px;
    display: flex;
}
.footer_social_mobile{
  display: none;
}
.footer_social .social_label {
    font-weight: 600;
    font-size: 14px;
}

.footer_social .social_links {
    gap: 12px;
}

.footer_social .social_links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer_social .social_links a:hover{
    background-color: var(--primary-color);
}
.footer_social .social_links a:hover img{
   filter: brightness(0) invert(1);
}

.footer_social .social_links a img {
    width: 18px;
    height: 18px;
}

.footer_title {
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 20px;
}

.footer_links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    max-width: 188px;
}

.footer_links a {
    color: var(--white-color);
    text-decoration: none;
}

.footer_links a:hover {
    color: var(--primary-color);
}

.footer_contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_contact .icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 5px;
}

.footer_contact li{
    margin-top: 10px;
}
.footer_contact li:first-child{
    margin-top: 0px;
}
.contact_line {
    margin: 0;
}

.contact_link {
    display: block;
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
}

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

.contact_emails {
    display: grid;
    gap: 4px;
}

.footer_bottom {
    background: #011D49;
    padding: 16px 0;
}

.footer_copy {
    text-align: center;
    margin: 0;
    font-weight: 500;
    font-size: 12px;
}





/* about page */

.inner_banner{
    height: 440px;
    background-image: url(/assets/images/about.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.inner_banner_container_1{
    height: 100%;
    display: flex;
align-items: center;
justify-content: center;
}
.inner_banner_container{
    display: flex;
    justify-self: center;
    align-self: center;
    color: #fff;
}
.inner_banner_content{
    text-align: center;
}
.inner_banner_title{
font-weight: 700;
font-size: 48px;
line-height: 100%;
text-align: center;
}
.inner_banner_subtitle{
font-weight: 700;
font-size: 32px;
line-height: 40px;
letter-spacing: 0%;
text-align: center;
margin: 0 auto;
margin-top: 24px;
max-width: 878px;

}

.about{
    padding: 70px 0;
}
.about .main_container{
    max-width: 1264px;
}
.about_text{
font-weight: 600;
font-size: 16px;
line-height: 30px;
letter-spacing: 0%;

}
.about_card{
    padding: 25px 24px;
    background-color: #B9E8FE;
    border: 1px solid var(--tertiary-color);
    gap: 15px;
    border-radius: 16px;
}
.about_card_text{
font-weight: 700;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
margin: 0;
}
.about_cards{
    margin-top: 24px;
}


.vision_mission{
    padding: 65px 0;
       background-image: url(/assets/images/visionbg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.vision_mission_cards{
    display: flex;
    overflow-y: hidden;
}
.vision_mission_container{
    overflow-y: hidden;
}
.vision_mission_cards .title{
    margin-top: 25px;
}
.value_container{
    overflow: hidden;
}
.vision_mission_cards .text{
font-weight: 700;
font-size: 16px;
line-height: 30px;
letter-spacing: 0%;
text-align: center;
max-width: 450px;
margin: 0 auto;
margin-top: 25px;
}
.vision_card{
    padding-right: 100px;
    width: 50%;
    text-align: center;
    border-right: 4px solid var(--tertiary-color);
    overflow-y: hidden;

}
.mission_card{
    padding-left: 100px;
    width: 50%;
    text-align: center;
    overflow-y: hidden;

}

.values{
   padding: 50px 0; 
}
.value_card{
    gap: 28px;
    padding: 30px 0;
    padding-bottom: 20px;
}
.value_cards{
    margin-top: 32px;
}
.value_card_title{ 
font-weight: 700;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
}
.value_card_text{
font-weight: 600;
font-size: 16px;
line-height: 20px;
letter-spacing: 0%;
max-width: 270px;
}

.choose{
    background-color: #E0F3FE;
    padding: 50px 0;
}
.choose_title{
font-weight: 700;
font-size: 50px;
    max-width: 520px;
letter-spacing: 0%;
}
.choose_list{
    margin-top: 50px;
}
.choose_item{
    margin-top: 25px;
}
.choose_item span {
font-weight: 600;
font-size: 16px;
line-height: 20px;
letter-spacing: 0%;
}

.inner_footer{
    text-align: center;
    padding: 116px 0;
    color: var(--white-color);
    background-image: url(/assets/images/inner_footer.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.inner_footer_title{
font-weight: 800;
font-style: Italic;
font-size: 32px;
line-height: 40px;
letter-spacing: 0%;
margin-bottom: 20px;
}

.inner_banner_services{
    background-image: url(../images/services_inner_banner.png);
}
.inner_banner_contact{
    background-image: url(../images/contact_banner.png);
}
.inner_banner_project{
    background-image: url(../images/project_banner.png);
}
.services_page{
    padding: 64px 0;
}
.service_div_content_title{
font-weight: 700;
font-size: 40px;
line-height: 45px;
letter-spacing: 0%;
max-width: 420px;
}
.services_page_subtitle{
    max-width: 1025px;
    margin: 0 auto;
font-weight: 700;
font-size: 20px;
line-height: 30px;
letter-spacing: 0%;
text-align: center;
margin-top: 24px;
}
.service_div_content_text{
font-weight: 600;
font-size: 16px;
line-height: 30px;
letter-spacing: 0%;
margin: 24px 0;
margin-top: 30px;
}
.service_div_card{
    margin-top: 65px;
    background-color: #E0F3FE;
    padding: 65px 40px;
    border-radius: 10px;
}
.service_div_content_cta a{
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 16px 31px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    gap: 8px;
    transition: 0.3s ease;
}
.service_div_content_cta{
    margin-top: 40px;
}

.service_div_content_cta a span{
    font-size: 16px;
    font-weight: 700;
}
.service_div_content_cta a:hover{
    background-color: var(--tertiary-color);
}
.service_div_content_cta a img{
    filter: brightness(0) invert(1);
}



.projects_page{
padding: 65px 0;
}
.projects-grid {
  margin-top: 24px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #f6fbff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.project-img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover .project-img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  background: linear-gradient(180deg, rgba(185, 232, 254, 0) 0%, #B9E8FE 69.71%);
  transition: opacity 0.25s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-caption {
font-weight: 600;
font-size: 16px;
line-height: 28px;
letter-spacing: 0%;
text-align: center;
}

.projects_portfolio{
  padding: 65px 0;
}

.projects-table-scroll{
  margin-top: 35px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.projects-table{
  min-width: 960px;
  text-align: center;
}

.projects-table thead th{
font-weight: 700;
font-size: 16px;
letter-spacing: 0%;
text-align: center;
  color: var(--tertiary-color);
  white-space: nowrap;
}

.projects-table th,
.projects-table td{
  border-color: #E4EEF6 !important;
  padding: 16px;
}

.projects-table tbody tr:nth-child(even){
  background: #FBFDFF;
}

.projects-table tbody td{
  font-size: 16px;
  line-height: 28px;
  color: #666;
}
.porfolio_image{
    text-align: center;
}
.porfolio_image_2{
    margin-top: 50px;
}
.porfolio_images{
    padding-bottom: 65px;
}

/* contact page */
.contact_page{
  padding: 65px 0;
}

.contact_info_text{
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  max-width: 610px;
  margin-top: 10px;
}

.info_block{ 
  gap: 16px;
  margin-top: 50px;
}

.info_icon{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}

.info_icon img{
  width: 22px;
  height: 22px;
}

.info_title{
  margin: 0 0 6px;
}

.info_link{
  display: block;
  text-decoration: none;
  color: var(--tertiary-color);
}

.info_text{ 
  margin: 0 0 6px;
  max-width: 400px;
}

.business_hours{
  margin-top: 28px;
  background: #E0F3FE;
  padding: 18px;
  border-radius: 12px;
  max-width: 600px;
}

.hours_list{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.hours_list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 6px;
  border-bottom: 1px solid #E4EEF6;
  font-weight: 600;
}

.hours_list li:last-child{
  border-bottom: none;
}

.contact_form_card{
  border: 1px solid #DDE8F0;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}

.sticky-col{
  position: sticky;
  top: 24px;
  align-self: flex-start;
  z-index: 1;
}

/* make the reused form white on contact page */
.contact_page .contact_us_form{
  background-color: var(--white-color);
  border-radius: 16px;
  padding: 0;
  max-width: 100%;
}

.contact_form_title{
  margin-bottom: 30px;
}

/* map section */
.contact_map .map_wrap{
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #E6F4FF;
  position: relative;
}
.contact_map iframe{ 
  width: 100%; 
  height: 100%; 
  border: 0; 
}

.contact_map .map_wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* tertiary color #07314A tinted gradient */
  background: linear-gradient(180deg, rgba(7,49,74,0.65) 0%, rgba(7,49,74,0.45) 50%, rgba(7,49,74,0.65) 100%);
}

