/* Container */

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("./images/home-img/bg.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

 
  box-sizing: border-box;
}
/* Default (desktop) */
.hero-section {
  padding-top: 450px;  /* increased from 200px */
  padding-bottom: 330px;
}

/* Mobile (already defined) */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px 60px 15px;
    height: auto;
    min-height: 100vh;
  }
}
@media (max-width: 768px) {
  .mantra-marquee{
    margin-top: -20px;
  }
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-container {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffb400;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffb400;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  background: #ff5722;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: white;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Animation classes */
.animate-fade {
  animation: fadeIn 1.5s ease forwards;
}

.animate-slide {
  animation: slideUp 1.5s ease forwards;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px 60px 15px;
    height: auto;
    min-height: 100vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }
}


.circle-image {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Full rotating border */
.circle-image {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating darker outline */
.circle-image::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: #ffb400;   /* darker golden */
  border-right-color: #ffb400;
  animation: spin 3s linear infinite;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* rotation animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Base styles for animation */
.hero-title, 
.hero-subtitle, 
.hero-text, 
.hero-btn, 
.circle-image {
  opacity: 0;                /* hidden at start */
  transform: translateY(20px); /* slight slide-up effect */
  animation-fill-mode: forwards; /* stay visible after animation */
}

/* Title animation */
.hero-title {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}

/* Subtitle animation */
.hero-subtitle {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.5s;
}

/* Paragraph animation */
.hero-text {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 2.5s;
}

/* Button animation */
.hero-btn {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 3.5s;
}

/* Circle image animation */
.circle-image {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 4.5s;
}

/* Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.mantra-marquee {
  color: gold;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 30px; /* space between marquee and heading */
}

.mantra-container {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.mantra-center {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-center 10s linear infinite;
  font-size: 20px; /* adjust as needed */
}

@keyframes scroll-center {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Ensure header & dropdowns always stay on top */

.hero-overlay {
    z-index: 1;  /* keep it behind header & dropdown */
}
/* Fix: allow dropdown to show above hero overlay */
.hero-section .hero-overlay {
  z-index: 0; /* push overlay behind */
}

.hs_header_Wrapper,
.hs_navigation_header_wrapper {
  z-index: 1001; /* keep header above hero overlay only */
}







/* service section*/
.services-header {
    text-align: center;
    margin-bottom: 30px;
}
.services-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.services-header p {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Card Style */
.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Card Image */
.service-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Card Content */
.service-body {
    padding: 15px;
    flex: 1;
}
.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.service-desc {
    font-size: 0.95rem;
    color: #666;
}

/* View More Button */
.view-more-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}
.view-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background: orangered;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.view-more-btn:hover {
    background: #e55300;
}

.hs_service_main_box_wrapper {
    background-size: cover;
    background-position: center;
    height: 250px; /* adjust as needed */
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect */
.hs_service_main_box_wrapper:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Click effect */
.hs_service_main_box_wrapper:active {
    transform: scale(0.98);
    filter: brightness(0.9);
}

/* Optional overlay fade on hover */
.hs_service_main_box_wrapper .btc_step_overlay {
    transition: background-color 0.3s ease;
}

.hs_service_main_box_wrapper:hover .btc_step_overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Style for the mobile language selector */
.language-selector {
    display: none; /* hidden by default */
    margin-left: 50px !important;
}

@media (max-width: 767px) {
    .language-selector {
        display: inline-block; /* show only on mobile */
    }
    /* Hide login & basket on mobile */
    .cart_login_wrapper {
        display: none !important;
    }
}


/* Hide phone, show language on mobile */
@media (max-width: 767px) {
    .mobile-phone-or-language .phone-text {
        display: none !important;
    }
    .mobile-phone-or-language .language-dropdown {
        display: block;
    }
    .mobile-phone-or-language .language-dropdown select {
        padding: 5px 10px;
        border-radius: 5px;
        border: none;
        font-size: 14px;
        color: #000;
    }
}

/* Show phone, hide language on desktop */
@media (min-width: 768px) {
    .mobile-phone-or-language .language-dropdown {
        display: none;
    }
}

.btn-primary {
  background-color: #ff6600;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;

}

.btn-primary:hover {
  background-color: black;
  text-decoration: none;
  color: white;
}




