/* Basic styling */
body {
    font-family: Arial, sans-serif;
    background-color: #1C1E22;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #808287
}
ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.navbar{
    background-color: #1C1E22 !important;
    padding: 10px 0px;
}

.nav-item{
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem !important;
    margin: .5rem;
    
}

.navbar-collapse{
    text-align: left;
    justify-content: center;
}
.navbar-nav{
    justify-content: center;
}

.navbar-nav li a{
    color: #fff;
    position: relative;
    opacity: 1;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    padding: 0;
    
}

.navbar-nav li a:hover{
    color: #38b6ff;
    background-color: #1C1E22;
    transition-duration: 0.4s;
}
.logo-image{
    width: 100%;
    height: 4rem;
}

.tel-box{
    position: relative;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}
.nav-tel-btn{
    font-size: 11px;
    display: flex;
    padding: 10px 40px;
    margin-left: 30px;
    position: relative;
    line-height: 24px;
    font-weight: 700;
    text-align: center;
    justify-content: center;
    letter-spacing: 0.1em;
    overflow: hidden;
    text-transform: uppercase;
    color: #fff;
    background: #A0C9EE;
    text-decoration: none;
}
.nav-tel-btn:hover{
    background-color: #4e6981;
    color: #000;
    transition-duration: 0.6s;
}
/* Style for shrinking navigation bar on scroll */
.shrink {
    padding: 2px 0px;
    justify-content: end;
    transition-duration: 0.6s;
}
.sizer{
    height: 3rem;
    transition-duration: 0.6s;
}
.hide{
    display: none;
    transition-duration: 0.6s;
}

/* ------------------------------------------ */

section {
    padding-top: 100px; /* Adjust this value as needed */
}

.container-fluid{
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
   
}

.welcome-section {
    background-image: url('img_org/home_bg.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff; /* Text color on top of the background image */
    padding: 100px 0; /* Adjust padding as needed */
    height: 100vh; /* Set the height to 100% of the viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.welcome-content {
    text-align: center;
    margin-top: 35px;
    /* vertical-align: middle; */
    
}

.welcome-content .welcome-title {
    font-family: "Space Grotesk", sans-serif;;
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.welcome-content .welcome-text{
    font-size: 18px;
    color: #ffffff;
    line-height: 2em;
    font-weight: 400;
    margin-bottom: 30px;
}

@media only screen and (max-width: 599px){
    .welcome-content .welcome-title {
        font-size: 42px;
        letter-spacing: 0;
    }
    .welcome-content .welcome-text{
        font-size: 16px;
        line-height: 26px;
    } 
}
.discover-button {
    background-color: #A0C9EE;
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.discover-button:hover {
    background-color: #4e6981;
    color: black;
    transition-duration: 0.6s;
}
/* ------- WHy Us Section---------- */
/* .why-us-section{
    padding-top: 50px;
} */
.why-us-image-column{
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
}
.why-us-image{
    position: relative;
    display: flex;
}
.why-us-image img {
    position: relative;
    max-width: 100%;
    height: auto;
    display: block;
}
.why-us{
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
    order: 2!important;
}

.why-title{
    margin-bottom: 30px;
    font-size: 100%;
    position: relative;
}

.why-sub-title{
    position: relative;
    top: -8px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    line-height: 1.2em;
    color: #A0C9EE;
}

.why-title h2{
    color: #fff;
    font-size: 48px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-top: -5px;
    line-height: 1.2em;
}
.why-text{
    margin-top: 30px;
    color: #fff;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 30px;
}

.sec-list .list-points {
    margin-bottom: 50px;
    border-bottom: 1px solid #fff;
    padding-bottom: 30px;
    
}
.sec-list .list-points li {
    padding-right: 20px;
    color: #A0C9EE;
  }

@media only screen and (max-width: 1023px){
    .why-us-section .why-us{
        order: 0 !important;
    }
    .why-us-image img{
        height: auto;
    }
}

.why-us-btn-box{
    position: relative;
}

@media only screen and (max-width: 599px){
    .why-us-btn-box {
        flex-direction: column;
    }
}

.why-us-btn{
    margin-right: 20px;
    position: relative;
    display: inline-flex;
    font-size: 13px;
    line-height: 24px;
    padding: 15px 50px;
    font-weight: 700;
    letter-spacing: 0.1em;
    overflow: hidden;
    border: none;
    text-transform: uppercase;
    color: #fff;
    background: #A0C9EE;
    text-decoration:none;
    -webkit-box-pack: center;
}
.why-us-btn:hover {
    background-color: #4e6981;
    color: black;

}
@media only screen and (max-width: 599px){
    .why-us-btn{
        order: 2;
        margin-right: 0px;
    }
}
.why-us-btn .btn-title{
    position: relative;
    text-align: center;
}

.why-us-btn-box .tel-btn{
    position: relative;
    display: block;
    font-size: 14px;
    padding: 8px 0;
    padding-left: 50px;
    color: #fff;
    text-align: left;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
}

@media only screen and (max-width: 599px){
    .why-us-btn-box .tel-btn{
        margin-bottom: 20px;
    }
}

.why-us-btn-box .tel-btn:hover{
    color: #A0C9EE;
}

.why-us-btn-box .tel-btn i{
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -25px;
    line-height: 50px;
    height: 50px;
    width: 50px;
    text-align: center;
    border-radius: 50%;
    color: #A0C9EE;
    background-color: #1C1E22;
    font-size: 18px;
}

.why-us-btn-box .tel-btn small{
    font-size: 12px;
    font-weight: 400;
    color: #808287;
}

/* ---------Service Section-------- */

.serv-sub-title{
    position: relative;
    top: -8px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    line-height: 1.2em;
    color: #A0C9EE;
    text-transform: uppercase;
}
.serv-title{
    position: relative;
    margin-bottom: 40px;
}
.serv-title h2{
    color: #fff;
    font-size: 48px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-top: -5px;
    line-height: 1.2em;
}
.services h3{
    position: relative;
    font-weight: 700;
    font-size: 20px;
    font-family: "DM Sans", sans-serif;
    line-height: 1.2em;
    color: #fff;
}

.services{
    text-align: center;
    padding: 15px;
    background-color: #222429; /* Placeholder background color */
    border: 1px solid #1C1E22;
    /* border-radius: 5px; */
    width: 265px;
    /* margin-right: 30px; */
    justify-content: center;
    position: relative;

}
.services img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease; /* Add a transition for transform */
}
.services:hover{
    /* color: #FFF !important; */
    transform: translate(0, -12px);
    /* box-shadow: 0px 9px 29px rgba(51, 51, 51, 0.55); */
    background-color: #4e6981;
    transition: all .25s ease-in-out;
}

/* ---------Key Feature Section-------- */

.key-features-section {
    text-align: center;
    position: relative; /* Set relative positioning for the container */
}


/* Style for the key features grid */
.key-features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px; /* Adjust the gap between elements */
    margin-top: -50px;
}

/* Style for the left features column */
.left-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1; /* Take up equal space on the left */
}

/* Style for the right features column */
.right-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1; /* Take up equal space on the right */
}


/* Style for each key feature */
.key-feature {
    text-align: center;
    padding: 20px;
    background-color: #4e6981; /* Background color for features */
    border-radius: 5px;
    max-width: 300px; /* Limit maximum width of features */
    margin: 50px; /* Adjust the margin as needed */
}
.key-feature h3{
    position: relative;
    top: -8px;
    font-size: 16px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    line-height: 1.2em;
    color: #A0C9EE;
    text-transform: uppercase;
}
.key-feature p{
    color: #ffffff;
    text-align: left;
    margin: 0rem;
}

/* Style for the central image container */
.key-image {
    width: 300px; /* Set the width to 400 pixels */
    height: 300px; /* Set the height to 400 pixels */
     /* Background color for the container */
    border-radius: 50%; /* Create a circular container */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8rem; /* Add margin to separate from features */
    margin-top: 8rem;
}

/* Style for the central image */
.key-image img {
    max-width: 100%; /* Ensure the image width spans the container */
    max-height: 100%; /* Ensure the image height spans the container */
}


/* ---------Key Feature Section-------- */


#portfolio .sub-title {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
    margin: 15px auto;
    color: #333;
    padding: 10px;
    line-height: 25px;
}

figure {
position: relative;
overflow: hidden;
text-align: center;
cursor: pointer;
margin: 15px auto;
}
figure img {
position: relative;
display: block;
/* opacity: 0.9; */
width: 100%;
}
.img-fluid{
    height: auto;
}

figure figcaption {
padding: 2em;
color: #222429;
text-transform: uppercase;
font-size: 1.25em;
backface-visibility: hidden;
}

figure figcaption::before, figure figcaption::after {
pointer-events: none;
}
figure figcaption, figure figcaption>a {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
figure figcaption>a {
z-index: 1;
text-indent: 200%;
white-space: nowrap;
font-size: 0;
opacity: 0;
}
figure h2 {
/* word-spacing: -0.15em; */
text-align: left;
font-size: 30px;
font-weight: 400;
font-family: "DM Sans", sans-serif;
line-height: 1.2em;
}

figure h2 span {
font-weight: 800;
white-space: pre;
}

figure h2, figure p {
margin: 50px;
}

figure p {
font-family: "DM Sans", sans-serif;
letter-spacing: 1px;
font-size: 16px;
font-style: italic;
font-weight: bold;
}


figure.effect img {
opacity: 0.95;
transition: opacity 0.35s, transform 0.35s;
transform: scale3d(1.05, 1.05, 1);
}

figure.effect figcaption::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.5);
content: '';
transition: transform 0.6s;
transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}

figure.effect p {
position: absolute;
right: 0;
bottom: 0;
margin: 1em;
padding: 0 1em;
border-right: 4px solid #4e6981;
text-align: right;
opacity: 0;
transition: opacity 0.35s;
color: #ffffff;
}
figure.effect:hover img {
opacity: 0;
transform: scale3d(1, 1, 1);
}
figure.effect {
    background: #A0C9EE;
}
figure.effect:hover figcaption::before {
transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}
figure.effect:hover h2{
display: none;
}
figure.effect:hover p {
opacity: 1;
transition-delay: 0.1s;
}

/* ------- contact form section ---------- */

.form-image-column{
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
}

.contact-form-image {
    position: relative;
    display: flex;
}
.contact-form-image img {
    position: relative;
    max-width: 100%;
    height: 440px;
    display: block;
    border-radius: 15px;
    /* rotate: -10deg; */
}
.contact-us{
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
    order: 2!important;
}
.contact-title{
    margin-bottom: 30px;
    font-size: 100%;
    position: relative;
}

.contact-sub-title{
    position: relative;
    top: -8px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    line-height: 1.2em;
    color: #A0C9EE;
}
.contact-title h2{
    color: #fff;
    font-size: 48px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-top: -5px;
    line-height: 1.2em;
}

.form-row {
    display: flex;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
    padding-right: 20px;
}
.form-group input, select,textarea{
    width: 100%;
    height: 100%;
}

/* ------- Footer section ---------- */

.main-footer {
    position: relative;
    background-color: #4e6981;
    color: #fff;
}

.main-footer .footer-widget {
    position: relative;
    padding: 50px 0 65px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}
.main-footer .footer-column{
    position: relative;
}


.widget-column {
    position: relative;
    /* flex: 1;
    margin-right: 20px;  */
}

.widget-column .logo{
    position: relative;
    margin-bottom: 22px;
}

.widget-column a{
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.widget-column a img{
    border: none;
}
.widget-column img{
    display: inline-block;
    max-width: 100%;
    height: auto;
    width: 240px;
}

.widget-column .text{
    font-family:  "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    
    
}

.widget-column .social{
    position: relative;
    display: flex;
}
.widget-column .social li{
    padding-right: 1rem;
}

.widget-column .social li a{
    position: relative;
    display: block;
    line-height: 40px;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 14px;
    color: #A0C9EE;
    border-radius: 50%;
    background-color: #2c2e33;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.widget-column .social li a:hover{
    background-color: #A0C9EE;
    color: #ffffff;
}

.widget-column .widget-title{
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2em;
    padding-bottom: 18px;
    margin-bottom: 25px;
    
}
.quick-links , .serivces-links{
    position: relative;
}

.quick-links li, .serivces-links li{
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 14px;
    
}
.serivces-links li{
    line-height: 15px;
}

.quick-links li a, .serivces-links li a{
    position: relative;
    display: inline-block;
    color: inherit;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    color: #fff;
}
.quick-links li a:hover, .serivces-links li a:hover{
    color: #38b6ff;
    text-decoration-line: underline;
}

.contact-content .text{
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 25px;
    font-family: "DM Sans", sans-serif;
}
.contact-content .info-contact{
    position: relative;
}

.contact-content .info-contact li{
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    
}
.contact-content .info-contact li i{

    left: 0;
    top: 0;
    color: #A0C9EE;
    line-height: 26px;
    width: 20px;
    font-size: 16px;
    text-align: center;
    margin-bottom: 5px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.contact-content .info-contact li a{
    padding-inline-start: 1rem;
    font-family: "DM Sans", sans-serif;
    
}

.footer-bottom {
    position: relative;
    background-color: #333;
    width: 100%;
}
.footer-bottom .container-fluid {
    position: relative;
    text-align: center;
    padding: 15px;
}
.footer-bottom .copyright-text {
    position: relative;
    color: #ffffff;
}

/* ------- About Page --------- */

.about-section{
    background-image: url('img_org/home_bg.jpg');
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 110px;
    min-height: 250px;
}

.about-section .title {
    font-size: 64px;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 17px;
    font-weight: 700;
    line-height: 1em;
    font-family: "Space Grotesk", sans-serif;
}

.abt-us-image-column{
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
}
.abt-us-image{
    position: relative;
    display: flex;
}
.abt-us-image img {
    position: relative;
    max-width: 100%;
    height: auto;
    display: block;
}
.abt-us{
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
    order: 2!important;
}

.abt-title{
    margin-bottom: 30px;
    font-size: 100%;
    position: relative;
}

.abt-sub-title{
    position: relative;
    top: -8px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    line-height: 1.2em;
    color: #A0C9EE;
}

.abt-title h2{
    color: #fff;
    font-size: 48px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-top: -5px;
    line-height: 1.2em;
}
.abt-text{
    margin-top: 30px;
    color: #fff;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 30px;
}


@media only screen and (max-width: 1023px){
    .abt-us-section .abt-us{
        order: 0 !important;
    }
    .abt-us-image img{
        height: auto;
    }
}

.abt-us-btn-box{
    position: relative;
}

@media only screen and (max-width: 599px){
    .abt-us-btn-box {
        flex-direction: column;
    }
}

.abt-us-btn{
    margin-right: 20px;
    position: relative;
    display: inline-flex;
    font-size: 13px;
    line-height: 24px;
    padding: 15px 50px;
    font-weight: 700;
    letter-spacing: 0.1em;
    overflow: hidden;
    border: none;
    text-transform: uppercase;
    color: #fff;
    background: #A0C9EE;
    text-decoration:none;
    -webkit-box-pack: center;
}
.abt-us-btn:hover {
    background-color: #4e6981;
    color: black;

}
@media only screen and (max-width: 599px){
    .abt-us-btn{
        order: 2;
        margin-right: 0px;
    }
}
.abt-us-btn .btn-title{
    position: relative;
    text-align: center;
}

.abt-us-btn-box .tel-btn{
    position: relative;
    display: block;
    font-size: 14px;
    padding: 8px 0;
    padding-left: 50px;
    color: #fff;
    text-align: left;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
}

@media only screen and (max-width: 599px){
    .abt-us-btn-box .tel-btn{
        margin-bottom: 20px;
    }
}

.abt-us-btn-box .tel-btn:hover{
    color: #A0C9EE;
}

.abt-us-btn-box .tel-btn i{
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -25px;
    line-height: 50px;
    height: 50px;
    width: 50px;
    text-align: center;
    border-radius: 50%;
    color: #A0C9EE;
    background-color: #1C1E22;
    font-size: 18px;
}

.abt-us-btn-box .tel-btn small{
    font-size: 12px;
    font-weight: 400;
    color: #808287;
}

/* ----------Vision------------- */
.vis-us-section{
    padding-top: 100px;
}

.vis-us-image-column{
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
}
.vis-us-image{
    position: relative;
    display: flex;
}
.vis-us-image img {
    position: relative;
    max-width: 100%;
    height: auto;
    display: block;
}
.vis-us{
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
}

.vis-title{
    margin-bottom: 30px;
    font-size: 100%;
    position: relative;
}

.vis-sub-title{
    position: relative;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    font-size: 30px;
    line-height: 1.2em;
    color: #A0C9EE;
}

.vis-text{
    margin-top: 10px;
    color: #fff;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 50px;
}


@media only screen and (max-width: 1023px){
    .vis-us-section .vis-us{
        order: 0 !important;
    }
    .vis-us-image img{
        height: auto;
    }
}

/* -------- Services Page ----------- */

.servicepage-section{
    background-image: url('img_org/home_bg.jpg');
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 110px;
    min-height: 250px;
}

.servicepage-section .title {
    font-size: 64px;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 17px;
    font-weight: 700;
    line-height: 1em;
    font-family: "Space Grotesk", sans-serif;
}
.servicepage-block {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.servicepage-block .outer-box {
    background-color: #222429;
    position: relative;
    padding: 15px;
    border: 1px solid #1C1E22;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.servicepage-block .image-box {
    position: relative;
}

.servicepage-block .image-box .servicepage-image {
    margin: 0 0 1rem;
}

.servicepage-block .image-box .servicepage-image img {
    width: 100%;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.servicepage-block .content-box {
    position: relative;
    padding: 25px 25px 15px;
    text-align: center;
}
.servicepage-block .content-box .content-title{
    margin-bottom: 14px;
}
.content-box a{
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.2rem;
    cursor: pointer;
}