    body{
      margin: 0;
      padding: 0;
    }
    
    :root {
      --color-primary:   #CCD5AE;
      --color-secondary: #E9EDC9;
      --color-cream:     #FFEFAE;
      --color-accent:    #FAEDCD;
      --color-brown:     #D4A373;
      --color-text-dark: #333333;
        --bg-color: #d0d6a5;
      --text-color: #222;
      --accent-color: #4caf50;
    }

    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
    @import url("https://fonts.googleapis.com/css?family=Lato:300,400,700");


/* Header */
    .navbar {
      background-color: var(--bg-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 50px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      flex-wrap: wrap;
    }

    .navbar-left {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .logo {
      font-family: 'Cinzel', serif;
      font-size: 30px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--accent-color);
      text-decoration: none;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .nav-links {
      display: flex;
      gap: 45px;
      margin-left: -40px;
    }

    .nav-links a {
      color: var(--text-color);
      text-decoration: none;
      font-size: 17px;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -4px;
      left: 0;
      background-color: var(--accent-color);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .call-button {
      display: none;
      background: var(--accent-color);
      color: #fff;
      padding: 12px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
    }

    .call-button:hover {
      background: #43a047;
      transform: scale(1.05);
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
      70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
      100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .call-button { display: inline-block; margin-left: auto; }
      .navbar { flex-direction: row; justify-content: space-between; padding: 15px 25px; }
      .navbar-left { display: flex; align-items: center; gap: 15px; }
    }


    /* slider style */
.swiper {
      width: 100%;
      height: 100vh;
      position: relative;
    }
    .swiper-slide.slider-item {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-left: 8%;
      padding-right: 8%;
      text-align: left;
    }
    .swiper-slide.slider-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      filter: brightness(0.4) contrast(1.2);
      z-index: 0;
    }
    .swiper-slide:nth-child(1)::before { background-image: url("images/S1.jpg"); }
    .swiper-slide:nth-child(2)::before { background-image: url("images/S2.jpg"); }
    .swiper-slide:nth-child(3)::before { background-image: url("images/S3.jpg"); }
    .swiper-slide:nth-child(4)::before { background-image: url("images/S4.jpg"); }
    .swiper-slide:nth-child(5)::before { background-image: url("images/S5.jpg"); }
    .slide-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
      color: #fff;
      animation: fadeIn 1s ease forwards;
    }
    .slide-subtitle {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
    }
    .slide-title {
      font-size: 2.5rem;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 15px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }
    .slide-description {
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 20px;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
    }
    .slide-button {
      display: inline-block;
      padding: 14px 30px;
      background: transparent;
      border: 2px solid #fff;
      color: #fff;
      font-weight: bold;
      font-size: 1rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 30px;
    }
    .slide-button:hover {
      background: linear-gradient(90deg, #00c6ff, #0072ff);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 0 10px rgba(0, 114, 255, 0.8);
    }
    .desktop-number {
      display: inline-block;
      font-size: 1.1rem;
      font-weight: bold;
      color: #0ff;
      text-shadow: 0 0 10px #0ff;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { opacity: 1; }
      50% { opacity: 0.6; }
      100% { opacity: 1; }
    }
    .mobile-call {
      display: none;
    }
    .slider-controls {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }
    .slider-tab {
      background: #606c38;
      color: wheat;
      padding: 10px 20px;
      cursor: pointer;
    }
    .slider-tab.current {
      background: #fff;
      color: #000;
    }
    .slider-navigations button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      border: none;
      color: #fff;
      font-size: 2rem;
      padding: 10px;
      z-index: 10;
      cursor: pointer;
    }
    #slide-prev { left: 20px; }
    #slide-next { right: 20px; }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media (max-width: 768px) {
      .slide-title { font-size: 1.8rem; }
      .slide-subtitle { font-size: 1rem; }
      .slide-description { font-size: 0.9rem; }
      .slide-button {
        padding: 10px 20px;
        font-size: 0.9rem;
      }
      .desktop-number { display: none; }
      .mobile-call { display: inline-block; }
    }
    /* round cards */
.main {
      width: 100%;
      min-height: 50vh;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      padding: 50px 0;
    }

    .profile-card {
      position: relative;
      width: 180px;
      height: 180px;
      background: #fff;
      padding: 10px;
      border-radius: 50%;
      box-shadow: 0 0 22px rgba(51, 51, 51, 0.21);
      transition: 0.6s;
      margin: 25px;
      text-align: center;
      flex: 0 1 auto;
    }

    .profile-card:hover {
      border-radius: 10px;
      height: 260px;
    }

    .profile-card .img {
      position: relative;
      width: 100%;
      height: 100%;
      transition: 0.6s;
      z-index: 99;
    }

    .profile-card:hover .img {
      transform: translateY(-60px);
    }

    .img img {
      width: 100%;
      border-radius: 50%;
      box-shadow: 0 0 22px rgba(51, 51, 51, 0.21);
      transition: 0.6s;
      object-fit: cover;
      height: 100%;
    }

    .profile-card:hover img {
      border-radius: 10px;
    }

    .caption {
      transform: translateY(-80px);
      opacity: 0;
      transition: 0.6s;
    }

    .profile-card:hover .caption {
      opacity: 1;
    }

    .caption h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #0c52a1;
    }

    .call-button, .call-number {
      display: none;
      padding: 8px 16px;
      border: none;
      background-color: #606c38;
      color: #fff;
      font-size: 14px;
      border-radius: 4px;
      text-decoration: none;
      transition: background-color 0.3s;
      margin-top: 5px;
    }

    .call-button i, .call-number i {
      margin-right: 6px;
    }

    .call-button:hover, .call-number:hover {
      background-color: #47522a;
    }

    @media screen and (max-width: 768px) {
      .profile-card {
        width: 45%;
        height: 160px;
      }

      .profile-card:hover {
        height: 240px;
      }

      .call-button {
        display: inline-block;
      }

      .call-number {
        display: none !important;
      }
    }

    @media screen and (min-width: 769px) {
      .call-number {
        display: inline-block;
      }

      .call-button {
        display: none !important;
      }
    }

    @media screen and (max-width: 480px) {
      .profile-card {
        width: 80%;
        height: 150px;
      }

      .profile-card:hover {
        height: 220px;
      }
    }
    /* other card */
    
    .card-box {
      /* margin: 40px auto; */
      max-width: 1280px;
      padding: 0 10px;
    }

    .box-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0px;
    }

    .shape-box {
      position: relative;
      z-index: 1;
      height: 430px;
      box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .1);
      overflow: hidden;
      width: 23.5%;
      min-width: 250px;
    }

    .shape-box_half {
      overflow: hidden;
      text-align: left;
    }

    .shape-box_half:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      transform: skewY(53.5deg);
      transform-origin: top left;
      transition: transform .4s;
      background: var(--color-cream);
      z-index: 1;
    }

    .shape-box>img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .bg-black {
      background-color: var(--color-text-dark);
    }

    .shape-box_half figcaption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 0 20px 20px;
      transition: transform .4s;
      transform: translateY(100%);
      z-index: 3;
    }

    .shape-box_half figcaption .show-cont {
      position: absolute;
      bottom: calc(100% + 20px);
      left: 20px;
      right: 20px;
      transition: bottom .4s;
    }

    .card-no {
      font-size: 32px;
      color: var(--color-brown);
      margin: 10px 0;
    }

    .card-main-title {
      margin-top: 8px;
      font-weight: 700;
      font-size: 22px;
      text-transform: uppercase;
      color: var(--color-text-dark);
    }

    .card-content {
      margin-top: 20px;
      line-height: 22px;
      font-size: 15px;
      color: var(--color-text-dark);
      opacity: 0.8;
    }

    .read-more-btn {
      border: 2px solid var(--color-brown);
      font-size: 14px;
      cursor: pointer;
      padding: 10px 20px;
      display: inline-block;
      text-transform: uppercase;
      font-weight: 600;
      background: var(--color-brown);
      color: #fff;
      border-radius: 2px;
      margin-top: 20px;
      text-decoration: none;
      transition: all 0.3s;
    }

    .read-more-btn:hover {
      background: transparent;
      color: var(--color-brown);
    }

    .shape-box_half>.after {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--color-primary);
      opacity: 0;
      transition: opacity .4s;
    }

    .shape-box_half:hover:before {
      transform: skewY(20deg);
    }

    .shape-box_half:hover figcaption {
      transform: translateY(0);
    }

    .shape-box_half:hover figcaption .show-cont {
      bottom: 100%;
    }

    .shape-box_half:hover>.after {
      opacity: 1;
    }

    a {
      text-decoration: none;
    }

    .show-desktop {
      display: inline;
    }

    .show-mobile {
      display: none;
    }

    @media screen and (max-width: 768px) {
      .shape-box {
        width: 48%;
      }
      .show-desktop {
        display: none;
      }
      .show-mobile {
        display: inline;
      }
    }

    @media screen and (max-width: 480px) {
      .shape-box {
        width: 100%;
      }
    }
    /* rewies */
/* TESTIMONIALS */

#testimonials {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width:100%;
}

.testimonial-heading {
  letter-spacing: 1px;
  margin: 30px 0px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial-heading span {
  font-size: 1.3rem;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.testimonial-box-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width:100%;
}

.testimonial-box {
  width:500px;
  box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
  background-color: var(--color-cream);
  padding: 20px;
  margin: 15px;
  cursor: pointer;
}

.profile-img {
  width:50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile {
  display: flex;
  align-items: center;
}

.name-user {
  display: flex;
  flex-direction: column;
}

.name-user strong {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.name-user span {
  color: var(--color-text-dark);
  font-size: 0.8rem;
  opacity: 0.7; 
}

/* The star color, originally #f9d71c, changed to the brown or a deeper accent.
   If you prefer a golden color for stars, pick something like #D4A373 or slightly darker. */
.reviews {
  color: var(--color-brown);
}

.box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.client-comment p {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  opacity: 0.8;
}

.testimonial-box:hover {
  transform: translateY(-10px);
  transition: all ease 0.3s;
}

@media(max-width:1060px) {
  .testimonial-box {
    width:45%;
    padding: 10px;
  }
}

@media(max-width:790px) {
  .testimonial-box {
    width:100%;
  }
  .testimonial-heading h1 {
    font-size: 1.4rem;
  }
}

@media(max-width:340px) {
  .box-top {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .reviews {
    margin-top: 10px;
  }
}
/* footer */
       
.footer {
  background: var(--color-primary);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 55px 50px;
  color: var(--color-text-dark) !important;
}

.footer .footer-left,
.footer .footer-center,
.footer .footer-right {
  display: inline-block;
  vertical-align: top;
}

.footer .footer-left {
  width: 40%;
}

.footer h3 {
  color: var(--color-text-dark);
  font: normal 36px 'Open Sans', cursive;
  margin: 0;
}

.footer h3 span {
  /* Use brown or accent for branding highlight */
  color: var(--color-brown);
}

.footer .footer-links {
  color: var(--color-text-dark);
  margin: 20px 0 12px;
  padding: 0;
}

.footer .footer-links a {
  display:inline-block;
  line-height: 1.8;
  font-weight:400;
  text-decoration: none;
  color: inherit;
}

.footer .footer-name {
  color: var(--color-brown);
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

.footer .footer-center {
  width: 35%;
}

.footer .footer-center i {
  background-color: var(--color-text-dark);
  color: #fff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer .footer-center p {
  display: inline-block;
  color: var(--color-text-dark);
  font-weight:400;
  vertical-align: middle;
  margin:0;
}

.footer .footer-center p span {
  display:block;
  font-weight: normal;
  font-size:14px;
  line-height:2;
}

.footer .footer-center p a {
  color: var(--color-brown);
  text-decoration: none;
}

.footer .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: var(--color-text-dark);
  display: inline-block;
  padding-right: 5px;
}

.footer .footer-links .link-1:before {
  content: none;
}

.footer .footer-right {
  width: 20%;
}

.footer .footer-about {
  line-height: 20px;
  color: var(--color-text-dark);
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer .footer-about span {
  display: block;
  color: var(--color-text-dark);
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer .footer-socials {
  margin-top: 25px;
}

.footer .footer-socials a {
  display: inline-block;
  font-size: 35px;
  cursor: pointer;
  color: var(--color-text-dark);
  text-align: center;
  line-height: 35px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.footer .logo {
  max-width: 100px;
  height: 50px;
  width: 50px;
  border-radius: 50%; 
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .footer {
    font: bold 14px sans-serif;
  }
  .footer .footer-left,
  .footer .footer-center,
  .footer .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .footer .footer-center i {
    margin-left: 0;
  }
}
/* Base styles unchanged for desktop */
    #popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    #popup-box {
      position: relative;
      background: #fff;
      border-radius: 8px;
      width: 900px;
      min-height: 400px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px;
      overflow: auto;
      opacity: 0;
      transform: scale(0.8);
      animation: popupFadeIn 0.5s ease forwards;
    }

    @keyframes popupFadeIn {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .close-icon {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 24px;
      color: #888;
      cursor: pointer;
    }
    .close-icon:hover {
      color: #000;
    }

    #popup-box h2 {
      margin-bottom: 10px;
    }

    .popup-links {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: center;
      gap: 20px;
      margin: 20px 0;
    }

    .popup-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      padding: 10px 20px;
      background: #007BFF;
      color: #fff;
      border-radius: 4px;
      transition: background 0.3s ease;
      min-width: 180px;
      text-align: center;
    }
    .popup-link:hover {
      background: #0056b3;
    }

    .divider {
      display: inline-block;
      width: 1px;
      height: 20px;
      background-color: #fff;
      margin: 0 10px;
    }

    .call-icon {
      font-size: 16px;
      color: #fff;
    }

    .desktop-only {
      display: none !important;
    }

    @media screen and (min-width: 1025px) {
      .desktop-only {
        display: inline !important;
      }

      #popup-overlay {
        display: flex !important;
      }
    }

    .images-with-titles {
      display: flex;
      flex-direction: row;
      gap: 20px;
      margin-top: 30px;
    }

    .image-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .round-img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 5px;
    }

    .image-title {
      font-size: 14px;
    }

    @media screen and (max-width: 1024px) {
      #popup-overlay {
        display: none !important;
      }

      #mobile-popup-box {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        padding: 25px 20px;
        width: 90%;
        max-width: 350px;
        text-align: center;
        z-index: 10001;
        animation: fadeSlideUp 0.6s ease forwards;
      }

      #mobile-popup-box h3 {
        margin: 0 0 10px;
        font-size: 20px;
        color: #333;
      }

      #mobile-popup-box p {
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
      }

      .mobile-btn-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
      }

      .mobile-btn-container button {
        padding: 10px 15px;
        border: none;
        border-radius: 6px;
        background: #007bff;
        color: white;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s ease;
      }

      .mobile-btn-container button:hover {
        background: #0056b3;
      }

      @keyframes fadeSlideUp {
        from {
          opacity: 0;
          transform: translate(-50%, 60px);
        }
        to {
          opacity: 1;
          transform: translate(-50%, -50%);
        }
      }
    }
