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

body {
    font-family: "Barlow", serif;
    color: #0c121d;
}

header {
    font-family: "Roboto", serif;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
}

.xs-text {
    font-size: 13px;
}

.xxl-text {
    font-size: 4.5rem;
}

.w-60 {
    width: 60%;
}

.bg-light-red {
    background: #BC7C7C;
}

.carousel-item img {
    min-height: 250px;
}

.dot-border-left {
    border-left: 2px solid #1A1A1A;
    padding-left: 30px;
    position: relative;
}

.dot-border-left:before, .dot-border-left:after {
    content: '';
    height: 6px;
    width: 6px;
    background: #1A1A1A;
    position: absolute;
    border-radius: 50%;
    left: -4px;
}

.dot-border-left:after {
    bottom: 0;
}

.contact-num {
    position: relative;
    text-decoration: none;
    color: #DB0000;
    padding-left: 10px;
}

.contact-circle {
    position: absolute;
    left: 0;
    top: -5px;
}

.contact-circle path {
    animation: draw-path 3s ease-in-out infinite;
}

.carousel-indicators [data-bs-target] { 
    height: 25px;
    width: 25px;
}

section#provide .dot-border-left{
    border-width: 0;
    border-color: #BC7C7C;
}

section#provide .dot-border-left:before, section#provide .dot-border-left:after { 
    display: none;
    background: #BC7C7C;
}

@keyframes draw-path {
    to {
        stroke-dashoffset: 0; /* Fully drawn */
    }
}

nav {
    font-size: 15px;
    padding: 0!important;
}

.navbar-toggler {
    border: 0;
    outline: 0;
}

nav .nav-item {
    flex-grow: 1;
}

nav .navbar-collapse {
    background-color: #DB0000!important;
}

nav .nav-item a {
    color: #fff!important;
    padding: 10px;
}

nav .nav-item a:not(.dropdown-item) {
    text-align: center;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    justify-content: center;
}

nav .nav-link {
    z-index: 1;
    padding: 0;
}

nav .nav-item a:not(.dropdown-item):before {
    content: '';
    height: 0;
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #1A1A1A;
    z-index: -1;
}
nav .nav-item:hover a:before {
    animation: navItemHover 0.25s forwards;
}

.dropdown-menu .dropdown-item {
    text-align: center;
}

.dropdown-menu .dropdown-item:hover {
    background: #000;
}

@keyframes navItemHover {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
    
}

nav .dropdown-menu {
    background: #DB0000;
    border: 0;
}

.nav-link.active {
    background: #000;
}

.pattern-bg {
    background-image: url(./assets/trans-pattern.png);
    border-radius: 0px;
    background-color: rgb(147, 14, 14);
    background-position: 0% 0%;
    background-repeat: repeat;
    background-size: auto;
    color: #fff;
}

.image-container {
    position: relative;
    overflow: hidden;
  }
  .image-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    color: white;
    font-weight: 400;
  }

  .social-icon {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1A1A1A;
  }
  


@media (min-width: 768px) {
    .stats-section {
        height: 350px;
     }
     .overlay {
        left: -100%;
        transition: left 0.5s ease-in-out;
      }
      .image-container:hover .overlay {
        left: 0;
      }
}
@media (min-width: 1200px) { 
    header {
        padding: 10px 150px 10px 10px;
    }
    nav {
        height: 76px;
    }
    nav .dropdown-menu {
        background: #1A1A1A;
    }

    .dropdown:hover .dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin-top: 0; /* remove the gap so it doesn't close */
        border-radius: 0;
    }

    .dropdown-menu .dropdown-item {
        text-align: start;
     }

     section#provide .dot-border-left{
        border-width: 2px;
    }

     section#provide .dot-border-left:before, section#provide .dot-border-left:after { 
        display: block;
    }
 }

 