/* ===================================
   GLOBAL STYLES
=================================== */
body {
  font-family: 'Noto Sans', sans-serif;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===================================
   HEADER & NAVIGATION
=================================== */
.top-header {
  background-color: #880166;
  /* background-color: #111; */
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-img {
  height: 60px;
}

.main-nav .nav-link {
  color: #fff;
  font-weight: 600;
  margin: 0 0px;
  transition: color 0.3s ease;
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover {
  color: #ffd700;
}

/* ===== Call Button ===== */
.call-now .call-btn {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: #ffd700;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s ease, color 0.3s ease;
}

.call-now .call-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.call-now .call-btn:hover {
  background: #333;
  color: #ffd700;
}

/* ===================================
   BANNER
=================================== */
/* ===== Fixed Height Responsive Home Banner ===== */
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner .owl-carousel .item {
  position: relative;
  width: 100%;
}

.banner .owl-carousel .item img {
  width: 100%;
  height: 600px; /* fixed desktop height */
  object-fit: cover;
  display: block;
}

.banner .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.banner .owl-dot span {
  background: rgba(255, 255, 255, 0.6);
}

.banner .owl-dot.active span {
  background: #880166;
}

/* ===================================
   BUTTONS
=================================== */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-main:hover {
  background: #333;
  color: #ffd700;
}

/* ===================================
   GALLERY SECTION
=================================== */
.gallery-section .gallery-img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-section .gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.gallery-section h2 {
  font-weight: 700;
}

/* ===================================
   POWER SECTION
=================================== */
.power-section {
  background: #fff;
}

.power-section h2 {
  font-weight: 700;
}

.power-section p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* Offer Boxes */
.offer-box {
  background: #fafafa;
  transition: all 0.4s ease;
  border: 1px solid #eee;
}

.offer-box:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.offer-icon {
  font-size: 36px;
  color: #880166;
}

/* Section Image */
.section-img {
  width: 60%;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.section-img:hover {
  transform: scale(1.03);
}

/* ===================================
   FOOTER
=================================== */
.footer {
  font-family: 'Noto Sans', sans-serif;
  background-color: #111;
  color: #ccc;
}

.footer p,
.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #880166;
}

.footer h5 {
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links i {
  font-size: 12px;
  color: #880166;
  margin-right: 6px;
}

.footer-contact li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-contact i {
  color: #880166;
  margin-right: 8px;
}

.footer-social .social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ccc;
  transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
  background-color: #880166;
  color: #fff;
  transform: translateY(-3px);
}

.footer hr {
  opacity: 0.2;
}

/* ============================
   FOOTER BACKGROUND SECTION
===============================*/
.footer {
    position: relative;
    background: #000;
    overflow: hidden;
}

/* Background Image */
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://srgem.santoshmitraads.in/wp-content/uploads/2025/11/Women-Ring_1-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px) brightness(0.4);
    z-index: 0;
}

/* Dark Overlay */
.footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Ensure content stays above overlay */
.footer .container {
    position: relative;
    z-index: 2;
}


/* ============================
   NEWS LETTER SECTION
===============================*/
.newsletter-section {
    background: #201915; /* same dark brown as your screenshot */
}

/* Title */
.newsletter-title {
    color: #e7b16b; 
    font-weight: 700;
}

/* Subtitle */
.newsletter-sub {
    color: #cfcfcf;
    font-size: 14px;
}

/* Newsletter Wrapper */
.newsletter-box {
    border: 1px solid #fff;
    border-radius: 50px;
    max-width: 600px;
    width: 100%;
    background: transparent;
}

/* Email Input */
.newsletter-box input {
    background: transparent !important;
    color: #fff !important;
}

/* Placeholder Color */
.newsletter-box input::placeholder {
    color: #e2d9d0;
}

/* Subscribe Button */
.subscribe-btn {
    background: #e7b16b;
    color: #000;
    padding: 8px 25px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.subscribe-btn:hover {
    background: #f4c983;
}

/* ==============================
   OUR PRODUCTS PAGE CSS
   ============================== */


.inner-banner {
  position: relative;
  /* background: url('https://www.sr-gemz.com/img/Banner-1.jpg') center/cover no-repeat; */
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.inner-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.inner-banner h1 {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 1px;
}

/* Product Tabs */
.product-tabs {
  margin-top: 80px;
}

.nav-tabs {
  justify-content: center;
  border-bottom: 2px solid #880166;
}

.nav-tabs .nav-link {
  color: #880166;
  font-weight: 600;
  border: none;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
  font-size: 18px;
  padding: 12px 24px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  border-color: #880166;
  color: #fff;
  background: #880166;
}

/* Cards */
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-card h5 {
  margin: 15px 0;
  font-weight: 600;
  color: #880166;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}



/* ==============================
   OUR COMPANY PAGE CSS
   ============================== */
.company-section img {
  height: 380px;
  object-fit: cover;
}

.company-section p {
  line-height: 1.8;
  color: #333;
}

.company-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* ==============================
   CONTACT PAGE ENHANCEMENTS
   ============================== */

.inner-banner {
  height: 60vh;
  position: relative;
  overflow: hidden;
}

.inner-banner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.inner-banner h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px 14px;
}

.contact-form .form-control:focus {
  border-color: #880166;
  box-shadow: 0 0 5px rgba(136, 1, 102, 0.3);
}

.contact-info h5 {
  font-size: 16px;
  letter-spacing: 0.5px;
}

.contact-info p, .contact-info a {
  font-size: 15px;
  color: #444;
}

/* ==============================
   CONTACT INFO DESIGN UPDATE
   ============================== */
.contact-info .icon-box {
  width: 50px;
  height: 50px;
  background: #880166;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(136, 1, 102, 0.3);
  transition: all 0.3s ease;
}

.contact-info .icon-box:hover {
  background: #152732;
}

.contact-info h5 {
  font-size: 16px;
  margin-bottom: 3px;
}

.contact-info p,
.contact-info a {
  color: #444;
  font-size: 15px;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #880166;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #152732;
}


/* ===== NAVIGATION COLORS ===== */
/* ===== HAMBURGER ICON ===== */
/* ===== HAMBURGER ICON ===== */
.navbar-toggler {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 32px;
  background: none;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.hamburger-line {
  width: 26px;
  height: 3px;
  background-color: #fff; /* Visible on purple background */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animation when toggled */
.navbar-toggler.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.navbar-toggler.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===== NAVIGATION COLORS ===== */
.main-nav .nav-link {
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: #ffd700; /* Gold for hover/active */
}

/* ===== MOBILE MENU ===== */
@media (max-width: 767px) {
  .main-nav {
    display: none;
    width: 100%;
    background-color: #880166;
    position: absolute;
    top: 70px;
    left: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 999;
  }

  .main-nav.show {
    display: block;
  }

  .main-nav .nav {
    flex-direction: column;
    padding: 15px 0;
  }

  .main-nav .nav-item {
    margin: 10px 0;
  }

  .call-now {
    display: none;
  }
}



.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn-whatsapp:hover {
  background: #1ebc57;
  color: #fff;
}

.contact-box {
  background: #f8f9fa;
}

.product-details img {
  transition: transform 0.3s ease;
}

.product-details img:hover {
  transform: scale(1.05);
}



/* Top Bar Styling */
.sr-topbar {
    /* background: #DEAD6F;  */
    /* background: #ffcc8b;  */
    background: #ffe7cc; /* requested gold shade */
    color: #000000; /* black text */
    font-size: 15px;
    padding: 12px 0; /* longer bar */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Icons */
.sr-topbar i {
    color: #000000; /* black icons */
    font-size: 17px;
}

/* Text + Links */
.sr-topbar a, 
.sr-topbar span {
    color: #000000;
    text-decoration: none;
    font-weight: 600; /* thicker font */
}

/* .sr-topbar a:hover {
    color: #fff; 
} */

/* Spacing */
.sr-topbar .top-left,
.sr-topbar .top-right {
    gap: 8px;
}



.product-icon-wrapper {
    width: 105px;              /* Smaller circle */
    height: 105px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .35s ease;  /* Smooth hover animation */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #fff;
}

.product-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;  /* Image zoom animation */
}

/* Text below circle */
.product-icons-section h5 {
    font-size: .9rem;
    margin-top: .55rem;
    font-weight: 600;
}

/* Hover Effect (Beautiful & Clean) */
.product-icon-wrapper:hover {
    transform: translateY(-6px);        /* Lifts the circle */
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: #880166;              /* Accent border color */
}

.product-icon-wrapper:hover img {
    transform: scale(1.15);             /* Zoom image smoothly */
}



/* Background image for both sections */
/* .product-icons-section,
.about-section {
    background-image: url('/images/bg.jpg');
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
} */
/* ------------------------------
   PRODUCT BOX
------------------------------ */
.latest-collection .product-box {
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
    padding: 15px;
}

.latest-collection .product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ------------------------------
   IMAGE WRAPPER
------------------------------ */
.product-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

/* ------------------------------
   SECTION TITLE
------------------------------ */
.section-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}



/* Premium Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    background: rgba(255, 255, 255, 0.95);
}

.testimonial-img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}


