    /* @import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Edu+NSW+ACT+Hand+Pre:wght@400..700&family=Epunda+Slab:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Oleo+Script:wght@400;700&family=Poltawski+Nowy:ital,wght@0,400..700;1,400..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Varela+Round&display=swap");
body {
  font-family: "Inter", "Montserrat", "Roboto", sans-serif;
}

h1, h3, h4, h5, h6 {
  font-family: "Montserrat", "Bitter", sans-serif;
}

h2 {
  font-family: 'Dancing Script', cursive;
}

    a,
    p,
    li,
    span,
    button {
      font-family: "Inter", "Nunito Sans", "Roboto", sans-serif;
    } */


    /* header start */

    .topbar {
      position: relative;
      background-color: #092f30;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 50px;
      overflow: hidden;
      z-index: 1;
    }

    .topbar::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #092f30, #0c4345, #1b5e5f, #092f30);
      background-size: 300% 100%;
      animation: gradientMove 5s linear infinite;
      z-index: -1;
    }

    @keyframes gradientMove {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    .topbar-left a {
      color: #fff;
      text-decoration: none;
      margin-right: 25px;
      font-weight: 600;
      /* thoda bold */
      font-size: 15px;
      /* pehle 13px tha, ab bada */
      letter-spacing: 0.5px;
      /* thoda spacing for clarity */
      opacity: 0;
      animation: slideLeft 0.8s ease forwards;
    }


    .topbar-left a:nth-child(1) {
      animation-delay: 0.4s;
    }

    .topbar-left a:nth-child(2) {
      animation-delay: 0.6s;
    }

    .topbar-left a:hover {
      color: #f8b400;
    }

    @keyframes slideLeft {
      0% {
        transform: translateX(-30px);
        opacity: 0;
      }

      100% {
        transform: translateX(0);
        opacity: 1;
      }
    }

    /* Social Icons */
    /* Social Icons */
    .topbar-right {
      display: flex;
      /* 👈 ab icons ek line me honge */
      align-items: center;
      /* vertically center */
    }

    .topbar-right a {
      color: #fff;
      text-decoration: none;
      margin-left: 15px;
      font-size: 15px;
      /* 👈 icon size thoda adjust kiya */
      opacity: 0;
      animation: bounceIn 0.8s ease forwards;

      width: 40px;
      /* 👈 equal width */
      height: 40px;
      /* 👈 equal height */
      display: flex;
      align-items: center;
      justify-content: center;

      border-radius: 50%;
      backdrop-filter: blur(6px);
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
    }

    /* Facebook */
    .topbar-right a:nth-child(1) {
      background: #1877f2;
      /* Facebook Blue */
    }

    /* Instagram */
    .topbar-right a:nth-child(2) {
      background: radial-gradient(circle at 30% 107%,
          #fdf497 0%,
          #fd5949 45%,
          #d6249f 60%,
          #285aeb 90%);
    }

    /* YouTube */
    .topbar-right a:nth-child(3) {
      background: #ff0000;
      /* YouTube Red */
    }

    /* LinkedIn */
    .topbar-right a:nth-child(4) {
      background: #0077b5;
      /* LinkedIn Blue */
    }


    /* Hover Effect */
    .topbar-right a:hover {
      color: #fff;
      transform: translateY(-3px) scale(1.1);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6),
        inset 0 2px 6px rgba(255, 255, 255, 0.4);
    }

    @keyframes bounceIn {
      0% {
        transform: scale(0.3);
        opacity: 0;
      }

      50% {
        transform: scale(1.1);
        opacity: 1;
      }

      70% {
        transform: scale(0.9);
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* Brand Colors on Hover */
    .topbar-right a:hover {
      color: #fff;
      transform: translateY(-3px) scale(1.1);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6),
        inset 0 2px 6px rgba(255, 255, 255, 0.4);
    }

    .topbar-right a:nth-child(1):hover {
      background: #1877f2;
      /* Facebook Blue */
    }

    .topbar-right a:nth-child(2):hover {
      background: #1da1f2;
      /* Twitter Blue */
    }

    .topbar-right a:nth-child(3):hover {
      background: radial-gradient(circle at 30% 107%,
          #fdf497 0%,
          #fd5949 45%,
          #d6249f 60%,
          #285aeb 90%);
    }

    @media (max-width: 768px) {
      .topbar {
        padding: 8px 20px;
        flex-direction: row;
        justify-content: space-between;
      }

      .topbar-left a.email-link {
        display: none;
      }
    }



    .navbar {
      background-color: #fff !important;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      /*padding: 0.5rem 3rem;*/
    }


    /* Tablet ke liye */
    @media (max-width: 991px) {
      .navbar {
        padding: 0.5rem 2rem;
      }
    }

    /* Mobile ke liye */
    @media (max-width: 767px) {
      .navbar {
        padding: 0.5rem 1rem;
      }
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      margin-right: 0.5rem;
    }

    .navbar-brand img {
      max-height: 65px;
      transition: transform 0.3s;
    }

    /* Hide brand name on mobile, show on desktop */
    .navbar-brand span {
      display: none;
    }

    @media (min-width: 992px) {
      .navbar-brand span {
        display: inline;
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(90deg, #092f30, #ffd700);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: 2px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
        font-family: "Dancing Script", cursive;
        margin-left: 6px;
      }
    }

    /* Reduce gap between logo and first nav item */
    .navbar .navbar-nav {
      margin-left: 0.3rem;

    }

    .navbar-nav .nav-link {
      color: #092f30 !important;
      font-weight: 500;
      margin-right: 1rem;
      transition: color 0.3s, transform 0.3s;
      cursor: pointer;
    }

    .navbar-nav .nav-link:hover {
      color: #ffd700 !important;
      transform: scale(1.1);
    }

    .pay-now-btn {
      background: linear-gradient(135deg, #092f30, #0b3b42);
      color: #ffd700;
      font-weight: 700;
      border-radius: 50px;
      padding: 0.55rem 1.8rem;
      border: none;
      box-shadow: 0 5px 15px rgba(9, 47, 48, 0.3);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .pay-now-btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: rgba(255, 215, 0, 0.2);
      transform: skewX(-25deg);
      transition: all 0.5s;
    }

    .pay-now-btn:hover {
      transform: scale(1.15) rotate(-1deg);
      box-shadow: 0 10px 25px rgba(9, 47, 48, 0.5), 0 0 15px rgba(255, 215, 0, 0.5);
      color: #ffd700;
    }

    .pay-now-btn:hover::after {
      left: 125%;
    }

    /* Dropdown Styling */
    .dropdown-menu {
      border-radius: 0.5rem;
      min-width: 220px;
      transition: all 0.3s ease;
      overflow: visible;
    }

    .dropdown-menu .dropdown-item {
      padding: 0.5rem 1.2rem;
      transition: all 0.3s ease;
    }

    .dropdown-menu .dropdown-item:hover {
      background: linear-gradient(90deg, #092f30, #0b3b42);
      color: #ffd700 !important;
      transform: scale(1.05);
    }

    .dropdown-submenu {
      position: relative;
    }

    .dropdown-submenu>.dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -1px;
      position: absolute;
    }

    .dropdown-submenu>a::after {
      content: "\f0da";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      float: right;
      transition: transform 0.3s;
    }

    .dropdown-submenu.show>a::after {
      transform: rotate(90deg);
    }

    @media (min-width: 992px) {
      .dropdown:hover>.dropdown-menu {
        display: block;
        animation: slideDown 0.3s forwards;
      }

      .dropdown-submenu:hover>.dropdown-menu {
        display: block;
        animation: slideRight 0.3s forwards;
      }
    }

    @keyframes slideDown {
      0% {
        opacity: 0;
        transform: translateY(-10px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideRight {
      0% {
        opacity: 0;
        transform: translateX(-10px);
      }

      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Hamburger */
    .navbar-toggler {
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, #092f30, #0b3b42);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      box-shadow: 0 5px 15px rgba(9, 47, 48, 0.4);
      overflow: hidden;
    }

    .navbar-toggler:hover {
      transform: scale(1.1) rotate(10deg);
      box-shadow: 0 8px 20px rgba(9, 47, 48, 0.6);
    }

    .toggler-icon {
      width: 25px;
      height: 2px;
      background-color: #ffd700;
      display: block;
      position: relative;
      transition: all 0.4s ease-in-out;
    }

    .toggler-icon::before,
    .toggler-icon::after {
      content: "";
      width: 25px;
      height: 2px;
      background-color: #ffd700;
      position: absolute;
      left: 0;
      transition: all 0.4s ease-in-out;
    }

    .toggler-icon::before {
      top: -8px;
    }

    .toggler-icon::after {
      bottom: -8px;
    }

    .navbar-toggler.collapsed .toggler-icon {
      background-color: #ffd700;
    }

    .navbar-toggler:not(.collapsed) .toggler-icon {
      background-color: transparent;
    }

    .navbar-toggler:not(.collapsed) .toggler-icon::before {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggler:not(.collapsed) .toggler-icon::after {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    @media (max-width: 991.98px) {
      .dropdown-menu {
        display: none;
        position: static;
        float: none;
        box-shadow: none;
      }

      .dropdown-menu.show {
        display: block;
      }

      .dropdown-submenu>.dropdown-menu {
        left: 0;
        top: 0;
        position: static;
        padding-left: 0.75rem;
      }

      .navbar-nav .nav-link {
        text-align: center;
        margin-right: 0;
        padding: 0.5rem 0;
      }

      .pay-now-btn {
        width: 100%;
        margin-top: 0.5rem;
      }
    }

    /* Desktop adjustments only */
    @media (min-width: 992px) {

      /* Reduce gap between logo and first nav item */
      .navbar-brand {
        margin-left: 60px;
        /* reduce the right margin */
      }

      .navbar .navbar-nav {
        margin-left: 0.5rem;
        /* bring nav links closer to logo */
      }
    }


    @media (max-width: 768px) {
      .topbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .topbar-left {
        flex: 1;
        justify-content: flex-start;
        gap: 6px;
      }

      .topbar-right {
        flex: 1;
        justify-content: flex-end;
        gap: 6px;
      }

      .topbar-left a {
        font-size: 12px;
        white-space: nowrap;
      }

      .topbar-right a {
        width: 28px;
        height: 28px;
        font-size: 13px;
      }
    }

    /* header end */

    /* crousel start */

    /* Carousel Image Style */
    .custom-carousel-item img {
      height: 80vh;
      object-fit: cover;
      width: 100%;
      transition: transform 1.2s ease;
    }

    /* Zoom-in Effect on Slide */
    .custom-carousel-item.active img {
      transform: scale(1.05);
    }

    /* Responsive Heights */
    @media (max-width: 991.98px) {
      .custom-carousel-item img {
        height: 70vh;
      }
    }

    @media (max-width: 767.98px) {
      .custom-carousel-item img {
        height: 55vh;
      }
    }

    @media (max-width: 575.98px) {
      .custom-carousel-item img {
        height: 23vh;
      }
    }

    /* Overlay Gradient (optional, currently empty) */
    .custom-carousel-item::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }

    /* Custom Teal Circle Controls */
    .custom-carousel-prev,
    .custom-carousel-next {
      width: 40px;
      height: 40px;
      background: #dadddd;
      /* Teal */
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      transition: background 0.3s ease, transform 0.3s ease;
      opacity: 0.9;
    }

    .custom-carousel-prev:hover,
    .custom-carousel-next:hover {
      background: #ebe9e4;
      /* Golden hover */
      transform: translateY(-50%) scale(1.1);
      opacity: 1;
    }

    /* Icons inside circle */
    .custom-carousel-prev-icon,
    .custom-carousel-next-icon {
      filter: invert(1);
      width: 20px;
      height: 20px;
    }

    /* Indicators (Dots) */
    .custom-carousel-indicators [data-bs-target] {
      background-color: #fff;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      opacity: 0.7;
      transition: background 0.3s ease;
    }

    .custom-carousel-indicators [data-bs-target]:hover {
      background-color: #d4af37;
      /* Golden on hover */
      opacity: 1;
    }

    .custom-carousel-indicators .active {
      background-color: #f3fdfd;

      /* Teal active */
      opacity: 1;
    }

    @media (max-width: 768px) {

      .zoom-display,
      .lens {
        display: none !important;
      }

      .product-container {
        flex-direction: column;
      }

      .image-section,
      .info-section {
        flex: 1 1 100%;
        max-width: 100%;
      }

      .main-photo {
        height: auto;
        max-height: 280px;
        object-fit: contain;
      }
    }

    /* crousel end */

    /* heading start */
    /* .riva-heading {
      font-size: 4rem;
      font-weight: 800;
      text-align: center;
      background: linear-gradient(270deg, #114D4F, #E5B956, #114D4F);
      background-size: 600% 600%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      padding: 36px 1rem;
      line-height: 1.2;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
      animation: gradientMove 5s ease infinite;
    }

    @keyframes gradientMove {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    @media (max-width: 992px) {
      .riva-heading {
        font-size: 3rem;
      }
    }

    @media (max-width: 768px) {
      .riva-heading {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 576px) {
      .riva-heading {
        font-size: 1.8rem;
      }
    } */

    /* heading end */

    /* about index start */
    .index-company {
      padding: 10px 0;
      background: #fff;
    }

    .index-company .row {
      display: flex;
      align-items: stretch;
    }

    /* Image styling */
    .index-company-image {
      overflow: hidden;
      border-radius: 20px;
      position: relative;
      transform: scale(1.2);
      opacity: 0;
      transition: all 1s ease;
      height: auto;
      /* let image take its natural height */
    }

    .index-company-image img {
      width: 100%;
      height: auto;
      /* maintain original aspect ratio */
      object-fit: contain;
      /* ensures full image is visible */
      display: block;
      transition: all 0.5s ease;
    }

    .index-company-image.animate {
      transform: scale(1);
      opacity: 1;
    }

    .index-company-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: all 0.5s ease;
    }

    /* Content styling */
    .index-company-content {
      opacity: 0;
      transform: translateY(30px);
      transition: all 1s ease;
    }

    .index-company-content.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .index-company-content h2 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 20px;
      background: linear-gradient(90deg, #114d4f, #e5b956);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .index-company-content p {
      font-size: 1rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .index-company-content .btn {
      background: #e5b956;
      color: #114d4f;
      border: none;
      padding: 0.7rem 1.8rem;
      font-weight: 600;
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .index-company-content .btn:hover {
      background: #114d4f;
      color: #e5b956;
      transform: scale(1.05);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    /* Staggered animation delay */
    .index-company-content.animate h2 {
      transition-delay: 0.2s;
    }

    .index-company-content.animate p:nth-child(2) {
      transition-delay: 0.4s;
    }

    .index-company-content.animate p:nth-child(3) {
      transition-delay: 0.6s;
    }

    .index-company-content.animate .btn {
      transition-delay: 0.8s;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .index-company-content h2 {
        font-size: 2.4rem;
      }
    }

    @media (max-width: 768px) {
      .index-company .row {
        flex-direction: column;
        align-items: center;
      }

      .index-company-content {
        text-align: center;
      }

      .index-company-content h2 {
        font-size: 2rem;
      }

      .index-company-image {
        height: auto;
        /* auto height on mobile */
      }

      .index-company-image img {
        height: auto;
      }
    }


    /* Container to center content */
    .main-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      /* height: 100vh; */
    }

    .brand-logo {
      font-size: 4rem;
      font-weight: 900;
      background: linear-gradient(90deg, #0f4c5c, #f0c27b);
      /* Dark teal to gold */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: center;
      letter-spacing: 2px;
      text-shadow: 3px 3px 8px rgba(15, 76, 92, 0.7);
      transition: transform 0.3s, text-shadow 0.3s;
      cursor: default;
    }

    .brand-logo:hover {
      transform: scale(1.15) rotate(-2deg);
      text-shadow: 5px 5px 15px rgba(15, 76, 92, 0.8);
    }

    /* Mobile devices ke liye font-size adjust */
    @media (max-width: 576px) {
      .brand-logo {
        font-size: 2.5rem;
      }
    }

    @media (min-width: 577px) and (max-width: 768px) {
      .brand-logo {
        font-size: 3.2rem;
      }
    }


    /* Decorative line with animated shimmer */
    .divider-line {
      display: flex;
      align-items: center;
      /* margin-top: 15px; */
      width: 60%;
      max-width: 400px;
      position: relative;
    }

    .divider-line::before,
    .divider-line::after {
      content: '';
      flex: 1;
      height: 2px;
      background: linear-gradient(to right, #0f4c5c, #f0c27b);
      position: relative;
      overflow: hidden;
    }

    /* Shimmer animation */
    .divider-line::before::after,
    .divider-line::after::after {
      content: '';
      position: absolute;
      top: 0;
      left: -50%;
      width: 50%;
      height: 100%;
      background: rgba(255, 255, 255, 0.5);
      transform: skewX(-20deg);
      animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
      0% {
        left: -50%;
      }

      100% {
        left: 100%;
      }
    }

    /* Flower in center with pulse and rotate */
    .divider-line span {
      margin: 0 10px;
      font-size: 1.5rem;
      color: #f0c27b;
      display: inline-block;
      animation: pulseRotate 3s infinite;
    }

    @keyframes pulseRotate {
      0% {
        transform: rotate(0deg) scale(1);
      }

      50% {
        transform: rotate(10deg) scale(1.2);
      }

      100% {
        transform: rotate(0deg) scale(1);
      }
    }

    /* about index end */
    /* welcome start */
    /* Title styling */
    .title-wrapper h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 900;
      letter-spacing: 3px;
      background: linear-gradient(270deg, #004d4d, #d4af37, #004d4d);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 3px 3px 12px rgba(0, 77, 77, 0.4);
      animation: gradientMove 5s ease infinite;
      margin-bottom: 25px;
      transition: transform 0.3s;
      text-align: center;
    }

    /* Mobile ke liye font chhota */
    @media (max-width: 576px) {
      .title-wrapper h1 {
        font-size: 2rem;
        /* aapko jitna chhota chahiye utna adjust kar lo */
      }
    }

    @keyframes gradientMove {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* Subtitle styling */
    .subtitle-wrapper h2 {
      font-family: 'Great Vibes', cursive;
      font-size: 2.2rem;
      color: #d4af37;
      margin-top: 10px;
      text-shadow: 2px 2px 8px rgba(0, 77, 77, 0.5);
      animation: fadeIn 2s ease-in-out;
      text-align: center;
    }

    /* Mobile ke liye font size chhota */
    @media (max-width: 576px) {
      .subtitle-wrapper h2 {
        font-size: 1.2rem;
        /* yahan aap apne hisaab se adjust kar sakte ho */
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Decorative line */
    .divider-wrapper {
      width: 120px;
      height: 3px;
      margin: 20px auto 0;
      background: linear-gradient(to right, #004d4d, #d4af37, #004d4d);
      border-radius: 5px;
      box-shadow: 0px 2px 8px rgba(0, 77, 77, 0.5);
      animation: shimmer 3s infinite linear;
    }

    @keyframes shimmer {
      0% {
        opacity: 0.6;
      }

      50% {
        opacity: 1;
      }

      100% {
        opacity: 0.6;
      }
    }

    /*welcome end  */

    /* badge start */


    .badge-section-wrapper {
      padding: 0px 20px;
      background: #fff;
      text-align: center;
    }

    .badge-section-wrapper h2 {
      font-size: 28px;
      font-weight: 700;
      color: #004d4d;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

    .badge-section-wrapper h2::after {
      content: "";
      display: block;
      width: 60%;
      height: 3px;
      background: linear-gradient(90deg, #004d4d, #d4af37);
      margin: 8px auto 0;
      border-radius: 2px;
    }

    .badge-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      /* badges ke beech spacing */
    }

    /* Mobile ke liye gap kam */
    @media (max-width: 576px) {
      .badge-section {
        gap: 0px;
        /* apne hisaab se 15px ya 20px rakh sakte ho */
      }
    }

    .badge {
      /*flex: 1 1 200px; */
      width: 180px;
      height: 180px;
      border: 4px solid transparent;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-size: 16px;
      color: #000;
      position: relative;
      padding: 15px;
      background: #fff;
      background-clip: padding-box;
      box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    /* Gradient border effect */
    .badge::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      padding: 4px;
      background: linear-gradient(135deg, #004d4d, #d4af37);
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
    }

    .badge i {
      font-size: 48px;
      margin-bottom: 10px;
      color: #004d4d;
      transition: transform 0.3s, color 0.3s;
    }

    .badge .top-text {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
      color: #555;
    }

    .badge .main-text {
      font-size: 18px;
      font-weight: 700;
      color: #111;
    }

    /* Hover effects */
    .badge:hover {
      transform: scale(1.1);
      box-shadow: 0px 8px 20px rgba(0, 77, 77, 0.3);
    }

    .badge:hover i {
      transform: scale(1.3);
      color: #d4af37;
    }

    /* Mobile view */
    @media(max-width: 767px) {
      .badge {
        flex: 0 0 48%;
        /* 2 column layout (50% - gap) */
      }
    }

    /* badge end */

    /* shop by categories start */
    .tp-carousel-title {
      color: #114d4f;
      font-weight: 700;
      margin-bottom: 2.5rem;
      text-align: center;
      position: relative;
    }

    .tp-carousel-title::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #114d4f, #d8ab4e);
      margin: 0.6rem auto 0;
      border-radius: 3px;
    }

    .tp-product-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      height: 100%;
      background: #fff;
      border: 1px solid #ddd;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .tp-product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .tp-product-card img {
      width: 100%;
      height: 230px;
      object-fit: contain;
      display: block;
      transition: transform 0.5s ease;
    }

    .tp-product-card:hover img {
      transform: scale(1.05);
    }

    .tp-product-overlay {
      padding: 15px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex: 1;
    }

    .tp-product-overlay h5 {
      font-family: "Playfair Display", serif;
      font-size: 1.4rem;
      color: #0f3d4f;
      margin-bottom: 10px;
    }

    .tp-product-overlay p.tp-product-price {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: #10484a;
    }

    .tp-product-buttons {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .tp-product-buttons .tp-btn {
      flex: 1 1 45%;
      min-width: 100px;
      padding: 8px 0;
      border-radius: 5px;
      font-weight: 600;
      font-size: 0.85rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: block;
      color: #fff !important;
    }

    .tp-btn-outline {
      background: #d4af37;
    }

    .tp-btn-outline:hover {
      background: #b8922a;
      transform: scale(1.05);
    }

    .tp-btn-solid {
      background: #0f3d4f;
    }

    .tp-btn-solid:hover {
      background: #092b38;
      transform: scale(1.05);
    }

    /* Carousel Controls */
    .tp-carousel-prev,
    .tp-carousel-next {
      width: 50px;
      height: 50px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #114d4f;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0.85;
      transition: all 0.3s;
      position: absolute;
      z-index: 10;
    }

    .tp-carousel-prev:hover,
    .tp-carousel-next:hover {
      opacity: 1;
      background: linear-gradient(135deg, #114d4f, #0e3b3b);
    }

    .tp-carousel-prev i,
    .tp-carousel-next i {
      font-size: 1.3rem;
      color: #d8ab4e;
    }

    .tp-carousel-prev {
      left: 0;
    }

    .tp-carousel-next {
      right: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 575px) {
      .tp-product-card img {
        height: 200px;
      }

      .tp-product-overlay h5 {
        font-size: 1.2rem;
      }

      .tp-carousel-prev,
      .tp-carousel-next {
        width: 40px;
        height: 40px;
      }

      .tp-carousel-prev i,
      .tp-carousel-next i {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 767px) {
      .tp-product-card {
        height: 350px;
      }
    }

    /* shop by categories end */

    /* jwellery start */
    /* Title */
    /* .shop-title {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(90deg, #0f4c5c, #f0c27b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 3px 3px 8px rgba(15,76,92,0.7);
  transition: transform 0.3s, text-shadow 0.3s;
  cursor: default;
} */

    .shop-title:hover {
      transform: scale(1.15) rotate(-2deg);
      text-shadow: 5px 5px 15px rgba(15, 76, 92, 0.8);
    }

    /* Product Card */
    /* Container */
    .featured-art-container {
      max-width: 1200px;
    }

    /* Section Title */
    .featured-art-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: #114d4f;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
      animation: fadeDown 1s ease;
    }

    .featured-art-title::after {
      content: "";
      width: 80px;
      height: 3px;
      background: #d4af37;
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Carousel Controls */
    .featured-prev-btn,
    .featured-next-btn {
      width: 50px;
      height: 50px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #114d4f;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0.85;
      transition: all 0.3s;
      position: absolute;
      z-index: 10;
      border: none;
    }

    .featured-prev-btn:hover,
    .featured-next-btn:hover {
      opacity: 1;
      background: linear-gradient(135deg, #114d4f, #0e3b3b);
    }

    .featured-prev-btn i,
    .featured-next-btn i {
      font-size: 1.3rem;
      color: #d8ab4e;
    }

    .featured-prev-btn {
      left: 0;
    }

    .featured-next-btn {
      right: 0;
    }

    /* Product Card */
    .art-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      height: 100%;
      background: #fff;
      border: 1px solid #ddd;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      animation: fadeUp 0.9s ease forwards;
    }

    .art-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .art-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .art-card:hover img {
      transform: scale(1.07);
    }

    .art-overlay {
      padding: 15px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex: 1;
    }

    .art-overlay h5 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: #0f3d4f;
      margin-bottom: 12px;
    }

    .art-btn-group {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .art-btn {
      flex: 1 1 45%;
      min-width: 100px;
      padding: 8px 0;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.85rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: block;
      color: #fff !important;
    }

    .art-btn-outline {
      background: linear-gradient(45deg, #d4af37, #c19c2b);
    }

    .art-btn-outline:hover {
      background: linear-gradient(45deg, #b8922a, #9e7d1f);
      transform: scale(1.05);
    }

    .art-btn-solid {
      background: linear-gradient(45deg, #0f3d4f, #114d4f);
    }

    .art-btn-solid:hover {
      background: linear-gradient(45deg, #092b38, #0c3b42);
      transform: scale(1.05);
    }

    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 575px) {
      .art-card img {
        height: 200px;
      }

      .art-overlay h5 {
        font-size: 1rem;
      }

      .featured-prev-btn,
      .featured-next-btn {
        width: 38px;
        height: 38px;
      }

      .featured-prev-btn i,
      .featured-next-btn i {
        font-size: 1rem;
      }

      .featured-art-title {
        font-size: 1.4rem;
      }

      .art-card {
        margin-bottom: 15px;
      }
    }

    @media (max-width: 767px) {
      .art-card {
        height: auto;
      }

      .art-overlay h5 {
        font-size: 1.05rem;
      }
    }

    /* jwellary end */

    /* why start */
    .why-bamanda {
      background: linear-gradient(135deg, #0f4c5c, #114d4f);
      position: relative;
      overflow: hidden;
      color: #f0c27b;
      padding: 80px 0;
    }

    .why-bamanda::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .wb-title {
      font-weight: 800;
      font-size: 2.5rem;
      margin-bottom: 2rem;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
      position: relative;
      z-index: 1;
    }

    .wb-text {
      font-size: 1.1rem;
      line-height: 1.9;
      max-width: 850px;
      margin: 0 auto 1.5rem auto;
      color: #f0c27b;
      text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 1;
    }

    .wb-text strong {
      font-weight: 700;
    }

    /* .wb-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto;
      border: 2px solid #f0c27b;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2rem;
      transition: all 0.3s ease;
      color: #f0c27b;
      cursor: pointer;
      position: relative;
      z-index: 1;
      margin-bottom: 10px;
    }

    .wb-icon:hover {
      background: #f0c27b;
      color: #0f4c5c;
      transform: scale(1.3);
    } */

    /* .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .feature-box {
      padding: 10px;
    }

    .wb-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 6px;
      border: 2px solid #f0c27b;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.6rem;
      transition: all 0.3s ease;
      color: #f0c27b;
      cursor: pointer;
    }

    .wb-icon:hover {
      background: #f0c27b;
      color: #fff;
    }

    .wb-icon-title {
      font-size: 14px;
      font-weight: 600;
      margin: 0;
      color: #f0c27b;
  
    }

  
    @media (max-width: 992px) {

     
      .features {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {

      .features {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .wb-icon-title {
      font-weight: 600;
      font-size: 1rem;
      color: #f0c27b;
      text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 1;
    }

    @media (max-width: 767px) {
      .wb-title {
        font-size: 2rem;
      }

      .wb-text {
        font-size: 1rem;
      }

      .wb-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }

      .wb-icon-title {
        font-size: 0.9rem;
      }
    } */
    .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      /* thoda zyada spacing */
      text-align: center;
      max-width: 1100px;
      /* thoda aur wide */
      margin: 0 auto;
    }

    .feature-box {
      padding: 20px;
    }

    .wb-icon {
      width: 90px;
      height: 90px;
      margin: 0 auto 10px;
      /* border: 3px solid transparent; */
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2rem;
      transition: all 0.4s ease;
      cursor: pointer;
      color: #fff;
      background: linear-gradient(135deg, #064663, #f97316);
      /* dark teal + orange */
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .wb-icon:hover {
      transform: scale(1.1) rotate(8deg);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    }

    .wb-icon-title {
      font-weight: 700;
      font-size: 1.1rem;
      background: linear-gradient(135deg, #064663, #f97316);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
    }

    /* responsive */
    @media (max-width: 992px) {
      .features {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .features {
        grid-template-columns: repeat(2, 1fr);
      }

      .wb-icon {
        width: 75px;
        height: 75px;
        font-size: 1.7rem;
      }

      .wb-icon-title {
        font-size: 1rem;
      }
    }

    /* why end */

    /* blog section start */
    /* ================= Blog Section ================= */
    .blog-section {
      color: #ffd700;
      /* golden text */
      padding: 10px 0;
      position: relative;
      overflow: hidden;
      font-family: 'Poppins', sans-serif;
    }

    .blog-title {
      font-size: 3rem;
      font-weight: 800;
      color: #ffd700;
      text-align: center;
      margin-bottom: 60px;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    }

    /* ================= Blog Card ================= */
    .blog-card {
      background: linear-gradient(135deg, #014750, #016d6a);
      /* gradient teal */
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
      position: relative;
    }

    .blog-card::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
      transform: rotate(0deg);
      transition: transform 0.7s ease;
      pointer-events: none;
    }

    .blog-card:hover::before {
      transform: rotate(180deg);
    }

    .blog-card:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.7);
    }

    .blog-image img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .blog-card:hover .blog-image img {
      transform: scale(1.1) rotate(1deg);
    }

    .blog-content {
      padding: 25px;
    }

    .blog-heading {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #ffd700;
      transition: color 0.4s ease;
    }

    .blog-card:hover .blog-heading {
      color: #fff8b0;
    }

    .blog-desc {
      font-size: 1rem;
      line-height: 1.7;
      color: #ffeaa7;
      margin-bottom: 15px;
    }

    .read-more {
      font-weight: 600;
      color: #ffd700;
      text-decoration: none;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .read-more:hover {
      color: #fff8b0;
      transform: translateX(5px);
    }

    /* ================= Floating Particles (Optional) ================= */
    .blog-section::after {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      background: rgba(255, 215, 0, 0.05);
      border-radius: 50%;
      top: 20%;
      left: 10%;
      filter: blur(100px);
      animation: float 10s infinite alternate ease-in-out;
      z-index: 0;
    }

    .blog-section::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(255, 215, 0, 0.08);
      border-radius: 50%;
      top: 60%;
      right: 5%;
      filter: blur(120px);
      animation: float 12s infinite alternate ease-in-out;
      z-index: 0;
    }

    @keyframes float {
      0% {
        transform: translateY(0px) translateX(0px);
      }

      100% {
        transform: translateY(-30px) translateX(20px);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .blog-title {
        font-size: 2.2rem;
      }

      .blog-card {
        margin-bottom: 30px;
      }
    }

    /* blog section end  */

    /* enquiry index start */
    .enquiry-section {
      text-align: center;
      padding: 20px 10px;
      overflow: hidden;
    }

    /* Animations */
    .enquiry-title {
      font-size: 28px;
      font-weight: bold;
      color: #004d4d;
      opacity: 0;
      transform: translateY(-20px);
      animation: fadeDown 1s forwards;
    }

    .enquiry-subtitle {
      font-size: 14px;
      color: #333;
      margin-bottom: 30px;
      opacity: 0;
      transform: translateY(-20px);
      animation: fadeDown 1s forwards;
      animation-delay: 0.3s;
    }

    .enquiry-row {
      display: flex;
      gap: 20px;
      max-width: 1000px;
      margin: auto;
      flex-wrap: wrap;
    }

    /* Image */
    .enquiry-left {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateX(-50px);
      animation: slideInLeft 1s forwards;
      animation-delay: 0.5s;
    }

    .enquiry-left img {
      width: 100%;
      height: 500px;
      border-radius: 20px;
      object-fit: cover;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Form */
    .enquiry-right {
      flex: 1;
      background: #f7f7f7;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      text-align: left;
      height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      opacity: 0;
      transform: translateX(50px);
      animation: slideInRight 1s forwards;
      animation-delay: 0.7s;
    }

    .enquiry-right h3 {
      color: #004d4d;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s forwards;
      animation-delay: 0.9s;
    }

    .form-row {
      display: flex;
      align-items: center;
      background: white;
      border-radius: 50px;
      padding: 10px 15px;
      margin-bottom: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      border: 1px solid #ddd;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s forwards;
    }

    .form-row:nth-child(1) {
      animation-delay: 1.1s;
    }

    .form-row:nth-child(2) {
      animation-delay: 1.3s;
    }

    .form-row:nth-child(3) {
      animation-delay: 1.5s;
    }

    .form-row:nth-child(4) {
      animation-delay: 1.7s;
    }

    .textarea-row {
      align-items: flex-start;
      border-radius: 20px;
    }

    .form-row i {
      margin-right: 10px;
      font-size: 16px;
      color: #d4af37;
    }

    .form-row input,
    .form-row textarea {
      border: none;
      outline: none;
      flex: 1;
      font-size: 14px;
      background: transparent;
      resize: none;
    }

    .form-row:focus-within {
      border: 1px solid #d4af37;
      box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    }

    .enquiry-btn {
      background: #004d4d;
      color: white;
      padding: 12px;
      width: 100%;
      border: none;
      border-radius: 50px;
      font-size: 16px;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s forwards;
      animation-delay: 1.9s;
    }

    .enquiry-btn:hover {
      background: #d4af37;
      color: #004d4d;
      transform: scale(1.02);
    }

    .enquiry-btn:active {
      background: #d4af37;
      color: #004d4d;
      box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
      transform: scale(0.98);
    }

    /* Keyframes */
    @keyframes fadeDown {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInLeft {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 991px) {
      .enquiry-row {
        flex-direction: column;
      }

      .enquiry-left img,
      .enquiry-right {
        height: auto;
        transform: none;
        animation: none;
        opacity: 1;
      }
    }

    /* enquiry index end */

    /* footer start */
    /* Footer Styles */
    .custom-footer {
      position: relative;
      color: #fff;
      overflow: hidden;
      /*background: url('images/banner2.jpg') center/cover no-repeat;*/
    }

    .custom-footer .footer-overlay {
      background: rgba(0, 51, 51, 0.85);
      padding-top: 60px;
      padding-bottom: 30px;
    }

    /* Headings */
    .custom-footer h5 {
      font-weight: 700;
      margin-bottom: 20px;
      color: #f9c74f;
    }

    /* Paragraphs & List Items */
    .custom-footer p,
    .custom-footer li {
      font-size: 14px;
      line-height: 1.8;
    }

    /* Links */
    .custom-footer .footer-link {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
    }

    .custom-footer .footer-link:hover {
      color: #f9c74f;
    }

    /* Social icons */
    .custom-footer .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      background: #004d4d;
      color: #f9c74f;
      border-radius: 50%;
      text-align: center;
      transition: all 0.3s ease;
      margin-right: 5px;
    }

    .custom-footer .social-icon:hover {
      background: #f9c74f;
      color: #004d4d;
      transform: scale(1.2);
    }

    .custom-footer hr {
      border-color: rgba(255, 255, 255, 0.2);
    }

    .custom-footer a {
      text-decoration: none;
    }

    /* Responsive adjustments */
    /* @media(max-width: 991px) {

      .custom-footer .col-md-2,
      .custom-footer .col-md-3,
      .custom-footer .col-md-4 {
        margin-bottom: 30px;
      }
    } */

    @media(max-width: 767px) {
      .custom-footer .footer-overlay {
        padding-top: 40px;
        padding-bottom: 20px;
      }

      .custom-footer p,
      .custom-footer li {
        font-size: 13px;
      }

      .custom-footer h5 {
        font-size: 18px;
        margin-bottom: 15px;
      }

      .custom-footer .social-icon {
        width: 40px;
        height: 40px;
        margin-right: 8px;
      }

      .custom-footer img {
        width: 120px;
      }
    }

    @media(max-width: 480px) {
      .custom-footer h5 {
        font-size: 16px;
      }

      .custom-footer p,
      .custom-footer li {
        font-size: 12px;
      }

      .custom-footer .social-icon {
        width: 35px;
        height: 35px;
        margin-right: 6px;
      }
    }

    /* footer end */

    /* breadcrumb banner start */
    /* ================= Banner ================= */
    .company-banner {
      position: relative;
      background: url('images/banner3.jpg') center/cover no-repeat;
      height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 0 20px;
      overflow: hidden;
    }

    .company-banner .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }

    .company-banner .banner-content {
      position: relative;
      z-index: 2;
      text-align: center;
      opacity: 0;
      /* initially hidden */
      transform: translateY(20px);
      transition: all 1s ease;
    }

    .company-banner .banner-content.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .company-banner h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 15px;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    }

    /* ================= Styled Breadcrumb ================= */
    .breadcrumb {
      display: inline-flex;
      list-style: none;
      padding: 0;
      margin: 0;
      background: transparent;
      font-size: 1rem;
      gap: 5px;
    }

    .breadcrumb li {
      display: flex;
      align-items: center;
      color: #f8f8f8;
      font-weight: 500;
    }

    .breadcrumb li+li::before {
      content: "›";
      /* Separator */
      margin: 0 8px;
      color: #d1b360;
      font-weight: 700;
    }

    .breadcrumb li a {
      color: #f8f8f8;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .breadcrumb li a:hover {
      color: #b8994f;
    }

    .breadcrumb li.active {
      color: #d1b360;
    }

    /* ================= Responsive ================= */
    @media (max-width: 991px) {
      .company-banner {
        height: 300px;
      }

      .company-banner h1 {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 767px) {
      .company-banner {
        height: 250px;
      }

      .company-banner h1 {
        font-size: 2rem;
      }

      .breadcrumb {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .company-banner {
        height: 200px;
      }

      .company-banner h1 {
        font-size: 1.6rem;
      }

      .breadcrumb {
        font-size: 0.8rem;
      }
    }

    /* breadcrumb banner end */

    /* company profile start */

    /* ================= Why Choose Us Section ================= */
    .why-choose {
      background: linear-gradient(135deg, #0f3d4f, #f5d083);
      /* Dark Teal to Golden Gradient */
      color: #f5d083;
      /* Golden text color */
      padding: 100px 20px;
      text-align: center;
    }

    .why-choose h2 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .why-choose p.section-desc {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto 50px;
      line-height: 1.8;
      color: #fff9e6;
      /* slightly lighter golden for readability */
    }

    .features-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .feature-card {
      background-color: rgba(255, 255, 255, 0.1);
      /* Transparent card to blend with gradient */
      border-radius: 15px;
      padding: 30px 20px;
      max-width: 250px;
      flex: 1 1 220px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    }

    .feature-card i {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: #f5d083;
    }

    .feature-card h4 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #fff;
    }

    .feature-card p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #fff;
    }

    /* Responsive */
    @media(max-width: 992px) {
      .why-choose h2 {
        font-size: 2.4rem;
      }

      .features-wrapper {
        gap: 20px;
      }
    }

    @media(max-width: 576px) {
      .why-choose h2 {
        font-size: 2rem;
      }

      .feature-card {
        max-width: 100%;
      }
    }

    /* ================= Mission & Vision Section ================= */
    .mission-vision {
      padding: 100px 20px;
      background-color: #fff;
    }

    .mission-vision p {
      font-size: 1.05rem;
      line-height: 1.8;
      text-align: justify;
      color: #555555;
      margin-top: 15px;
      animation: fadeInUp 1.2s ease forwards;
      opacity: 0;
    }

    .mission-vision .card-img-wrapper {
      border-radius: 15px;
      overflow: hidden;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
      animation: fadeIn 1.5s ease forwards;
      opacity: 0;
    }

    .mission-vision .card-img-wrapper img {
      width: 100%;
      height: auto;
      transition: transform 0.5s ease;
    }

    .mission-vision .card-img-wrapper:hover img {
      transform: scale(1.05);
    }

    /* Animations */
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      0% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }

    /* Responsive */
    @media(max-width: 992px) {
      .mission-vision h2 {
        font-size: 2.2rem;
      }

      .mission-vision p {
        font-size: 1rem;
      }
    }

    @media(max-width: 576px) {
      .mission-vision h2 {
        font-size: 2rem;
        text-align: center;
      }

      .mission-vision p {
        font-size: 0.95rem;
        text-align: justify;
      }

      .mission-vision .card-img-wrapper {
        margin: 0 auto 20px;
      }
    }


    /* Banner Section */
    .cta-banner {
      background: linear-gradient(90deg, #0f3d4f, #f5d083);
      /* Dark Teal to Golden */
      color: #fff;
      padding: 30px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    /* Decorative Glow */
    .cta-banner::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 180px;
      height: 180px;
      background: rgba(245, 208, 131, 0.25);
      border-radius: 50%;
      filter: blur(90px);
    }

    .cta-banner h2 {
      font-size: 1.9rem;
      font-weight: 700;
      margin: 0;
      color: #fff;
      letter-spacing: 1px;
      text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
    }

    .cta-banner h2 span {
      font-family: 'Great Vibes', cursive;
      font-size: 2.1rem;
      color: #f5d083;
    }

    .cta-btn {
      background: #111;
      color: #fff;
      border: 1.5px solid #f5d083;
      padding: 10px 26px;
      border-radius: 40px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
    }

    .cta-btn:hover {
      background: #f5d083;
      color: #0f3d4f;
      transform: translateY(-2px);
      box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.4);
    }

    .cta-btn i {
      margin-left: 8px;
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }

    .cta-btn:hover i {
      transform: translateX(5px);
    }

    /* Responsive */
    @media(max-width: 768px) {
      .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
      }

      .cta-banner h2 {
        font-size: 1.5rem;
      }

      .cta-banner h2 span {
        font-size: 1.8rem;
      }
    }

    /* company profile end */

    /* contact page start */
    /* Section */
    .contact-section {
      padding: 100px 0;
      position: relative;
      /* background: #0d2a33;  */
      color: #fff;
    }

    /* Section Title */
    .contact-section .section-title span {
      color: #d4af37;
      /* Golden */
    }

    .contact-section .section-title span::after {
      background: #d4af37;
    }

    .subtitle {
      color: #cbd5d5;
      /* Soft white */
    }

    /* Map */
    .map-container {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
      height: 100%;
      transition: transform 0.5s ease;
    }

    .map-container:hover {
      transform: scale(1.02);
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      min-height: 450px;
    }

    /* Form */
    .form-container {
      background: rgba(212, 175, 55, 0.12);
      /* Golden transparent */
      backdrop-filter: blur(15px);
      border-radius: 20px;
      padding: 40px;
      border: 1px solid rgba(212, 175, 55, 0.4);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      color: #0d2a33;
    }

    .form-container:hover {
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    .form-container h5 {
      color: #000000;
      /* Teal heading */
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
    }

    .input-group-text {
      background: #d4af37;
      /* Golden */
      border: none;
      color: #0d2a33;
      font-weight: bold;
    }

    .form-control {
      border-radius: 8px;
      border: 1px solid #ccc;
      transition: all 0.3s ease;
    }

    .form-control:focus {
      border: 2px solid #d4af37;
      box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    }

    /* Send Button */
    .send-btn {
      background: #d4af37;
      /* Golden */
      color: #0d2a33;
      font-weight: 700;
      border: none;
      border-radius: 10px;
      padding: 14px;
      transition: all 0.3s ease;
      font-size: 1.05rem;
    }

    .send-btn:hover,
    .send-btn.send-click {
      background: #fff;
      color: #0d2a33;
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    }

    /* Info Boxes */
    .info-box {
      background: rgba(212, 175, 55, 0.12);
      border-radius: 20px;
      padding: 35px 25px;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
      transition: all 0.4s ease;
      color: #0d2a33;
      position: relative;
      overflow: hidden;
    }

    .info-box::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0));
      top: 0;
      left: 0;
      transform: translateX(-100%);
      transition: all 0.5s ease;
    }

    .info-box:hover::after {
      transform: translateX(0);
    }

    .info-box i {
      font-size: 2.2rem;
      color: #d4af37;
      margin-bottom: 15px;
    }

    .info-box:hover {
      transform: translateY(-10px) scale(1.03);
      background: rgba(212, 175, 55, 0.18);
    }

    .info-box h6 {
      font-weight: 700;
      margin-bottom: 8px;
    }

    .info-box p {
      font-size: 1rem;
      color: #0d2a33;
    }

    @media (max-width: 767px) {
      .map-container iframe {
        min-height: 300px;
      }
    }

    /* contact page end */

    /* pay now page start */
    /* .payment-section {
      padding: 60px 20px;
      background: #ffffff;
    
    }

    .payment-card {
      background: #f9f4e7;
     
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .payment-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    }

    .payment-title {
      font-size: 1.3rem;
      font-weight: bold;
      color: #bfa136;
    
      display: flex;
      align-items: center;
      justify-content: center;
  
      margin-bottom: 15px;
    }

    .payment-title i {
      margin-right: 10px;
      color: #bfa136;
   
      animation: bounce 1.5s infinite;
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-5px);
      }
    }

    .bank-details p {
      margin: 8px 0;
      font-size: 1rem;
      color: #004d4d;
    }

    .bank-details i {
      color: #bfa136;
    
      margin-right: 6px;
    }

    .qr-box {
      text-align: center;
    }

    .qr-box img {
      max-width: 220px;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
      transition: transform 0.4s ease;
    }

    .qr-box img:hover {
      transform: scale(1.05);
    }

    .qr-box p {
      margin-top: 12px;
      font-size: 0.95rem;
      color: #004d4d;
      
    }

    @media (max-width: 767px) {
      .payment-section {
        padding: 40px 15px;
      }
    } */

    .payment-wrapper {
      padding: 60px 20px;
    }

    .pay-box {
      background: #fff;
      border-radius: 15px;
      padding: 35px 25px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(40px);
      animation: fadeUp 1s forwards;
    }

    .pay-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    }

    /* Animations */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .logo-area {
      text-align: center;
      margin-bottom: 20px;
      animation: fadeIn 1.2s ease-in-out forwards;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .logo-area img {
      max-width: 150px;
      margin-bottom: 10px;
      animation: zoomIn 1.3s ease-in-out forwards;
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.8);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .logo-area h2 {
      font-family: 'Dancing Script', cursive;
      font-size: 28px;
      color: #6b4226;
      /* Brown */
      margin-bottom: 5px;
    }

    .logo-area p {
      font-size: 15px;
      color: #a67c52;
      /* Golden */
    }

    .bank-info {
      text-align: center;
      margin-top: 20px;
    }

    .bank-info h4 {
      font-weight: bold;
      margin-bottom: 15px;
      color: #a67c52;
      /* Golden */
    }

    .bank-info p {
      margin: 8px 0;
      font-size: 16px;
      color: #333;
    }

    .highlight {
      font-weight: bold;
      font-size: 17px;
      color: #6b4226;
      /* Brown */
    }

    .paytm-box {
      background: linear-gradient(135deg, #a67c52, #6b4226);
      color: #fff;
      padding: 14px;
      font-size: 18px;
      font-weight: bold;
      border-radius: 8px;
      margin-top: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      animation: fadeUp 1.5s forwards;
    }

    /* Hover pulse effect */
    .paytm-box:hover {
      animation: pulse 1s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }

      100% {
        transform: scale(1);
      }
    }

    .qr-box {
      text-align: center;
      animation: fadeUp 1.4s forwards;
    }

    .qr-box h4 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #6b4226;
      /* Brown */
    }

    .qr-box img {
      max-width: 260px;
      width: 100%;
      border: 6px solid #f3e2c7;
      /* light golden */
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
    }

    .qr-box img:hover {
      transform: scale(1.08) rotate(2deg);
    }

    .qr-box p {
      margin-top: 15px;
      font-size: 15px;
      color: #555;
      animation: fadeIn 2s ease-in-out forwards;
    }

    /* Responsive */
    @media(max-width: 991px) {
      .pay-box {
        padding: 25px 20px;
      }

      .logo-area img {
        max-width: 120px;
      }

      .qr-box img {
        max-width: 220px;
      }
    }

    @media(max-width: 767px) {
      .payment-wrapper {
        padding: 40px 15px;
      }

      .logo-area img {
        max-width: 110px;
      }

      .logo-area h2 {
        font-size: 24px;
      }

      .bank-info h4 {
        font-size: 18px;
      }

      .qr-box img {
        max-width: 200px;
      }

      .paytm-box {
        font-size: 16px;
        padding: 12px;
      }
    }

    @media(max-width: 480px) {
      .logo-area img {
        max-width: 90px;
      }

      .logo-area h2 {
        font-size: 20px;
      }

      .bank-info p {
        font-size: 14px;
      }

      .highlight {
        font-size: 15px;
      }

      .qr-box img {
        max-width: 170px;
      }
    }

    /* pay now page end */

    /* blog start */

    /* Page Header */
    .page-header {
      text-align: center;
      margin-bottom: 50px;
      animation: fadeInDown 1s ease forwards;
      opacity: 0;
    }

    .page-header h1 {
      font-family: 'Great Vibes', cursive;
      font-size: 3rem;
      color: #d4af37;
      margin-bottom: 10px;
      position: relative;
      display: inline-block;
    }

    .page-header h1::after {
      content: "";
      width: 60px;
      height: 3px;
      background: #d4af37;
      display: block;
      margin: 8px auto 0;
      border-radius: 2px;
    }

    .page-header p {
      color: #0f3d4f;
      font-size: 1rem;
      letter-spacing: 0.5px;
    }

    /* Blog Grid */
    .blog-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      animation: fadeInUp 1s ease forwards;
      opacity: 0;
    }

    /* Blog Card */
    .blog-card {
      flex: 1 1 calc(33% - 30px);
      background: #0f3d4f;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      transition: all 0.4s;
      position: relative;
      color: #fdf8f2;
    }

    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
      border: 2px solid #d4af37;
    }

    /* Image zoom effect */
    .blog-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .blog-card:hover img {
      transform: scale(1.08);
    }

    /* Card Body */
    .blog-card-body {
      padding: 25px;
    }

    .blog-card-body h3 {
      color: #d4af37;
      margin-bottom: 12px;
      font-size: 1.4rem;
      transition: color 0.3s;
    }

    .blog-card-body h3:hover {
      color: #f0e68c;
    }

    .blog-card-body p {
      color: #fdf8f2;
      font-size: 0.95rem;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    /* Read More button */
    .blog-card-body a {
      display: inline-block;
      padding: 10px 20px;
      background: linear-gradient(135deg, #d4af37, #f0e68c);
      color: #0f3d4f;
      font-weight: 600;
      border-radius: 30px;
      transition: all 0.3s;
    }

    .blog-card-body a:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    /* Animations */
    @keyframes fadeInDown {
      0% {
        opacity: 0;
        transform: translateY(-20px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media(max-width:992px) {
      .blog-card {
        flex: 1 1 calc(50% - 30px);
      }
    }

    @media(max-width:600px) {
      .blog-card {
        flex: 1 1 100%;
      }
    }

    /* blog end */

    /* releif arts start */
    .art-container {
      max-width: 1200px;
      width: 90%;
      margin: 50px auto;
    }

    /* Page Header */
    .art-header {
      text-align: center;
      margin-bottom: 50px;
      animation: fadeDown 1s ease forwards;
      opacity: 0;
    }

    .art-header h1 {
      font-family: "Dancing Script", cursive;
      font-size: 3rem;
      color: #d4af37;
      margin-bottom: 10px;
      position: relative;
      display: inline-block;
    }

    .art-header h1::after {
      content: "";
      width: 80px;
      height: 3px;
      background: #d4af37;
      display: block;
      margin: 8px auto 0;
      border-radius: 2px;
    }

    .art-header p {
      color: #0f3d4f;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
    }

    /* Gallery Container */
    .agate-gallery {
      max-width: 1200px;
      width: 90%;
      margin: 60px auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
      animation: fadeInUp 1.2s ease;
    }

    /* Card */
    .agate-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      opacity: 0;
      animation: cardFadeIn 1s forwards;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    /* Equal Height Fix */
    .agate-card img {
      width: 100%;
      height: 230px;
      object-fit: contain;
      display: block;
      flex-shrink: 0;
      transition: transform 0.5s ease;
    }

    .agate-card-body {
      padding: 15px;
      text-align: center;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    /* Staggered Animation */
    .agate-card:nth-child(1) {
      animation-delay: 0.2s;
    }

    .agate-card:nth-child(2) {
      animation-delay: 0.4s;
    }

    .agate-card:nth-child(3) {
      animation-delay: 0.6s;
    }

    .agate-card:nth-child(4) {
      animation-delay: 0.8s;
    }

    .agate-card:nth-child(5) {
      animation-delay: 1s;
    }

    .agate-card:nth-child(6) {
      animation-delay: 1.2s;
    }

    .agate-card:nth-child(7) {
      animation-delay: 1.4s;
    }

    .agate-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .agate-card:hover img {
      transform: scale(1.05);
    }

    .agate-card-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: #0f3d4f;
      margin-bottom: 15px;
    }

    .agate-buttons {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: auto;
    }

    .agate-btn {
      flex: 1;
      padding: 10px 0;
      border-radius: 5px;
      font-weight: 600;
      font-size: 0.9rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .agate-view {
      background: #d4af37;
      color: #fff;
    }

    .agate-view:hover {
      background: #b8922a;
      transform: scale(1.05);
    }

    .agate-enquiry {
      background: #0f3d4f;
      color: #fff;
    }

    .agate-enquiry:hover {
      background: #092b38;
      transform: scale(1.05);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes cardFadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 600px) {
      .agate-card img {
        height: 200px;
      }

      .agate-buttons {
        flex-direction: row;
      }
    }

    /* releif art end */

    /* releif art1 work start */
    /* ===== Product Section ===== */
    .product-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 40px;
    }

    .image-section {
      flex: 1 1 45%;
      position: relative;
    }

    .main-photo {
      width: 100%;
      height: 400px;
      border-radius: 12px;
      object-fit: contain;
      cursor: zoom-in;
      box-shadow: 0 8px 25px rgba(15, 76, 76, 0.2);
      border: 1px solid #0f4c4c;
    }

    .thumb-row {
      display: flex;
      gap: 10px;
      margin-top: 15px;
      justify-content: center;
    }

    .thumb-row img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border: 2px solid transparent;
      cursor: pointer;
      border-radius: 6px;
      transition: 0.3s;
    }

    .thumb-row img.active {
      border-color: #d4af37;
    }

    .lens {
      position: absolute;
      border: 2px solid #d4af37;
      width: 150px;
      height: 150px;
      visibility: hidden;
      pointer-events: none;
      z-index: 2;
    }

    .zoom-display {
      border: 1px solid #d4af37;
      width: 400px;
      height: 400px;
      position: absolute;
      top: 0;
      left: 105%;
      background-repeat: no-repeat;
      background-size: 800px auto;
      visibility: hidden;
      z-index: 1;
    }

    /* ===== Product Info ===== */
    .info-section {
      flex: 1 1 50%;
    }

    .info-section h1 {
      font-size: 28px;
      font-weight: 700;
      color: #0f4c4c;
    }

    .price-container {
      margin: 15px 0;
    }

    .price-container .current-price {
      font-size: 22px;
      color: #d4af37;
      font-weight: 700;
    }

    .price-container .original-price {
      text-decoration: line-through;
      margin-left: 10px;
      color: #777;
    }

    .price-container .sale {
      margin-left: 10px;
      color: #ffcc00;
    }

    .action-buttons {
      margin-top: 20px;
      display: flex;
      gap: 15px;
    }

    /* ===== Updated Button Classes ===== */
    .btn-enquiry {
      background: #0f4c4c;
      color: #d4af37;
      padding: 10px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 14px;
      transition: 0.3s ease;
      border: 2px solid #d4af37;
    }

    .btn-enquiry:hover {
      background: #d4af37;
      color: #0f4c4c;
    }

    .btn-purchase {
      background: #d4af37;
      color: #0f4c4c;
      padding: 10px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 14px;
      transition: 0.3s ease;
      border: 2px solid #d4af37;
    }

    .btn-purchase:hover {
      background: #b8860b;
    }

    /* ===== Tabs ===== */
    .info-tabs {
      margin-top: 50px;
    }

    .tab-buttons-container {
      display: flex;
      gap: 20px;
      margin-bottom: 15px;
      flex-wrap: wrap;
    }

    .tab-buttons-container button {
      background: none;
      border: none;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      padding: 10px 15px;
      color: #0f4c4c;
      border-bottom: 2px solid transparent;
    }

    .tab-buttons-container button.active {
      border-color: #d4af37;
      color: #d4af37;
    }

    .tab-content-section {
      display: none;
      animation: fadeIn 0.4s ease;
      color: #0f4c4c;
    }

    .tab-content-section.active {
      display: block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* ===== Related Products ===== */
    .related-items {
      margin-top: 60px;
    }

    .related-items h2 {
      margin-bottom: 20px;
      font-size: 24px;
      text-align: center;
      display: inline-block;
      border-bottom: 2px solid #d4af37;
      padding-bottom: 5px;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 20px 0;
    }

    .related-card {
      background: #fff;
      padding: 15px;
      border: 1px solid #0f4c4c;
      border-radius: 8px;
      text-align: center;
    }

    .related-card img {
      width: 100%;
      height: auto;
      object-fit: contain;
      max-height: 200px;
      border-radius: 6px;
    }

    .related-price {
      font-weight: bold;
      margin-top: 10px;
      color: #0f4c4c;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
      .product-container {
        flex-direction: column;
      }

      .related-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .related-grid {
        grid-template-columns: 1fr;
      }
    }

    /* releif art 2 work end */

    /* related products start */


    /* related product end */

    /* floating icon start */
    /* Common button styles */
    .floating-btn {
      position: fixed;
      left: 20px;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 30px;
      cursor: pointer;
      text-decoration: none;
      z-index: 9999;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease-in-out;
      animation: bounce 2s infinite, pulse 2s infinite;
    }

    /* Hover effect */
    .floating-btn:hover {
      transform: translateY(-8px) scale(1.15) rotate(10deg);
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    }

    /* 3D press effect */
    .floating-btn:active {
      transform: translateY(4px) scale(0.95);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    /* WhatsApp Button with gradient + glow */
    .whatsapp-float {
      bottom: 110px;
      background: linear-gradient(135deg, #25d366, #128c7e);
      box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    }

    /* Mail Button with gradient + glow */
    .mail-float {
      bottom: 25px;
      background: linear-gradient(135deg, #ff512f, #dd2476);
      box-shadow: 0 0 20px rgba(221, 36, 118, 0.6);
    }

    /* Bounce animation */
    @keyframes bounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    /* Pulse glow animation */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
      }

      50% {
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
      }

      100% {
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
      }
    }

    /* floating icon end */

    /* price start */
    .price-container {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: Arial, sans-serif;
    }

    .original-price {
      text-decoration: line-through;
      color: #888;
      font-size: 14px;
    }

    .current-price {
      color: #e63946;
      font-size: 18px;
      font-weight: bold;
    }

    .discount {
      background: #e63946;
      color: #fff;
      font-size: 12px;
      font-weight: bold;
      padding: 3px 8px;
      border-radius: 4px;
    }

    /* price end */
    /* broshure btn start */
    /* .download-btn {
      display: inline-block;
      padding: 12px 25px;
      background: linear-gradient(135deg, #3f48bd, #232a78);
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      margin-left: 20px;

    }


    .download-btn i {
      margin-right: 8px;
    }

    
    .download-btn:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
      background: linear-gradient(135deg, #232a78, #3f48bd);
    } */

    /* brosherbtn end */


    /* gemstone start */
    /* Gallery Container */
    .gem-gallery {
      max-width: 1200px;
      width: 90%;
      margin: 40px auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }

    /* Card */
    .gem-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      /* Uniform height */
    }

    .gem-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .gem-card img {
      width: 100%;
      height: 230px;
      object-fit: contain;
      display: block;
      transition: transform 0.5s ease;
    }

    .gem-card:hover img {
      transform: scale(1.05);
    }

    .gem-card-body {
      padding: 15px;
      text-align: center;
      display: flex;
      flex-direction: column;
      flex: 1;
      justify-content: space-between;
    }

    .gem-card-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: #0f3d4f;
      margin-bottom: 15px;
    }

    /* Buttons */
    .gem-buttons {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .gem-btn {
      flex: 1;
      padding: 10px 0;
      border-radius: 5px;
      font-weight: 600;
      font-size: 0.9rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .view-gem {
      background: #d4af37;
      color: #fff;
    }

    .view-gem:hover {
      background: #b8922a;
      transform: scale(1.05);
    }

    .enquire-gem {
      background: #0f3d4f;
      color: #fff;
    }

    .enquire-gem:hover {
      background: #092b38;
      transform: scale(1.05);
    }

    .gem-btn a {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    @media (max-width: 600px) {
      .gem-card img {
        height: 200px;
      }

      .gem-buttons {
        flex-direction: row;
      }
    }

    /* gemstone */

    /* handcrafted start */
    /* Container */
    .handcrafted-art-container {
      max-width: 1200px;
    }

    /* Section Title */
    .handcrafted-art-title {
      font-family: "Playfair Display", serif;
      font-weight: 700;
      color: #114d4f;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
      animation: fadeDown 1s ease;
    }

    .handcrafted-art-title::after {
      content: "";
      width: 80px;
      height: 3px;
      background: #d4af37;
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Carousel Controls */
    .handcrafted-prev-btn,
    .handcrafted-next-btn {
      width: 50px;
      height: 50px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #114d4f;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0.85;
      transition: all 0.3s;
      position: absolute;
      z-index: 10;
      border: none;
    }

    .handcrafted-prev-btn:hover,
    .handcrafted-next-btn:hover {
      opacity: 1;
      background: linear-gradient(135deg, #114d4f, #0e3b3b);
    }

    .handcrafted-prev-btn i,
    .handcrafted-next-btn i {
      font-size: 1.3rem;
      color: #d8ab4e;
    }

    .handcrafted-prev-btn {
      left: 0;
    }

    .handcrafted-next-btn {
      right: 0;
    }

    /* Product Card */
    .handcrafted-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      height: 100%;
      background: #fff;
      border: 1px solid #ddd;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      animation: fadeUp 0.9s ease forwards;
    }

    .handcrafted-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .handcrafted-card img {
      width: 100%;
      height: 230px;
      object-fit: contain;
      display: block;
      transition: transform 0.5s ease;
    }

    .handcrafted-card:hover img {
      transform: scale(1.07);
    }

    .handcrafted-overlay {
      padding: 15px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex: 1;
    }

    .handcrafted-overlay h5 {
      font-family: "Playfair Display", serif;
      font-size: 1.1rem;
      color: #0f3d4f;
      margin-bottom: 12px;
    }

    .handcrafted-btn {
      flex: 1 1 45%;
      min-width: 100px;
      padding: 8px 0;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.85rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: block;
      color: #fff !important;
      background: linear-gradient(45deg, #1c5b73, #196264);
    }

    .handcrafted-btn:hover {
      background: linear-gradient(45deg, #092b38, #0c3b42);
      transform: scale(1.05);
    }

    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 575px) {
      .handcrafted-card img {
        height: 200px;
      }

      .handcrafted-overlay h5 {
        font-size: 1rem;
      }

      .handcrafted-prev-btn,
      .handcrafted-next-btn {
        width: 38px;
        height: 38px;
      }

      .handcrafted-prev-btn i,
      .handcrafted-next-btn i {
        font-size: 1rem;
      }

      .handcrafted-art-title {
        font-size: 1.4rem;
      }

      .handcrafted-card {
        margin-bottom: 15px;
      }
    }

    @media (max-width: 767px) {
      .handcrafted-card {
        height: auto;
      }

      .handcrafted-overlay h5 {
        font-size: 1.05rem;
      }
    }

    /* handcrafted end */

    /* brosher btn start */
    .action-wrap {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
      width: 380px;
    }

    /* 👉 Right aligned version */
    .align-right {
      justify-content: flex-end;
      text-align: right;
    }

    .action-btn {
      padding: 10px 24px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: 0.3s;
      font-size: 0.9rem;
    }

    /* 📄 Download Brochure */
    .btn-download {
      background: #00442c;
      color: #fff;
    }

    .btn-download:hover {
      background: #022f20;
      transform: translateY(-3px);
    }

    /* 💬 Send Enquiry (renamed to .btn-query) */
    .btn-query {
      background: #ffdb4d;
      color: #00442c;
    }

    .btn-query:hover {
      background: #ffd633;
      transform: translateY(-3px);
    }

    /* 📱 Responsive */
    @media (max-width: 768px) {
      .action-wrap {
        flex-direction: column;
        align-items: flex-end;
      }

      .action-btn {
        width: 80%;
        max-width: 280px;
        text-align: center;
      }
    }

    /* brosher btn end */