@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tektur:wght@400..900&display=swap');

*{
    padding: 0;
    margin: 0;
}

:root {

    --color-white: #fefefe;
    --color-black: #202124;
  
    --blue: #0d6efd;
    --dblue: #1a4862;
  
    --red: #ee2f2d;
    --textred: #cd271b;
    --dred: #cd271b;

    --tblue: #ececfc;
    --tred: #fae4e4;

  }

html,
body{
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.75;
  background: var(--color-white);
}


h1,h2,h3,h4,h5,h6{
    font-family:'Poppins',sans-serif;
    line-height:1.2
}
h1{
    font-size:62px;
    font-weight:700
}
h2{
    font-size:45px;
    font-weight:700
}
h3{
    font-size:34px;
    font-weight:700
}
h4{
    font-size:28px;
    font-weight:700
}
h5{
    font-size:24px;
    font-weight:600
}
h6{
    font-size:20px;
    font-weight:500
}

.bg-blue{
    background: var(--blue);
}

.bg-dblue{
    background: var(--blue);
    color: var(--color-white);
}

.bg-red{
    background: var(--red);
}

.text-white{
    color: var(--color-white);
}

.text-red{
    color: var(--red);
}

.text-blue{
    color: var(--blue);
}

.btn-red{
    background: var(--red);
    color: var(--color-white);
    padding: 20px 40px;
}

.btn-red:hover{
    background: var(--textred);
    color: var(--color-white);
    box-shadow: 5px 5px 10px #20212415;
}

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





/* navigation */
.navbar-brand-logo{
    max-height: 55px;
}

@media screen and (max-width: 991.5px) {
    .navbar-brand-logo{
        max-width: 50vw;
    }

    .top-nav{
        background: #fff;
        position: fixed;
        z-index: 999;
        margin: 0 auto;
        border: none;
        padding: 0;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
        -webkit-animation-duration: .5s;
        animation-duration: .5s;
        -webkit-animation-name: sticky-animation;
        animation-name: sticky-animation;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }
}

.nav-item .active{
  background: var(--color-white);
  color: var(--blue)!important;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid var(--blue);

}

.nav-item .active-sticky{
  border-radius: 0px;
}

.nav-item .active-mobile{
  border-radius: 10px;
  background: var(--blue);
  color: var(--color-white)!important;
  font-weight: 700;
  padding-left: 20px!important;
}


.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-address{
    display: inline-block;
    padding-right: 25px;
    padding-left: 25px;
    border-right: 1px solid #dadada;
    font-size: 14px;
}

.nav-address:last-child{
    border-right: none;
}

.nav-address .info-icon {
    float: left;
    margin-right: 15px;
    line-height: 35px;
}

.nav-address .info-icon i{
    font-size: 20px;
    color: var(--red);
}

.nav-address .info-content {
    float: left;
    text-align: left;
    display: block;
}

.nav-address .info-content .info-title {
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
}

.nav-address .info-content .info-des {
    font-size: 14px;
    color: #595858;
}

.navbar-floating{
    position: relative;
    z-index: 999;
    top:20px;
}

.sticky {
    background: #fff;
    position: fixed;
    z-index: 999;
    margin: 0 auto;
    border: none;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-name: sticky-animation;
    animation-name: sticky-animation;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


/* Hero Section */
.hero-section{
    position: relative;
    top:-25px;
}

.carousel-item{
    max-height: 600px;
}

.hero-img-container{
    height: 750px;
}
    
.hero-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.half-overlay{
    background: var(--color-black);
    opacity: 0.65;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 65%;
}

.carousel-caption{
    position: absolute;
    top: 55%;
    left: 40%;
    transform: translate(-50%, -50%);
    text-align: left;
}

@media screen and (max-width: 991.5px) {
    .hero-section{
        position: relative;
        top:0px;
    }

 
}

@media screen and (max-width: 767.5px) {
    .half-overlay{
        background: var(--color-black);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
    }

    .carousel-caption{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: left;
    }

    .carousel-caption h2{
        font-size: 28px;
        line-height: 1.7;
        text-align: center;
    }
}


/* about section  */

.about-pill {
    background: var(--blue);
    color: var(--color-white);
    border-radius: 10px;
  }
  .about-pill .nav-item {
    text-align: center;
  }
  
  .about-pill .nav-item .nav-link {
    border-radius: 8px;
    transition: all 300ms ease;
    padding: 15px 0;
    font-weight: 600;
  }
  
  .about-pill .nav-item .active {
    /* border-bottom: 3px solid var(--color-white); */
    background: var(--color-white);
    color: var(--blue);
    font-weight: 700;

  }

  .img-stat {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Counter section  */
#counter-section{
    background-image: url("../img/bg1.jpg");
    background-color: var(--dblue);
    background-position: right   bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
}

.bg-blue-transparent{
    background: #0d6dfd89;
}

.counter-box i{
    font-size: 40px;
    padding-bottom: 30px;
}

/* countries */
#countries{
        background-image: url("../img/map.jpg");
        background-color: var(--dblue);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: overlay;
}


/* sister organization  */

.sister-card {
    display: block;
    padding: 34px;
    justify-content: space-between;
    border-style: solid;
    border-width: 1px;
    border-color: #ebebef;
    background-color: #fff;
    transition: all 300ms ease;
    color: #030407;
    text-decoration: none;
    border-radius: 16px;
  }
  
  .sister-card:hover {
    box-shadow: 5px 6px 10px #03040715;
    transform: scale(1.05);
    transform: translateY(-5px);
    transform: translateX(-3px);
  }
  
  .sister-company {
    display: flex;
    margin-bottom: 24px;
    padding-right: 10px;
    align-items: center;
  }
  
  .sister-company img {
    height: 70px;
    width: auto;
  }
  
  .sister-tags {
    display: flex;
    margin-bottom: 24px;
    grid-column-gap: 8px;
  }
  
  .sister-tags a:nth-child(even) .sister-category {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--tred);
    color: var(--red);
    transition: all 300ms ease-out;
  }
  
  .sister-tags a:nth-child(even):hover .sister-category {
    background-color: var(--red);
    color: var(--tred);
    border-radius: 8px 0 8px 0;
  }
  
  .sister-tags a:nth-child(odd):hover .sister-category {
    background-color: var(--blue);
    color: var(--tblue);
    border-radius: 0px 8px 0 8px;
  }
  
  .sister-tags a:nth-child(odd) .sister-category {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--tblue);
    color: var(--blue);
    transition: all 300ms ease-out;
  }
  

  /* footer */
  footer{
    background: var(--color-black);
    color: var(--color-white);
    padding-top: 70px;
  }

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

  footer a:hover{
    text-decoration: underline;
  }

  .footer-title{
    position: relative;
    margin-bottom: 30px;
    text-transform: uppercase;
    padding-bottom: 14px;
  }

  .footer-title:after{
    content: "";
    width: 50px;
    height: 4px;
    background: var(--blue);
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
    margin-left: 0;
    border-radius: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 0;
  }
  
  .footer-list li:before {
    content: "►";
    display: block;
    float: left;
    width: 1.2em;
    margin-right: 6px;
    color: var(--blue);
}




  /* inner pages */
  #inner-header{
    position: relative;
    top:-20px;
  }

  @media screen and (max-width: 991.5px) {
    #inner-header{
        position: relative;
        top:0px;
        }
    }

  .inner-title-container{
    position: relative;
    z-index: 2!important;
  }

.inner-title:after{
    content: "";
    width: 50px;
    height: 4px;
    background: var(--blue);
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
    margin-left: 0;
    border-radius: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 0;
}

.aboutbg{
  background: url("../img/aboutbg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.inner-overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background-color: #0093E9;
  background-image: linear-gradient(0deg, var(--blue) 0%, #80D0C7 100%);
  z-index: 0;
  mix-blend-mode: multiply;
}




/* Category Section  */

  .category-card {
    background: linear-gradient(135deg, var(--dblue), #4c6ba5, #91eae4);
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .category-icon {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  .category-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
  }

  .card-container {
    padding: 15px;
  }

  .bg-light-gradient {
    background: linear-gradient(90deg, #007bff, #86a8e7, #e8fffc);
    padding: 10px;
    border-radius: 10px;
  }

  .border-start-red{
    border-left: 5px solid var(--red);
  }

  /* Gallery Page  */
  .gallerybg{
    background: url("../img/gallery_cover.jpg");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
  }


  .gallery-container{
    columns:300px 4;
  }

  .gallery-image{
    width: 100%;
    margin-bottom: 14px;
    border-radius: 6px;
  }


  /* Client Page  */
  .clientbg{
    background: url("../img/map_cover.jpg");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .companies-list{
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
    list-style: none;
    margin-left: 0;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.companies-list li:before {
    content: "►";
    display: block;
    float: left;
    width: 1.2em;
    margin-right: 6px;
    /* color: var(--red); */
}


@media screen and (max-width: 991.5px) {
     .companies-list{
  columns: 1;
  -webkit-columns: 1;
  -moz-columns: 1;
}


 
}

  #country:nth-child(odd){
    background: var(--color-white);
  }

  #country:nth-child(even){
    background: var(--blue);
    color: var(--color-white);
  }

  .bg-client:nth-child(odd) div{
    background: var(--tblue);
    color: var(--blue)!important;
  }

  .bg-client:nth-child(even) div{
    background: var(--tred);
    color: var(--red)!important;
  }

  /* advertisement Page  */
  .adsbg{
    background: url("../img/ad_cover.jpg");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
  }



  /* docs */
  .docsbg{
    background: url("../img/doc.jpg");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
  }


  /* contact page */
  .contactbg{
    background: url("../img/contact.jpg");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .form-group{
    padding: 10px 0;
  }


  .map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    min-height:200px;
    height: 85%;
}

.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    min-height: 250px;
    position:absolute;
}