* {
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'Geometric Slabserif 703';
    src: url('../font/Geometric Slabserif 703.otf') format('opentype');
}

@font-face {
    font-family: 'Nilland SmallCaps';
    src: url('../font/Nilland-SmallCaps.ttf') format('truetype');
}

@font-face {
    font-family: 'Tempus Sans ITC';
    src: url('../font/tempsitc.ttf') format('truetype');
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Roboto Condensed', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

section{
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
}

/*---------------- NAV BAR ----------------------*/
.navbar{
    padding: 0 16px;
}

.navbar .nav-item{
    margin-left: 25px;
}

.nav-item a{
    color: #00ab85;
    font-size: 1.2em;
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25); */
}

.nav-item a:hover{
    color:#afafaf;
}

.navbar-brand img {
    height: 40px;
}

.navbar-brand {
    padding: 0;
    font-family: 'Geometric Slabserif 703', sans-serif;
    color: #00ab85;
    font-size: 1.5rem;
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25); */
}

.navbar-brand:hover {
    color: #02bb93;
}

.opaque-navbar {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.0);
    transition: background-color .5s ease 0s;
}

.opaque-navbar.opaque {
    /* background-color: #1cceea; */
    /* background-color: rgba(28,206,234,0.82);
    background: linear-gradient(-45deg, rgba(147,26,222,1) 0%, rgba(28,206,234,1) 100%);
    transition: background-color .5s ease 0s; */
    /* background-color: #fff; */
    background-color: #0798EC;
    border-bottom: 5px solid #010102;
}

.navbar-color{
    /* background-color: #EEF2F5; */
    background-color: #fff;
    box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.3);
    /* border-bottom: 1px solid #010102; */
}

.navbar-toggler {
    border: none; /* Removes the outside rectangle */
}

/* .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
} */

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%2300ab85' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus {
    outline: none;
}

.navbar-collapse.show {
    background-color: rgba(255, 255, 255, 0.5); /* Change the color as needed */
}

.dropdown-menu {
    background-color: rgb(255, 255, 255); /* Grey with 50% transparency */
}

.dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color:#afafaf;
}

/*---------------- Fixed Div ----------------------*/
#fixed-div{
    position: fixed; 
    top: 50px; 
    background-color: #fff; 
    z-index: 1000;
    padding: 5px 10px;
    border-radius: 15px 0px 15px 0px;
}

#fixed-div p{
    font-family: 'Tempus Sans ITC', sans-serif;
    font-size: 1.2rem;
    color: #00ab85;
    font-style: italic;
    margin: 0;
}

@keyframes fadeUp {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-40px); }
}

.hide {
    animation: fadeUp 1s forwards;
}

/*---------------- Video BG ----------------------*/
#myVideo{
    background: center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

#myBorder{
    position: absolute;
    min-height: 100vh;
    width: 100%;
    background: center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 1000;
}

#video-container {
    position: relative;
    height: 100vh; /* 100% of the viewport height */
    overflow: hidden;
  }

  /* Center the video within the container */
  #fullscreen-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; /* Ensures video covers full container width */
    min-height: 100%; /* Ensures video covers full container height */
    width: auto;
    height: auto;
    z-index: -1; /* Push the video behind other content (navbar) */
  }
  #video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; /* Change the color as needed */
    text-align: center;
    z-index: 2;
}

#video-text h1{
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 5rem;
    text-shadow: 1px 1px 2px #616161;
}

#video-text h1 span{
    color: #FEC401;
    /* color: #00ab85; */
    /* background-color: #fff;
    padding: 0 20px; */
}
#video-text h2{
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 2.5rem;
    text-shadow: 1px 1px 2px #616161;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #808080; /* Grey color */
    opacity: 0.25;
    z-index: 1; /* To make sure the overlay is above the video but below the text */
}
  
#main-tag{
    font-family: 'Tempus Sans ITC', sans-serif;
    font-size: 2.5rem;
    color: #00ab85;
    position: absolute;
    top: 100px;
    right: 50px;
    font-style: italic;

}
/*---------------- Carousel ----------------------*/
#sec-carousel{
    margin-top: 65px;
}


/*---------------- About ----------------------*/
#sec-about{
    padding: 90px 0 0 0;
    background-color: #FFF;
    color: #000;
    /* text-shadow: 1px 1px#616161; */
}

#sec-about h1{
    /* text-shadow: 1px 1px 2px #616161; */
    /* font-family: "Poppins", sans-serif; */
    font-family: 'Geometric Slabserif 703', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    color: #00ab85;
}

.sec-heading{
    text-align: center;
    margin-bottom: 25px;
}

#sec-about p{
    font-family: 'Nilland SmallCaps', sans-serif;
    margin-top: 30px;
    text-align: justify;
    font-weight: 600;
    font-size: 1.1rem;
    color: #343b4d;
}
#sec-about .about-img-box{
    /* background-color: blue; */
    text-align: center;
}
#sec-about .about-img-box img{
    max-width: 350px;
    margin: 0 auto;
    border-radius: 50px 0px 50px 0px;
}

.about-text-box{
    padding: 15px;
}

/*---------------- SERVICES ----------------------*/
#sec-services {
    padding: 90px 0 0 0;
    text-align: center;
}

#sec-services h1 {
    font-family: 'Geometric Slabserif 703', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    /* margin: 25px 0 50px 0; */
    /* color: #121213; */
    color: #00ab85;
}

#sec-services #service-line{
    font-family: 'Nilland SmallCaps', sans-serif;
    font-weight: 600;
    color: #343b4d;
    font-size: 1.1rem;
}

.owl-item {
    padding: 0 !important;
}

#sec-services .container-fluid, #sec-services .container-fluid .col-lg-3 {
    padding: 0;
}

.case-study-box img {
    width: 100%;
    height: auto;
}

.case-study-box {
    position: relative;
    overflow: hidden;
}

.case-study-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    /* background-color: rgba(0, 0, 0, 0.7); */
    background-color: rgba(0, 171, 133, 0.9);
    color: #fff;
    /* color: #00ab85; */
}

.case-study-content h3 {
    opacity: 1;
    text-align: center;
}

.case-study-content p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    opacity: 0;
    font-family: 'Nilland SmallCaps', sans-serif;
    font-weight: 400;
    color: #FFF;
}

.case-study-box:hover .case-study-content p {
    max-height: 100px; /* Adjust as needed */
    opacity: 1;
}
/*---------------- METRICS ----------------------*/
#sec-metrics {
    background-color: #EEF2F5;
    text-align: center;
    padding: 0 0 90px 0;
}

#sec-metrics .container{
    padding: 0;
}



#sec-metrics .fas {
    background-color: #0798EC; /* Change to the color you want */
    border-radius: 50%; /* Makes the background circular */
    width: 65px; /* Fixed width */
    height: 65px; /* Fixed height */
    display: flex; /* Enables flexbox */
    align-items: center; /* Centers the icon vertically */
    justify-content: center; /* Centers the icon horizontally */
    color: #fff; /* Change to the color you want for the icon */
    margin-bottom: 50px; /* Space between the icon and the number */
}

#sec-metrics h5 {
    color: #121213;
    font-size: 1.1rem;
    font-family: 'Nilland SmallCaps', sans-serif;
    font-weight: 600;
    margin-top: 50px;
}

#sec-metrics h2 {
    font-family: 'Geometric Slabserif 703', sans-serif;
    font-style: normal;
    font-size: 2.5rem;
    margin: 10px 0 50px 0;
    color: #00ab85;
}

#sec-metrics .metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 15px;
    padding: 0 0 25px 0;
    box-shadow: 0 5px 5px -7px rgba(0,0,0,0.25);
    /* border: 1px solid #d1d1d1;     */
}

#sec-metrics .metric .img-bg-circle {
    background-color: #DBE7ED;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 35px 0px; 
}

#sec-metrics .metric img {
    width: 65%;
    /* border-radius: 5px;
    margin: 35px 0px; */
}

#sec-metrics h3 {
    font-family: 'Geometric Slabserif 703', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 2em;
    margin-bottom: 10px;
    color: #343b4b;
}

#sec-metrics p {
    font-size: 1.2em;
    color: #343b4b;
    font-family: 'Geometric Slabserif 703', sans-serif;
}

#sec-metrics .map-row{
    /* padding: 75px 0; */
    /* background: url('../img/map.png') no-repeat center center; */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat;  */
}
/*---------------- VISION ----------------------*/
.row-vision-img{
    margin-bottom: 50px;
    text-align: center;
}

.row-vision-img img{
    width: 100%;
    border-radius: 15px;
    border: 5px solid #fff;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

#sec-vision{
    padding: 90px 0 0 0;
    background-color:#FFF;
}

#sec-vision .vision-box{
    text-align: center;
    padding: 5%;
    margin: 5% 2%;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.10s ease-in-out;
    -moz-transition: all 0.10s ease-in-out;
    -ms-transition: all 0.10s ease-in-out;
    -o-transition: all 0.10s ease-in-out;
    border: 5px solid #fff;
}

#sec-vision .vision-box:hover{
    border: 5px solid #010102;
}

.vision-box h3{
    margin-bottom: 30px;
    font-size: 2rem
}
#sec-map{
    padding: 0 0 90px 0;
    background-color: #eef2f5;
    text-align: center;
    min-height: 600px;
    /* background: url('../img/map2.png') no-repeat center center;
    background-size: cover;
    background-position: center; */
}

#map-text{
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
}

#map-text img{
    width: 100%;
    border-radius: 15px;
}

#sec-map h1{
    font-family: 'Geometric Slabserif 703', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    margin: 25px 0 10px 0;
    color: #00ab85;
}

#sec-map p{
    font-family: 'Nilland SmallCaps', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #343b4d;
}
/*---------------- Contact ----------------------*/
#sec-contact
{
    padding: 90px 0 90px 0;
    background-color: #eef2f5;
}

#sec-contact .head-contact{
    color: #343b4d;
}


.head-contact h3{
    font-size: 2rem;
}

.head-contact h5{
    margin: 25px 0 15px 0;
    font-size: 1.5rem;
    font-family: 'Geometric Slabserif 703', sans-serif;
    color: #00ab85;
}

.head-contact p{
    margin-bottom: 5px;
    font-family: 'Nilland SmallCaps', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #343b4d;
}

.head-contact i{
    font-size: 1.5rem;
}

#sec-contact .contact-box{
    background-color: #fff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 29px 32px -20px rgba(0,0,0,0.5);
    font-family: 'Nilland SmallCaps', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #343b4d;
}

.contact-box label, .contact-box input, .contact-box textarea{
    font-size: 1.25rem;
    font-weight: 300;
}

.contact-box .btn-primary{
    background-color: #00ab85;
    border: none;
}

.contact-box .btn-primary:hover{
    background-color: #02bb93;
}

#contact-reply{
    font-size: 2rem;
    text-align: center;
    color: #343b4b;
}
.gmap-row{
    margin-top: 100px;
}

.gmap-row .col-lg-12{
    border-radius: 5px;
    padding : 0px;
}

.region-row{
    margin-top: 100px;
}

.region-col{
    margin-top: 25px;
    /* border: 1px solid #a0a7b9; */
}

.region-col h5{
    text-align: center;
}
/*---------------- Container Specification ----------------------*/
#sec-cont-spec{
    padding: 90px 0 90px 0;
    background-color: #eef2f5;
}

.cont-spec-box{
    padding: 25px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 10px 10px -5px rgba(0,0,0,0.1);
    color: #343b4b;
    margin-top: 25px;
}

.cont-spec-box h3{
    text-align: center;
    margin-bottom: 25px;
}
.cont-spec-box img{
    width: 90%;
    border-radius: 5px;
}
/*---------------- Footer ----------------------*/

#sec-footer{
    position: relative;
    padding: 50px 15px;
    text-align: left;
    margin-top: auto;
    background-image: url('../img/doodle.png');
    background-repeat: repeat;
    /* background-color: #EEF2F5;
    color: #00ab85; */
    background-color: #00ab85;
    color: #fff;
    border-top: 1px solid #DBE7ED; /* Change color as needed */
}

#sec-footer h5{
    font-family: 'Geometric Slabserif 703', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

#sec-footer .btn-social-rnd{
    margin-bottom: 15px;
}

#sec-footer .foot-add-1 img {
    width: 70%;
    height: auto;
    display: block;
    /* margin: auto; */
    margin-bottom: 25px;
}

#sec-footer .col-lg-4 p {
    margin-bottom: 5px;
    font-family: 'Nilland SmallCaps', sans-serif;
    font-size: 1.1rem;
}

#sec-footer .copyright {
    font-family: 'Nilland SmallCaps', sans-serif;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 15px;
}

.foot-add-2 img{
    width: 60%;
    height: auto;
    display: block;
    margin: auto;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 2rem;
    color: white;
}

/*///////////////// Associate  /////////////////*/
#sec-associate{
    padding: 90px 0 90px 0;
    background-color: #fff;
    text-align: center;
}

#sec-associate p{
    font-family: 'Nilland SmallCaps', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #343b4d;
}

#sec-associate .asso-box{
    font-family: 'Geometric Slabserif 703', sans-serif;
    font-weight: 400;
    color: #00ab85;
}

#sec-associate .asso-box a{
    color: #00ab85;
    text-decoration: none;
}

#sec-associate .asso-box a:hover{
    color: #02bb93;
}

/*/////////////////  CS  /////////////////*/
#sec-cs{
    padding: 90px 0 90px 0;
}

#sec-cs h3{
    font-family: 'Geometric Slabserif 703', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    color: #00ab85;
}

#sec-cs .cs-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#sec-cs .cs-text p{
    text-align: justify;
    font-family: 'Nilland SmallCaps', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #343b4d;
}

#sec-cs img {
    width: 100%;
    height: auto;
    border-radius: 40px 0px 40px 0px;
}
/*/////////////////  MEDIA QUERIES  /////////////////*/
@media (min-width: 100px) and (max-width: 477px){
    #myVideo{
        min-height: 30vh;
        margin-top: 70px;
    }

}

/* Small devices (landscape phones, 478px and up) */
@media (min-width: 478px) and (max-width: 575px){
    #myVideo{
        min-height: 50vh;
        margin-top: 70px;
    }
    

}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px){
    
    #myVideo{
        min-height: 50vh;
        margin-top: 70px;

    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    #myVideo{
        min-height: 50vh;
        margin-top: 70px;
    }
    
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

    #myVideo{
        margin-top: 0px;
    }
    
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    #myVideo{
        margin-top: 0px;
    }
    
}

@media (max-width: 576px) {
    .cont-spec-box {
        margin: 5px;
    }

    #sec-footer{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 992px) {
    #sec-footer{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}
