/* Gray color = #696E71 */
/* orange color = #EF721E */
/* blue color = #008BA6 */
/* green color = #B0D432 */

:root {
  --orange-color: #ef721e72;
  --orange-color1: rgb(239, 114, 30);
  --blur-color: #008BA6;
  --gray-color: #696E71;
  --green-color: #B0D432;
  --white-color: #fff;
  --text-white: #ffffff;
  --overlay-dark: rgba(71, 68, 68, 0.65);
  --gradient-blue-orange: linear-gradient(225deg, hsla(24, 87%, 53%, 1) 0%, hsla(190, 100%, 33%, 1) 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: #f8f7f8;
  font-family: 'Nunito Sans', sans-serif;
  overflow-x: hidden;
}


.heading-text {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 678;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 540;
}

/* ============================================Navbar start ============================================  */


.navbar-container {
  background-color: #f8f7f8;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-text-heading {
  font-weight: 600;
  font-size: 25px;
  color: var(--gray-color);
}

.logo-icon {
  position: relative;
}

.logo-icon .overlay-icon {
  position: absolute;
  top: 4px;
  left: 4px;
}

.nav-link {
  color: #2d2f35;
  margin-right: 1.5rem;
  font-weight: 500;
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #2d2f35;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
  width: 100%;
}

.icon-group i {
  font-size: 1.2rem;
  color: var(--gray-color);
  cursor: pointer;
}


/* Dropdown */
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu {
  background: #fff;
  border: none;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  display: none;
  position: absolute;
}

.dropdown-submenu:hover .dropdown-menu {
  display: block;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 250px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1050;
}

.sidebar.show {
  right: 0;
}

.sidebar-header {
  border-bottom: 1px solid #e5e5e5;
}

.sidebar-body {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.sidebar-link {
  padding: 0.75rem 0;
  font-weight: 500;
  color: #2d2f35;
  text-decoration: none;
  border-bottom: 1px solid #f1f1f1;
  position: relative;
}

.sidebar-dropdown .sidebar-submenu,
.sidebar-subdropdown .sidebar-submenu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.sidebar-dropdown:hover .sidebar-submenu,
.sidebar-subdropdown:hover .sidebar-submenu {
  display: flex;
}

.sidebar-submenu a {
  padding: 0.3rem 0;
  color: #444;
}

/* Responsive Fix */
@media (max-width: 991.98px) {
  .nav-links {
    display: none !important;
  }
}


.nested-sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 250px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1060;
}

.nested-sidebar.show {
  right: 0;
}

.dropdown-container {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 130%;
  /* attach directly below the parent */
  left: 0;
  min-width: 240px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
  transform: translateY(10px);
}

/* KEY FIX: stay open when hovering link OR dropdown */
.dropdown-container:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Dropdown items */
.dropdown-item-custom {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  color: #2d2f35;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Highlight on hover with smooth transition */
.dropdown-item-custom:hover {
  background-color: var(--orange-color);
  /* light orange */
}



/* Sidebar styling */
.right-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  z-index: 2000;
  overflow-y: auto;
  padding: 2rem 1.5rem;
}

/* Show sidebar */
.right-sidebar.active {
  right: 0;
}

/* Close button inside the sidebar */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.8rem;
  background-color: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  z-index: 2001;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.bar-icon-btn {
  border: 0px;
  font-size: 25px;
  background-color: transparent;
}

/* Hide bar icon on small screens */
@media (max-width: 991px) {
  .bar-icon-btn {
    display: none;
  }
}

/* ============================================Navbar end============================================  */

/* ==========================================Hero section start=====================================  */


.hero-section-title {
  font-family: "Noto san", sans-serif;
  font-size: 50px !important;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-color);
}

.hero-section-subtitle {
  font-family: "Nunito san", sans-serif;
  color: var(--orange-color1);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0 20px;
  display: inline-block;
}



.hero-section-btn {
  font-family: "Nunito san", sans-serif;
  background-color: var(--orange-color1);
  color: #fff;
  padding: 20px 45px;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-section-btn:hover {
  background-color: var(--gray-color);
  color: var(--green-color);
}

.hero-section-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.hero-section-btn:hover i {
  transform: translateX(5px);
  color: var(--green-color);
}

@media (max-width: 767.98px) {
  .hero-section-title {
    font-size: 25px !important;
    text-align: center;
  }

  .hero-section-subtitle {
    font-size: 0.7rem;
    display: block;
    text-align: center;
    margin: 0 auto 1rem;
  }

  .hero-section-btn {
    display: block;
    margin: 0 40px;
    padding: 12px 25px !important;
  }


}

/* ==========================================Hero section end  =====================================*/

/*================================================== Hero-section-slider start =================================== */
.stone-carousel .carousel-inner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.stone-carousel .carousel-control-prev,
.stone-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: #e4a857;
  border-radius: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.stone-carousel .carousel-control-prev-icon,
.stone-carousel .carousel-control-next-icon {
  background-image: none;
  color: white;
  font-size: 24px;
  line-height: 1;
}

.stone-carousel .carousel-control-prev-icon::before,
.stone-carousel .carousel-control-next-icon::before {
  content: '';
}

.stone-carousel .carousel-control-prev span,
.stone-carousel .carousel-control-next span {
  font-size: 28px;
  display: inline-block;
  transform: translateY(-2px);
}

/* ==================================================Hero-section-slider end  ===================================*/


/* ============================service section start ================================================== */

.hero-services-subtitle {
  font-family: "Nunito San", sans-serif;
  color: var(--orange-color1);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
}

.hero-services-title {
  font-size: 52px;
  color: var(--gray-color);
  font-weight: lighter;
  margin-bottom: 10px;
}

.hero-services-line {
  width: 100%;
  border-top: 2px solid #0000008a;
}

.hero-services-btn {
  background-color: #2c2c2c;
  color: var(--text-white);
  padding: 20px 52px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s ease;
  font-size: 18px;
}

.hero-services-btn:hover {
  background-color: var(--orange-color1);
  color: var(--text-white);
}

/* Card Styles */
.hero-services-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-services-card img {
  aspect-ratio: 16/6;
  width: 100%;
  height: 450px;
  display: block;
  transition: transform 0.5s ease;
}

.hero-services-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  /* dark transparent */
  color: #fff;
  text-align: center;
  transition: background-color 0.5s ease;
}

.hero-services-card:hover img {
  transform: scale(1.05);
}

.hero-services-card:hover .hero-services-overlay {
  background-color: var(--blur-color);
}


@media (max-width: 1088.98px) {
  .hero-services-subtitle {
    font-size: 15px;
  }

  .hero-services-title {
    font-size: 30px;

  }

  .hero-services-btn {
    padding: 12px 24px;
  }

  .hero-services-card img {
  aspect-ratio: 9/16;
}
}

/* ============================service section end ================================================== */

/* ===========================Marble section start============================================= */

.marble-about-section {
  font-family: 'Nunito San', sans-serif;
  overflow-x: hidden !important;
}

.about-img img {
  object-fit: cover;
  height: 100%;
}

.text-section {
  background-image: url('../Photos/Services/s4.jpg');
  /* Use your faint marble background */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--gray-color);
}

.text-orange {
  color: var(--blur-color);
  /* Adjust to match your orange */
}

.border-orange {
  border-color: var(--blur-color) !important;
}

.custom-list li {
  margin-bottom: 8px;
  font-weight: 500;
}

.custom-list i {
  font-size: 35px !important;
  line-height: 1;
}

.custom-list li i {
  font-size: 1.2rem;
  vertical-align: middle;
}

/* ===========================Marble section end============================================= */


/* ===============================Marble stone slider strat================================   */

.stone-slider-section {
  padding: 50px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.797), rgba(0, 0, 0, 0.808)), url(../Photos/Services/s7);
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-white);
}

.stone-title {
  text-transform: uppercase;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--blur-color);
  font-weight: 600;
  letter-spacing: 1px;
}

.stone-heading {
  font-family: 'Noto Sans', sans-serif;
  font-size: 42px;
  font-weight: lighter;
  margin: 15px 0 30px;
}

.stone-item {
  text-align: center;
}

.stone-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
  border: 3px solid var(--text-white);
}

.stone-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


.view-more-btn {
  background-color: var(--blur-color);
  border: none;
  padding: 10px 25px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.view-more-btn:hover {
  background-color: #fff;
  color: var(--blur-color);
}

/* Cursor grab style */
.swiper {
  cursor: grab;
}

/* ===============================Marble stone slider end  ================================ */

/* ==============================counter start============================  */
.world-section {
  padding: 60px 0;
  background-color: #fff;
}

.world-map-img {
  max-width: 100%;
  height: auto;
}

.counter-box {
  background: #f8f9fa;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.world-section1 h2{
  font-family: "Noto Sana" , sans-serif;
  color: var(--gray-color) !important;
}
.world-section1 p{
  font-family: "Nunito Sana" , sans-serif;
}
.counter-box h2 {
  font-size: 32px;
  font-weight: bold;
  color: black !important;
}

.counter-box p {
  margin: 0;
  color: var(--gray-color);
  font-weight: 600;
}

/* ==============================counter end  ============================*/
/* ================================Blog Slider start=============================  */

.blog-section {
  background: var(--white-color);
  color: #2c2c2c;
  padding: 60px 0;
}

.blog-heading {
  font-family: 'Noto Sans', sans-serif;
  font-size: 46px;
  font-weight: lighter;
}

.blog-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-color1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card {
  background: #f2eeeea3;
  border: none;
}

.blog-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-btn {
  padding: 12px 25px;
  border-radius: 0px;
  background-color: var(--orange-color1);
  border: 0px solid transparent;
}

.blog-btn:hover {
  background-color: var(--blur-color);
}

.category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--blur-color);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
}

.blog-date-comments {
  font-size: 13px;
  color: var(--orange-color1);
  text-transform: uppercase;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin: 8px 0;
  color: #2c2c2c;
  text-decoration: none;
}

.blog-title:hover {
  color: var(--orange-color);
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #2c2c2c;
  text-decoration: none;
  gap: 6px;
  margin-top: 10px;
}

.read-more-link:hover {
  color: var(--orange-color);
}

.read-more-icon {
  border: 1.5px solid transparent;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.read-more-link:hover .read-more-icon {
  border-color: var(--gray-color);
}

/*================================ Blog Slider end ============================= */

/*==================================== Footer start=============================  */

.footer-marblex {
  background-image: linear-gradient(rgba(0, 0, 0, 0.797), rgba(0, 0, 0, 0.808)), url(../Photos/Services/s7);
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.footer-marblex a.footer-link {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-marblex a.footer-link:hover {
  color: var(--blur-color);
}

/* Responsive background image for mobile */
@media (max-width: 768px) {
  .footer-marblex {
    background-image: linear-gradient(rgba(0, 0, 0, 0.797), rgba(0, 0, 0, 0.808)), url(../Photos/Services/s7);
  }
}

/*==================================== Footer end=============================  */