
@import url("https://fonts.googleapis.com/css?family=Hind:400,600|Montserrat:600,700");
/*--------------------------------------------------------------
#0.1    Theme Reset Style
--------------------------------------------------------------*/
/* * {
    outline: 1px solid red;
  } */
  


html {
    font-size: 15px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    body {
        font-size: 1rem;
    }
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    color: #051829;
    margin: 0 0 0.4em;
}

ul {
    padding-left: 0;
    margin: 0;
    list-style-position: inside;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

a:hover,
a:focus {
    text-decoration: none;
}

a:focus {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
#0.2    Global Elements
--------------------------------------------------------------*/

.page-wrapper {
    position: relative;
    overflow: hidden;
}

.float-right {
    float: right;
}

.wow {
    visibility: hidden;
}

.fi:before {
    margin: 0;
}

.section-padding {
    padding: 50px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 70px 0;
    }
}

/*** contact form error handling ***/


/*** back to top **/

.back-to-top {
    background-color: rgba(253, 201, 0, 0.9);
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: none;
    position: fixed;
    z-index: 999;
    right: 15px;
    bottom: 15px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

@media (max-width: 991px) {
    .back-to-top {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

.back-to-top:hover {
    background-color: #ed1c24;
}

.back-to-top i {
    font-size: 18px;
    font-size: 1.2rem;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-fadeIn {
    animation: fadeIn 0.3s ease-out;
  }


  /* Common Floating Button Styles */
/* Wrapper for all buttons */
/* Floating button container */
.floating-buttons-wrapper {
    position: fixed;
    bottom: 3.5rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    z-index: 9999;
  }
  
  /* Button style */
  .floating-btn {
    position: relative;
    width: 50px;
    height: 50px;
  }
  
  .floating-btn .icon_logo {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
  
  .floating-btn .icon_logo img {
    width: 24px;
    height: 24px;
  }
  
  /* Ripple Animation */
  .circle_waves {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #f87171;
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: ripple 3s infinite;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
  }
  
  @keyframes ripple {
    0% {
      transform: scale(1);
      opacity: 0.6;
    }
    100% {
      transform: scale(2.5);
      opacity: 0;
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 640px) {
    .floating-btn {
      width: 44px;
      height: 44px;
    }
    .floating-btn .icon_logo {
      width: 44px;
      height: 44px;
    }
    .floating-btn .icon_logo img {
      width: 20px;
      height: 20px;
    }
  }
  

  @keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .animate-fade-in {
    animation: fade-in 1s ease-out both;
  }

  


  @keyframes slide-in-left {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
  }
  
  .animate-slide-in-left {
    animation: slide-in-left 0.8s ease-out both;
  }



  @keyframes slide-in-right {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .animate-slide-in-right {
    animation: slide-in-right 0.8s ease-out both;
  }

  
  @keyframes slide-in-bottom {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-slide-in-bottom {
    animation: slide-in-bottom 0.8s ease-out both;
  }

  
  @keyframes fade-in-zoom {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  .animate-fade-in-zoom {
    animation: fade-in-zoom 0.8s ease-out both;
  }

  
  @keyframes slide-up-fade {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .animate-slide-up-fade {
    animation: slide-up-fade 0.7s ease-out both;
  }


  /* Preloader */



  /* Loader Style */
.loader {
    width: 60px;
    aspect-ratio: 0.5;
    display: grid;
  }
  .loader:before {
    content: "";
    width: 30%;
    aspect-ratio: 1;
    border-radius: 50%;
    margin: auto auto 0;
    background: #CF4647; /* Ball color */
    animation: l9-0 0.5s cubic-bezier(0,800,1,800) infinite;
  }
  .loader:after {
    content: "";
    width: 100%;
    aspect-ratio: 1/cos(30deg);
    margin: 0 auto auto;
    clip-path: polygon(50% -50%, 100% 50%, 50% 150%, 0 50%);
    background: #524656; /* Base color */
    animation: l9-1 0.5s linear infinite;
  }
  
  @keyframes l9-0 {
    0%, 2%   { transform: translateY(0); }
    98%, 100% { transform: translateY(-0.2%); }
  }
  
  @keyframes l9-1 {
    0%, 5%   { transform: rotate(0deg); }
    95%, 100% { transform: rotate(-60deg); }
  }
  
  /* Optional fade transition */
  #preloader {
    transition: opacity 0.5s ease;
  }
  