  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body,
  html {
    height: 100%;
    font-family: "Poppins", Arial, sans-serif;
  }

  .slider {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease;
  }

  .slide.active {
    opacity: 1;
  }

  .navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    padding: 0 80px;
    padding-top: 50px;
  }

  .navbar ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
  }

  .navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 15px;
    transition: background 0.3s;
  }

  .hero-section {
    height: 94vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .hero-content h1 {
    font-size: 80px;
    color: #c8a97e;
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0;
    line-height: 1;
  }

  .hero-content p {
    font-size: 70px;
    margin: 20px 0;
    font-weight: 600;
  }

  .hero-content .btn {
    padding: 10px 20px;
    background: #ff4081;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
  }

  .hero-content .btn:hover {
    background: #e91e63;
  }

  .info {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .info p {
    color: rgba(237, 231, 231, 0.454);
  }

  .navbar .btn a {
    text-decoration: none;
    color: #fff;
    background: #c8a97e;
    padding: 15px;
    border-radius: 5px;
  }

  #active {
    color: #c8a97e;
  }

  #active:hover {
    color: #fff;
  }

  .navbar .logo a {
    text-decoration: none;
    font-weight: 900;
    font-size: 20px;
    color: #fff;
  }

  .sub-hero {
    display: flex;
    padding-top: 20px;
  }

  .sub-hero .img-des img {
    width: 30%;
    border-radius: 50%;
  }

  .img-des .t-des {
    padding-top: 10px;
  }

  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 20px;
    justify-content: space-between;
  }

  .hamburger span {
    height: 4px;
    background-color: white;
    width: 100%;
    transition: all 0.3s ease-in-out;
  }

  /* Media queries for responsiveness */
  @media (max-width: 768px) {
    .navbar ul {
      flex-direction: column;
      gap: 1;
      position: absolute;
      top: 100px;
      left: -100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      height: 77vh;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: left 0.3s ease;
      z-index: 2;
    }

    .navbar ul.active {
      left: 0;
    }

    .hamburger {
      display: flex;
    }

    .navbar .btn {
      visibility: visible;

    }

    .sub-hero .img-des img {
      width: 20%;


    }

    .sub-hero .img-des .t-des {
      color: black;
    }

    .sub-hero .img-des h3 {
      color: black;
    }

    .sub-hero {
      flex-direction: column;
      position: relative;
      top: 70%;
    }

    .info {
      display: none;
    }

    .hero-content h1 {
      font-size: 50px;
      position: relative;
      top: 50%;

    }

    .hero-section {
      height: 99vh;
    }

    .hero-content p {
      font-size: 40px;
      position: absolute;
      top: 65%;
      left: 20%;
    }
  }

  /* Media queries for responsiveness */
  @media (max-width: 538px) {
    .hero-content p {
      position: absolute;
      left: 15%;
      font-size: 25px;

    }

  }


  /* Media queries for responsiveness */
  @media (max-width: 320px) {
    .sub-hero {
      flex-direction: column;
      position: relative;
      top: 90%;
      padding: 20px;
    }

    .hero-content p {
      position: absolute;
      left: 15%;
      font-size: 20px;

    }

  }

  /* Media queries for responsiveness */
  @media (max-width: 375px) {
    .sub-hero {
      flex-direction: column;
      position: relative;
      top: 90%;
      padding: 20px;
    }

    .hero-content p {
      position: absolute;
      left: 19%;
      font-size: 20px;

    }

  }

  /* Media queries for responsiveness */
  @media (max-width: 425px) {
    .sub-hero {
      flex-direction: column;
      position: relative;
      top: 90%;
      padding: 20px;
    }

    .hero-content p {
      position: absolute;
      left: 19%;
      font-size: 20px;

    }

  }


  /* ------------------------------------------------------------- */

  /* Hidden scrolled navbar (appears on scroll) */
  .scrolled-navbar {
    position: fixed;
    top: -100px;
    /* Initially hidden above the viewport */
    width: 100%;
    background-color: white;
    padding: 15px 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Slight shadow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: top 0.3s ease;
    /* Animation effect */
  }

  .scrolled-navbar ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
  }

  .scrolled-navbar ul li a {
    color: black;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 15px;
    transition: background 0.3s;
  }

  .scrolled-navbar .btn a {
    text-decoration: none;
    color: white;
    background-color: #c8a97e;
    padding: 10px 20px;
    border-radius: 5px;
  }

  .scrolled-navbar .logo a {
    text-decoration: none;
    font-weight: 900;
    font-size: 20px;
    color: black;
  }

  .scrolled-navbar.active {
    top: 0;
    /* Slide down into view */
  }

  /* Initially hidden scrolled-navbar for small devices */
  .scrolled-navbar {
    display: none;
    /* Hide by default on small screens */
  }

  /* Show scrolled-navbar only on larger screens */
  @media (min-width: 769px) {
    .scrolled-navbar {
      display: flex;
      /* Flex container for the scrolled-navbar */
      position: fixed;
      top: -100px;
      /* Initially hidden above the viewport */
      width: 100%;
      background-color: white;
      padding: 15px 80px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      /* Slight shadow */
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transition: top 0.3s ease-in;
      /* Animation effect */
    }

    .scrolled-navbar #active {
      color: #c8a97e;
    }

    .scrolled-navbar.active {
      top: 0;
      /* Slide down into view */
    }
  }


  .container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
  }

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

  .row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .col-left,
  .col-right {
    flex: 1;
    padding: 10px;
  }

  .image-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .image-wrapper .img-right {
    width: 48%;
    height: 500px;
    background-image: url(Assests/about.jpg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }


  .image-wrapper .img-left {
    width: 48%;
    height: 500px;
    margin-top: 25px;
    background-color: #c8a97e;
    background-image: url(Assests/about-1.jpg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }



  .col-right span {

    font-weight: normal;
    font-size: 100px;
    display: block;
    color: #c8a97e;
    font-family: "Great Vibes", cursive;
    position: relative;
    left: 25px;
    top: 25px;

  }

  .col-right h2 {
    font-weight: 600px;
    font-size: 51px;
    position: relative;
    left: 25px;
    bottom: 30px;
  }

  .col-right p {
    font-size: 22px;
    position: relative;
    left: 25px;
    padding-bottom: 10px;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.5;
  }

  .col-right h1 {
    position: relative;
    left: 25px;
    font-weight: 700;
    font-size: 40px;
    color: #c8a97e;
  }



  .info-row {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
  }

  .info-row .col {
    flex: 1;
    margin: 0 10px;
    padding: 20px;

    text-align: center;
  }

  .info-row .col h3 {
    margin-bottom: 15px;
    font-size: 40px;
    color: #c8a97e;
  }

  .info-row .col p {
    font-size: 16px;
    color: #666;
  }

  #specific {
    line-height: 1.5;
    font-size: 15px;
    text-align: left;

  }






  /* --------------------------------------- */
  * {
    box-sizing: border-box;
  }

  body {
    font-family: "Poppins", Arial, sans-serif;
  }

  .container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
  }

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

  .row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .col-left,
  .col-right {
    flex: 1;
    padding: 10px;
  }

  .image-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .image-wrapper .img-right,
  .image-wrapper .img-left {
    width: 48%;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .image-wrapper .img-left {
    margin-top: 25px;
    background-color: #c8a97e;
  }

  /* Right column text styles */
  .col-right span {
    font-weight: normal;
    font-size: 100px;
    display: block;
    color: #c8a97e;
    font-family: "Great Vibes", cursive;
    position: relative;
    left: 25px;
    top: 25px;
  }

  .col-right h2 {
    font-weight: 600;
    font-size: 51px;
    position: relative;
    left: 25px;
    bottom: 30px;
  }

  .col-right p {
    font-size: 22px;
    position: relative;
    left: 25px;
    padding-bottom: 10px;
    line-height: 1.5;
  }

  .col-right h1 {
    position: relative;
    left: 25px;
    font-weight: 700;
    font-size: 40px;
    color: #c8a97e;
  }

  /* Info row styles */
  .info-row {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
  }

  .info-row .col {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    text-align: center;
  }

  .info-row .col h3 {
    margin-bottom: 15px;
    font-size: 40px;
    color: #c8a97e;
  }

  .info-row .col p {
    font-size: 16px;
    color: #666;
  }

  #specific {
    line-height: 1.5;
    font-size: 15px;
    text-align: left;
  }

  /* MEDIA QUERIES for responsiveness */

  /* For tablets and medium-sized devices */
  @media (max-width: 992px) {

    .about-section {
      position: absolute;
      top: 250%;
    }

    .image-wrapper {
      flex-direction: column;
      align-items: center;
    }

    .image-wrapper .img-right,
    .image-wrapper .img-left {
      width: 100%;
      height: 300px;
      border-radius: 20px;
    }

    .col-right span {
      font-size: 80px;
    }

    .col-right h2 {
      font-size: 40px;
      bottom: 15px;
    }

    .col-right p {
      font-size: 18px;
    }

    .col-right h1 {
      font-size: 35px;
    }

    .info-row {
      flex-wrap: wrap;
    }

    .info-row .col {
      flex: 1 1 48%;
      margin-bottom: 20px;
    }
  }

  /* For mobile devices */
  @media (max-width: 768px) {

    .image-wrapper .img-right,
    .image-wrapper .img-left {
      height: 250px;
    }

    .col-right span {
      font-size: 60px;
    }

    .col-right h2 {
      font-size: 35px;
    }

    .col-right p {
      font-size: 16px;
    }

    .col-right h1 {
      font-size: 30px;
    }

    .info-row .col {
      flex: 1 1 100%;
      margin: 10px 0;
    }
  }

  /* For smaller devices (phones) */
  @media (max-width: 576px) {
    .row {
      flex-direction: column;
    }

    .image-wrapper .img-right,
    .image-wrapper .img-left {
      height: 200px;
    }

    .col-right span {
      font-size: 50px;
      left: 0;
    }

    .col-right h2 {
      font-size: 28px;
      bottom: 0;
      left: 0;
    }

    .col-right p {
      font-size: 14px;
      left: 0;

    }

    .col-right h1 {
      font-size: 24px;
      left: 0;
    }

    .info-row .col h3 {
      font-size: 30px;
    }
  }


  /* Services Section Styling */
  .services {
    text-align: center;
    padding: 40px 20px;
    background:#fafafa;
    width: 100%;
    overflow: hidden;
  }

  .services h2 {
    margin: 10px 0;

    font-weight: normal;
    font-size: 100px;
    display: block;
    color: #c8a97e;
    font-family: "Great Vibes", cursive;
    position: relative;
    left: 25px;
    top: 25px;
  }

  .services h3 {
    margin: 10px 0;
    color: #333;
    font-size: 50px;
    font-weight: 900;
    line-height: 1.2;
    position: relative;
    bottom: 50px;
    left: 20px;
  }

  .service-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }

  .service-box {

    padding: 20px;
    border-radius: 10px;
       
    flex: 1 1 250px;
    /* Responsive size */
    max-width: 300px;
    text-align: center;
  }

  .service-box i {
    font-size: 40px;
    color: #ff6f61;
    margin-bottom: 15px;
  }

  .service-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
  }

  .service-box p {
    font-size: 16px;
    color: #666;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .service-columns {
      flex-direction: column;

    }

    #services {
      position: absolute;
      top: 600%;

    }


    .service-box {
      margin-bottom: 20px;
      position: relative;
      left: 5%;
    }
  }


  @media (max-width: 596px) {
    .sub-hero{
       margin-top: 50px;

    }
    .hero-content p{
       
       margin: auto;

    }
    .about-section{
       margin-top: 60px;

    }
    .services{
       margin-top: -25%;

    }
    .services h2{
       font-size: 60px;

    }
    .services h3{
       font-size: 30px;
       margin-top: 40px;
      
       

    }
    .services .service-columns .service-box{
        margin: auto;
        overflow: hidden;

      
       

    }

  }


  /* loader css */

  /* Loader styles */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ffffff; /* Background color while loading */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Keeps it on top of all content */
}

.spinner {
  border: 8px solid #f3f3f3; /* Light gray */
  border-top: 8px solid #42db34; /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

/* When the loader is hidden */
body.loaded #loader {
  display: none;
}
