@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0;
    padding: 0;
}
html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    color:#00091d;
    font-family: "Roboto", serif;
}
.section {
  min-height: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-orange {
  color: #ff8b34;
}

.text-orangered {
  color: orangered;
}

.text-color-hover h3:hover{
  color: orangered;
}

h2 {
  font-size: 3em;
}
#menu {
  transition: transform 0.3s ease-in-out;
}
a.nav-link  {
  color: #000;
}

a.nav-link:hover {
  color: #ff8b34;
}

a.nav-link:focus {
  color: #000;
}

p {
    font-family: "Roboto", serif;
}

a.read-more  {
    text-decoration: none;
    color: orangered;
    font-weight: bold;
    font-family: "Roboto", serif;

}

.read-more i {
    font-weight: bold;
}

.button-css {
    transition: all 0.3s ease-in-out;
    font-family: "Roboto", serif;
}
  
  .button-css {
    width: 150px;
    height: 60px;
    border-radius: 50px;
    background-image: linear-gradient(135deg, #ff8b34 0%, orangered 100%);
    box-shadow: 0 20px 30px -6px rgba(238, 103, 97, 0.5);
    outline: none;
    cursor: pointer;
    border: none;
    font-size: 24px;
    color: white;
  }
  
  .btn:hover {
    transform: translateY(3px);
    box-shadow: none;
  }
  
  .btn:active {
    opacity: 0.5;
  }
          .bg-image-home {
            background-image: url('/assets/img/homepage.jpg'); /* Use '/' to refer to the public directory */
            width: 100%;
              height: 40rem;
              background-size: cover;
              background-repeat: no-repeat;
          }
  
          #dynamicText {
              font-weight: bold;
              opacity: 0;
              animation: fadeInOut 2s ease-in-out infinite;
          }
  
          /* Keyframes for fadeInOut effect */
          @keyframes fadeInOut {
              0% {
                  opacity: 0;
              }
              25% {
                  opacity: 1;
              }
              75% {
                  opacity: 1;
              }
              100% {
                  opacity: 0;
              }
          }

          .progress {
            width: 150px;
            height: 150px;
            background: none;
            margin: 0 auto;
            position: relative;
        }
        
        .progress:after {
            content: "";
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 10px solid whitesmoke;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .progress > span {
            width: 50%;
            height: 100%;
            overflow: hidden;
            position: absolute;
            top: 0;
            z-index: 1;
        }
        
        .progress .progress-left {
            left: 0;
        }
        
        .progress .progress-bar {
            width: 100%;
            height: 100%;
            border-width: 10px;
            border-style: solid;
            position: absolute;
            top: 0;
        }
        
        .progress .progress-left .progress-bar {
            left: 100%;
            border-top-right-radius: 80px;
            border-bottom-right-radius: 80px;
            border-left: 0;
            transform-origin: center left;
            transition: transform 1.5s ease-out; /* Smooth transition */
          }
        
        .progress .progress-right {
            right: 0;
        }
        
        .progress .progress-right .progress-bar {
            left: -100%;
            border-top-left-radius: 80px;
            border-bottom-left-radius: 80px;
            border-right: 0;
            transform-origin: center right;
            transition: transform 1.5s ease-out; /* Smooth transition */
          }
        
        .progress .progress-value {
            width: 70%;
            height: 70%;
            border-radius: 50%;
            background: #fff;
            font-size: 28px;
            color: #111;
            font-weight: bold;
            line-height: 135px;
            text-align: center;
            position: absolute;
            top: 15%;
            left: 15%;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .progress.orange .progress-bar {
            border-color: orangered;
            background-color:     #ff8b34;;
        }

           /* Container for the progress bar */
    .progress-about {
      width: 100%; /* Full width */
      background-color: #e9ecef; /* Light background for contrast */
      border-radius: 20px; /* Rounded corners */
      overflow: hidden; /* Ensures inner progress bar doesn't overflow */
      height: 20px; /* Height of the progress bar */
      margin-bottom: 1rem; /* Space below the progress bar */
  }

  /* Inner progress bar */
  .progress-bar-about {
      height: 100%; /* Full height of the parent container */
      border-radius: 20px; /* Rounded corners */
      transition: width 0.5s ease; /* Smooth animation for progress */
  }

  /* Custom orange color for the progress bar */
  .progress-bar-orange {
      background-color: #ff8b34;
  }
        

        
        @media only screen and (max-width: 990px) {
            .progress {
                margin-bottom: 20px;
            }
        }
                
          
/* From Uiverse.io by joe-watson-sbf */ 
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    font-family: "Roboto", serif;
}
  
  .title {
    font-size: 1.5em;
    font-weight: 900;
    text-align: center;
    margin: 0;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    box-shadow: 3px 5px 0 orangered;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid orangered;
    border-radius: 1rem;
  }
  
  
  .flip-card-front {
    background: linear-gradient(120deg, bisque 60%, rgb(255, 231, 222) 88%,
       rgb(255, 211, 195) 40%, rgba(255, 127, 80, 0.603) 48%);
    color: coral;
  }
  
  .flip-card-back {
    background: linear-gradient(120deg, rgb(255, 174, 145) 30%, coral 88%,
       bisque 40%, rgb(255, 185, 160) 78%);
    color: white;
    transform: rotateY(180deg);
  }

  #contact {
    padding:1em auto;
  }
  
  .main-container-contact {
    max-width: 120rem;
    margin: auto;
    width: 95%;
    background-color: transparent;
  }
  
.contact-circle {
  border:14px solid orangered; width: 800px ; height: 800px; background-color: coral; position: absolute;left: 50%;transform: translate(-50%,-0%);z-index: -1;
}
  
  .contact__form_container {
    background: #fff;
    border: 2px solid #000;
    padding: 2rem;
    margin-top: 6rem;
    text-align: right;
    border-radius: 7px;
    box-shadow: 5px 5px 0px  orangered;
    
  }
  
  .form__contact-field {
    margin-bottom: 1.5rem;
    
  }
  
  .contact_form_label {
    color: #000;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 2rem;
    display: block;
    text-align: left;
    font-family: "Roboto", serif;

  }
  
  .input-form i {
    border: 2px solid #111;  border-right: none; outline: none;  padding: 1.1em .5em;border-radius: 5px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;


  }
  .contact__form_input {
    font-family: "Roboto", serif;

    color: #000;
    padding: 1.2rem;
    width: 100%;
    border: 2px solid #000;
    font-size: .9rem;
    letter-spacing: 0;
    background: #fff;
    border-radius: 7px;
    font-weight: 600;
    outline: none;
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 5px 5px 0px     orangered;
  }

  .contact__form_input:focus {
    box-shadow: none;
  }
  
  .contact__btn {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: none;
    font-family: "Roboto", serif;
    box-shadow: 5px 5px 0px orangered;

    transition: .5s;
  }
  
  .contact__btn:hover {
    background-color: white;
    color: #111;
    box-shadow: 0 0 10px white;
  }
  
  .send-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #fefefe;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
  
    font-family: "Roboto", serif;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 0;
    outline: 2px solid #fafafa;
    box-shadow: 5px 5px 0px orangered;

  }
  
  .send-button::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 30px;
    background: linear-gradient(
      0deg,
      #fbfbfb 0%,
      #fafafa 5%,
      #f7f7f7 72%,
      #f2f2f2 86%,
      #f0f0f0 100%
    );
    box-shadow: inset 0 2px 7px rgba(143, 143, 143, 0.16);
    transition: all 0.3s ease;
    z-index: -1;
    margin: 2px;
  }
  
  .send-button:hover::before {
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    margin: 5px;
  }
  
  .send-button:focus {
    outline: 2px solid #fefefe;
    box-shadow: 9px 9px 44px #cecece3a, -9px -9px 44px #d3d3d33d,
      inset 0 0 0 2px rgba(192, 192, 192, 0.5);
  }
  
  .send-icon {
    margin-right: 5px;
    transition: transform 0.3s ease;
  }
  
  .send-button:hover .send-icon {
    transform: translateX(7px);
  }
  
  .send-button:focus .send-icon {
    transform: rotate(-40deg);
  }

 
.img-height {
  height: 100%;
}
  @media  screen and (max-width:600px) {
    .about-col {

      display: flex;
      flex-direction: column-reverse;
    }

    .about-col-1, .about-col-2 {
      width: 100%;
    }
    .about-col-1 {
      margin-top: 3em;
    }

    .about-col-2 {
      margin: 0 ;
    }

    .contact-circle {
      width: 300px;
      height: 300px;
    }
  }