  /* General Styles */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: Arial, sans-serif;
      background-color: #fcf9f9;
  }
  textarea {
    resize: none;
    overflow: hidden;
  }
  
  ::-webkit-scrollbar {
      width: 10px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
      background: #f1f1f1;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
      background: #d85a5a;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
      background: #f8a0a0;
  }

  /* Navbar Styling */
  .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2rem;
      background-color: #fff;
      color: #000;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
      /* Transition for smooth effect */
      z-index: 1000;
  }

  /* Logo Styling */
  .navbar .logo {
      font-size: 1.5rem;
      font-weight: bold;
  }

  /* Navbar Links Styling */
  .navbar-links {
      display: flex;
      gap: 1rem;
  }

  .navbar-links a {
      text-decoration: none;
      font-size: 1rem;
  }

  .navbar-links a:hover {
      color: #d85a5a;
  }

  .scrld {
      color: #fff;
  }

  /* Hamburger Icon Styling (only visible on mobile) */
  .hamburger {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
  }

  .custom-select-wrapper {
    position: relative;
    width: 60px;
  }
  
  /* Reset default select styles */
  .custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border: 2px solid #d85a5a;
    border-radius: 5px;
    background-color: #d85a5a;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  /* Focus and hover styles */
  .custom-select:hover {
    cursor: grab;
  }
  
  .custom-select:focus {
    border: none;
    box-shadow: 0 0 5px rgba(92, 157, 237, 0.5);
    outline: none;
  }
  

  /* Mobile View */
  @media (max-width: 768px) {
      .navbar-links {
          display: none;
          /* Hide links initially */
          flex-direction: column;
          width: 100%;
          position: absolute;
          top: 90px;
          left: 0;
          background-color: #d85a5a;
          padding: 1rem;
          gap: 0.5rem;
          color: #fff;
      }

      .navbar-links a {
          color: #fff;
      }

      .navbar-links a:hover {
          color: #05c222;
      }

      .navbar-links.active {
          display: flex;
          /* Show links when active */
      }

      .hamburger {
          display: block;
      }
      .box {
        height: 260;
        max-height: 260px;
      }
  }

  /* Scroll effect styling */
  .navbar.scrolled {
      background-color: #d85a5a;
      color: #fff;
      box-shadow: 0 4px 8px rgba(11, 11, 11, 0.3);
  }

  
#hexGrid {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    font-family: sans-serif;
    list-style-type: none;
    padding-bottom: 7.4%;
    font-size: 14px;
  }
  
  .hex {
    position: relative;
    visibility:hidden;
    outline:1px solid transparent; /* fix for jagged edges in FF on hover transition */
    transition: all 0.5s;
    backface-visibility: hidden;
    will-change: transform;
    transition: all 0.5s;
    width: 33.333%;
  }
  .hex:nth-child(5n+4){ /* first hexagon of even rows */
    margin-left:16.666%;  /* = width of .hex / 2  to indent even rows */
  }
  
  .hex::after{
    content:'';
    display:block;
    padding-bottom: 86.602%;  /* =  100 / tan(60) * 1.5 */
  }
  .hexIn{
    position: absolute;
    width:96%;
    padding-bottom: 110.851%; /* =  width / sin(60) */
    margin: 2%;
    overflow: hidden;
    visibility: hidden;
    outline:1px solid transparent; /* fix for jagged edges in FF on hover transition */
    -webkit-transform: rotate3d(0,0,1,-60deg) skewY(30deg);
        -ms-transform: rotate3d(0,0,1,-60deg) skewY(30deg);
            transform: rotate3d(0,0,1,-60deg) skewY(30deg);
      transition: all 0.5s;
  }
  .hexIn * {
    position: absolute;
    visibility: visible;
    outline:1px solid transparent; /* fix for jagged edges in FF on hover transition */
  }
  .hexLink {
      display:block;
      width: 100%;
      height: 100%;
      text-align: center;
      color: #fff;
      overflow: hidden;
      -webkit-transform: skewY(-30deg) rotate3d(0,0,1,60deg);
          -ms-transform: skewY(-30deg) rotate3d(0,0,1,60deg);
              transform: skewY(-30deg) rotate3d(0,0,1,60deg);
  }
  
  
  
  
  /*** HEX CONTENT **********************************************************************/
  .welcome{
    width: 100%;
    margin-top: 120px;
  }
  .hex img {
    left: -100%;
    right: -100%;
    width: auto;
    height: 100%;
    margin: 0 auto;
  }
  
  .hex h1, .hex p {
    width: 100%;
    padding: 5%;
    box-sizing:border-box;
    font-weight: 300;
    opacity: 0;
  }
  
  #demo1 {
    color: #F5CE95;
    text-transform: capitalize;
      text-align: center;
    bottom: 50%;
    padding-top:50%;
    font-size: 1.5em;
    z-index: 1;
  }
  .hex h1:before, .hex h1:after {
    display: inline-block;
    margin: 0 0.5em;
    width: 0.25em;
    height: 0.03em;
    background: #ffffff;
    content: '';
    vertical-align: middle;
    transition: all 0.3s;
    text-align:center;
  }
  
  #demo2 {
  top: 50%;
  text-align: center;
  text-transform: uppercase;
      
  }
  
  .heximg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  }
  
  .heximg:before, .heximg:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    opacity: 0;
    transition: opacity 0.5s;
  }
  .heximg:before {
    background: rgba(22, 103, 137, 0.3)
  }
  .heximg:after {
    background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.5), transparent);
  }
  
  /*** HOVER EFFECT  **********************************************************************/
  
  
  
  .hexLink:hover h1, .hexLink:focus h1,
  .hexLink:hover p, .hexLink:focus p{
  opacity:1;
  transition: 0.8s;
  }
  
  
  .hexIn:hover .heximg:before,
  .hexIn:hover .heximg:after,
  .hexIn:hover .hexLink {
    opacity: 1;
  }
  
  
  

  /* For demonstration, add some padding on top */
  .content {
      padding-top: 80px;
  }


  .container {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(2, 1fr);
      margin: 80px;
      /* Two columns for larger screens */
  }

  /* Responsive layout for small screens */
  @media (max-width: 768px) {
      .container {
          grid-template-columns: 1fr;
          /* One column for small screens */
          margin: 30px;
      }
  }

  /* Box styling */
  .box {
      margin: 20px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
      height: 500px;
      max-height: 500px;
  }
  .boxContent {
    padding: 20px;
}

  .box:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }

  .contact-us h2 {
    text-align: center;
    color: #d85a5a;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
  }

  .contact-us p {
    text-align: center;
    color: #d85a5a;
    margin-bottom: 30px;
    font-size: 1.1rem;
  }

  .contact-us form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-us input, 
  .contact-us textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s;
  }

  .contact-us input:focus, 
  .contact-us textarea:focus {
    border-color: #d85a5a;
    outline: none;
  }

  .contact-us button {
    padding: 15px;
    background-color: #d85a5a;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .contact-us button:hover {
    background-color: #bb3838;
  }

  /* Responsive Design */
  @media (max-width: 600px) {
    .contact-us h2 {
      font-size: 1.75rem;
    }

    .contact-us p {
      font-size: 1rem;
    }
    .box {
      height: 260;
      max-height: 260;
    }
  }

  .faqH1 {
    text-align: center;
    margin: 20px 0;
    color: #2c3e50;
  }
  .faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-question {
    width: 100%;
    background: #d85a5a;
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-question:hover {
    background: #d85a5a;
  }
  
  .faq-question .arrow {
    font-size: 18px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f4f4f4;
    padding: 0 20px;
  }
  
  .faq-answer p {
    padding: 15px 0;
    margin: 0;
  }
  
  /* Expand/Collapse Animation */
  .faq-item.open .faq-answer {
    max-height: 200px; /* Adjust based on your content */
  }
  
  .faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
  }
  
  .img {
      width: 100%;
      height: 100%;
  }

  .curved-image {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 100%;
  }

  .curved-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      clip-path: polygon(50% 0%, 66% 13%, 78% 41%, 100% 70%, 80% 90%, 56% 68%, 20% 90%, 0% 70%, 36% 47%, 31% 11%);
  }

  /* Testemonials */

  .shadow-effect {
      background: #fff;
      padding: 20px;
      border-radius: 4px;
      text-align: center;
      border: 1px solid #ECECEC;
      box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
  }

  .img-circle {
      border-radius: 50%;
  }

  #customers-testimonials .shadow-effect p {
      font-family: inherit;
      font-size: 17px;
      line-height: 1.5;
      margin: 0 0 17px 0;
      font-weight: 300;
  }

  .testimonial-name {
      margin: -17px auto 0;
      display: table;
      width: auto;
      background: #3190E7;
      padding: 9px 35px;
      border-radius: 12px;
      text-align: center;
      color: #fff;
      box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
  }

  #customers-testimonials .item {
      text-align: center;
      padding: 50px;
      margin-bottom: 80px;
      opacity: .2;
      -webkit-transform: scale3d(0.8, 0.8, 1);
      transform: scale3d(0.8, 0.8, 1);
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
  }

  #customers-testimonials .owl-item.active.center .item {
      opacity: 1;
      -webkit-transform: scale3d(1.0, 1.0, 1);
      transform: scale3d(1.0, 1.0, 1);
  }

  .owl-carousel .owl-item img {
      transform-style: preserve-3d;
      max-width: 90px;
      margin: 0 auto 17px;
  }

  #customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
  #customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
      background: #3190E7;
      transform: translate3d(0px, -50%, 0px) scale(0.7);
  }

  #customers-testimonials.owl-carousel .owl-dots {
      display: inline-block;
      width: 100%;
      text-align: center;
  }

  #customers-testimonials.owl-carousel .owl-dots .owl-dot {
      display: inline-block;
  }

  #customers-testimonials.owl-carousel .owl-dots .owl-dot span {
      background: #3190E7;
      display: inline-block;
      height: 20px;
      margin: 0 2px 5px;
      transform: translate3d(0px, -50%, 0px) scale(0.3);
      transform-origin: 50% 50% 0;
      transition: all 250ms ease-out 0s;
      width: 20px;
  }

  /* Footer Styling */
  .footer {
      background-color: #333;
      color: #fff;
      padding: 2rem 1rem;
      text-align: center;
  }

  .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0.2rem 0;
      gap: 1.5rem;
      margin-left: 35px;
  }

  .footer-container div {
      flex: 1 1 200px;
      min-width: 200px;
  }

  .footer h2 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      font-family: 'Georgia', 'Times New Roman', serif;
  }

  .contact-Us-footer,
  .About-Us,
  .footer ul,
  .footer a {
      font-size: 0.9rem;
      line-height: 1.6;
      text-align: left;
  }

  .footer-ul-li {
      display: flex;
      justify-content: space-around;
  }

  .footer ul {
      list-style-type: circle;
  }

  .footer ul li {
      margin: 0.2rem 0;
  }

  .footer ul li::marker {
      color: #d85a5a;
  }

  .footer a {
      color: #aaa;
      text-decoration: none;
  }

  .email-icon {
      color: #d85a5a;
      font-size: 0.8rem;
      margin-right: 10px;
  }

  .phone-icon {
      color: #d85a5a;
      font-size: 0.8rem;
      margin-right: 10px;
  }

  .location-icon {
      color: #d85a5a;
      font-size: 0.8rem;
      margin-right: 10px;
  }

  .email-icon:hover {
      color: #d85a5a;
      font-size: 1rem;
  }

  .phone-icon:hover {
      color: #d85a5a;
      font-size: 1rem;
  }

  .location-icon:hover {
      color: #d85a5a;
      font-size: 1rem;
      ;
  }

  .footer a:hover {
      color: #fff;
  }

  .footer-social .social-icon {
      display: inline-block;
      margin: 0.3rem;
      padding: 0.5rem;
      color: #fff;
      background-color: #555;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      line-height: 1.5;
      text-align: center;
  }

  .footer-social .social-icon:hover {
      background-color: #777;
  }

  .facebook {
      background: url(img/Facebook.png);
      background-repeat: no-repeat;
      background-size: 35px 35px;
  }

  .twitter {
      background: url(img/twitter.png);
      background-repeat: no-repeat;
      background-size: 35px 35px;
  }

  .linkedin {
      background: url(img/LinkedIn.png);
      background-repeat: no-repeat;
      background-size: 35px 35px;
  }

  .instagram {
      background: url(img/Instagram.png);
      background-repeat: no-repeat;
      background-size: 35px 35px;
  }

  .facebook:hover {
      background-size: 40px 40px;
  }

  .twitter:hover {
      background-size: 40px 40px;
  }

  .linkedin:hover {
      background-size: 40px 40px;
  }

  .instagram:hover {
      background-size: 40px 40px;
  }

  .footer-bottom {
      margin-top: 2rem;
      font-size: 1rem;
      margin-Bottom: 3rem;
      color: #d85a5a;
  }

  .footer-bottom p:hover {
      color: #fff;
      font-size: 1.1rem;
  }

  /* Chatbot Styling */
  .chatbot-container {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 300px;
      max-width: 90%;
      background-color: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      border-radius: 8px;
      overflow: hidden;
      z-index: 1001;
  }

  .chatbot-toggle {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #d85a5a;
      color: #fff;
      padding: 0.7rem 1rem;
      font-size: 1rem;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      z-index: 1000;
      text-decoration: none;
  }

  .chatbot-toggle-whatsapp {
      position: fixed;
      bottom: 20px;
      left: 20px;
      background-color: #05c222;
      color: #fff;
      padding: 0.7rem 1rem;
      font-size: 1rem;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      z-index: 1000;
      text-decoration: none;
  }