:root {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  .navbar-nav .nav-link {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    /* padding: 10px 15px; */
    transition: color 0.3s ease;
  }

  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  nav {
    position: fixed;
    z-index: 99;
    width: 100%;
    background: #ffffff;
  }
  nav .wrapper {
    position: relative;
    max-width: 1300px;
    padding: 0px 10px;
    height: 90px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .wrapper .logo img {
    position: absolute;
    color: #f2f2f2;
    /* font-size: 50px;
font-weight: 600;
text-decoration: none;
margin-top: 60px;*/
    width: 240px;
    height: 90px;
  }
  .wrapper .nav-links {
    display: inline-flex;
  }
  .nav-links li {
    list-style: none;
  }
  .nav-links li a {
    color: #4f2c3e;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 9px 15px;
    /*border-radius: 5px;*/
    transition: all 0.3s ease;
  }
  .nav-links li a:hover {
    color: #fff;
    background: #511c2f;
  }
  .nav-links .mobile-item {
    display: none;
  }
  .nav-links .drop-menu {
    position: absolute;
    background: #2c5e9f;
    color: #fff;
    width: 300px;
    line-height: 30px;
    /*top: 100px;*/
    margin-top: 10px;
    opacity: 0.9;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }

  .nav-links .drop-menu :hover {
    background: #434343;
  }
  .nav-links li:hover .drop-menu,
  .nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 0.9;
    visibility: visible;
  }
  .drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    color: #fff;
    font-weight: 200;
    border-bottom: 1px solid rgb(255, 255, 255);
    font-size: 14px;
  }

  ol,
  ul {
    padding-left: 0rem;
  }
  .mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    margin-top: 20px;
    top: 70px;
    opacity: 0;
    visibility: hidden;
  }
  .mega-box .content {
    background: linear-gradient(45deg, #764f8f, #da1f3e);
    padding: 25px 20px;
    display: flex;
    width: 100%;
    opacity: 1;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  .mega-box .content .row {
    width: calc(50% - 30px);
    line-height: 45px;
  }
  .content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .content .row header a {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
  }
  .content .row .mega-links {
    margin-left: -37.5px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
  }
  .row .mega-links li {
    padding: 0 20px;
  }
  .row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
    border-bottom: 1px solid rgb(255, 255, 255);
  }
  .row .mega-links li a:hover {
    color: #f2f2f2;
    /*background: #000000;*/
    /*border-radius: 5px;*/
  }
  .wrapper .btn {
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    display: none;
  }
  .wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
  }

  @media screen and (max-width: 1024px) {
    .wrapper .btn {
      display: block;
    }
    .wrapper .nav-links {
      position: fixed;
      height: 100vh;
      width: 100%;
      max-width: 350px;
      top: 0;
      left: -100%;
      background: #a6a6a6;
      display: block;
      padding: 50px 10px;
      line-height: 50px;
      overflow-y: auto;
      box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
      transition: all 0.3s ease;
    }
    /* custom scroll bar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #242526;
    }
    ::-webkit-scrollbar-thumb {
      background: #3a3b3c;
    }
    #menu-btn:checked ~ .nav-links {
      left: 0%;
    }
    #menu-btn:checked ~ .btn.menu-btn {
      display: none;
    }
    #close-btn:checked ~ .btn.menu-btn {
      display: block;
    }
    .nav-links li {
      margin: 15px 10px;
    }
    .nav-links li a {
      padding: 0 20px;
      display: block;
      font-size: 20px;
    }
    .nav-links .drop-menu {
      position: static;
      opacity: 1;
      top: 65px;
      visibility: visible;
      padding-left: 20px;
      width: 100%;
      max-height: 0px;
      overflow: hidden;
      box-shadow: none;
      transition: all 0.3s ease;
    }
    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box {
      max-height: fit-content;
    }
    .nav-links .desktop-item {
      display: none;
    }
    .nav-links .mobile-item {
      display: block;
      color: #2c5e9f;
      font-size: 20px;
      font-weight: 500;
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover {
      color: #ffffff;
      background: #2c5e9f;
    }
    .drop-menu li {
      margin: 0;
    }
    .drop-menu li a {
      /*border-radius: 5px;*/
      font-size: 18px;
    }
    .mega-box {
      position: static;
      top: 65px;
      opacity: 1;
      visibility: hidden;
      padding: 0 20px;
      max-height: 0px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .mega-box .content {
      box-shadow: none;
      flex-direction: column;
      padding: 20px 20px 0 20px;
    }
    .mega-box .content .row {
      width: 147%;
      /*margin-bottom: 15px;*/
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
      border-top: 0px;
    }
    .content .row .mega-links {
      border-left: 0px;
      padding-left: 15px;
    }
    .row .mega-links li {
      margin: 0;
    }
    .content .row header {
      font-size: 19px;
    }
  }
  nav input {
    display: none;
  }

  .whatsapp{
    position: fixed;
    cursor: pointer;
    padding: 1px;
    width: auto;
    text-align: left;
    outline: none;
    font-size: 18px;
    border-bottom: none;
    bottom: 20px;
    left: 25px;
    z-index: 2;
}

  /* --------------------------------------------- */
  /* General Styles */

  .banner {
    position: relative;
    text-align: center;
  }

  .banner img {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }

  .banner .banner-text {
    position: absolute;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    top: 50%;
    right: 30%;
    text-align: left;
    background: linear-gradient(45deg, #764f8fa8, #da1f3ea6);
    /* transform: translate(-50%, -50%); */
    color: #fff;
    font-size: 2.5rem;
    padding-left: 40px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }

  main {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    margin-bottom: -50px;
  }

  .about {
    flex: 3;
  }

  .about h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000;
  }

  .about img {
    width: 60%;
    height: auto;
    margin-top: 1rem;
  }

  @media (max-width: 768px) {
    /*.service-section {
  flex-direction: column;
  text-align: center;
}*/

    .about img {
      width: 100%;
      height: auto;
    }
  }

  aside {
    flex: 1;
    padding-left: 2rem;
    text-decoration: none;
  }

  aside h3 {
    font-weight: bold;
    color: #582031;
  }

  aside ul {
    list-style: none;
  }

  a {
    text-decoration: none;
    color: #4a353b;
  }

  a:hover {
    color: #582031;
  }

  aside ul li {
    background: #f0f0f0;
    padding: 0.5rem;
    margin-bottom: 10px;
    border-left: 4px solid #582031;
  }
  /*aside ul li {
text-decoration: none;
}*/

  /* .quote {
background-color: #f9f9f9;
text-align: center;
padding: 2rem;
} */

  .quote h3 {
    margin-bottom: 1rem;
  }

  .quote .btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }

  .quote .btn:hover {
    background-color: #0056b3;
  }

  /* {
margin: 0;
padding: 0;
box-sizing: border-box;
}*/

  body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }

  .key-services {
    font-size: 2.5rem;
    font-weight: bold;
    left: 50px;
    margin-bottom: 20px;
    position: relative;
  }

  .key-services::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, orange, pink);
    position: absolute;
    bottom: -10px;
    left: 0;
  }

  .service-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 30px;
    background-color: #f9f9f9;
  }

  .text-container {
    flex: 1;
    padding: 20px;
  }

  .text-container h6 {
    color: #ff5a4a;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .text-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .text-container p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.4;
    color: #555;
  }

  .learn-more-btn {
    background-color: #4c2b46;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 1rem;
    transition: background-color 0.3s;
  }

  .learn-more-btn:hover {
    text-decoration: none;
    color: #f1f1f1;
    background-color: #840362;
  }

  .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
  }

  .image-container img {
    max-width: 100%;
    height: auto;
  }

  @media (max-width: 768px) {
    .banner .banner-text{
      text-align: center;
      top: 30%;
      padding: 10px;
      right: 0;
    }
    .service-section {
      flex-direction: column;
      text-align: center;
      margin-top: 40px;
    }
    .key-services {
      margin-bottom: 50px;
      left: 30px;
    }

    .text-container {
      text-align: left;
      padding: 0%;
      line-height: 1.4;
    }

    .image-container {
      height: 30%;
      /*margin-top: 20px;*/
    }
    .image-container img {
      max-width: 105%;
    }
  }

  .contact-section ::-webkit-scrollbar {
    width: 8px;
  }
  
  /* Track */
  .contact-section ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  .contact-section ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  .contact-section ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  .contact-section body {
    background: rgba(132, 155, 219, 0.5);
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .contact-section .container {
    background: #fff;
    margin-top: 50px;
    padding: 20px 20px 20px 20px;
    box-sizing: border-box;
    border-radius: 20px;
    /*width: 945px;*/
  }
  
  .contact-section img {
    padding-left: 50px;
    width: 90%;
  }
  
  .contact-section .text-muted {
    font-size: 13px;
    font-weight: bold;
  }
  
  .contact-section .form-title {
    font-weight: bold;
  }
  
  .contact-section .form-group label {
    font-size: 11px;
    font-weight: bold;
    padding-left: 5px;
    color: #828282;
  }
  
  .contact-section .form-control {
    border: none;
    border-radius: 20px;
    background: rgba(165, 147, 69, 0.075);
    box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.2);
  }
  
  .contact-section .btn {
    width: 100%;
    font-size: 12px;
    margin-top: 10px;
    background-color: #4c2b46;
    color: white;
    text-align: center;
    border-radius: 5px;
  }
  
  .contact-section .form-control:focus {
    color: #495057;
    border-color: #fff !important;
    outline: 0;
    box-shadow: 0 1px 1px 1px rgba(0, 123, 255, 0.25) !important;
  }

  /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* Define and load custom font */
@font-face {
  font-family: 'Ethnocentric';
  src: url('/assets/img/Ethnocentric-Regular.woff') format('woff2'); /* Replace with the correct font path */
}
.footer h3{
  font-size: 26px;
  font-family: 'Ethnocentric', sans-serif; /* Fallback to sans-serif if font fails to load */
} 

.footer {
  font-size: 14px;
  background-color: #1f1f24;
  padding: 50px 0;
  color: rgb(255 255 255);
}

  .footer .icon {
    margin-right: 15px;
    font-size: 24px;
    line-height: 0;
  }

  .footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
    color: #fff;
  }

  .footer .footer-links {
    margin-bottom: 30px;
  }

  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }

  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }

  .footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }

  .footer .footer-links ul a:hover {
    color: #fff;
  }

  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
  }

  .footer .social-links a:hover {
    color: #fff;
    border-color: #fff;
  }

  .footer .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
  }
  .copyright a {
    color: white;
  }

  .footer .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
  }

  .footer .credits a {
    color: #fff;
  }

  hr {
    border-color: #666;
  }

  @media (min-width: 1400px){
    .container {
      max-width: 1300px !important;
  }
  }
  /*--------------- Scroll-top -----------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right:2px;
  bottom: 15px;
  z-index: 1099;
  background:#834a8b;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background: #933b6d;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
position: fixed;
inset: 0;
z-index: 9999;
overflow: hidden;
background: #fff;
transition: all 0.6s ease-out;
width: 100%;
height: 100vh;
}

#preloader:before,
#preloader:after {
content: "";
position: absolute;
border: 4px solid #834a8b;
border-radius: 50%;
animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
animation-delay: -0.5s;
}

@keyframes animate-preloader {
0% {
width: 10px;
height: 10px;
top: calc(50% - 5px);
left: calc(50% - 5px);
opacity: 1;
}

100% {
width: 72px;
height: 72px;
top: calc(50% - 36px);
left: calc(50% - 36px);
opacity: 0;
}
}