* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* why choose us styling starts here  */
/* ===============================
   Why Choose Section
================================ */

.why_choose_area {
    position: relative;
    padding: 20px 0;
    background: radial-gradient(circle at 80% 20%, #1c1c1c, #0f0f0f 70%);
    color: #ffffff;
}

/* Title */

.main_title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 90px;
}

.main_title h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: white;
}

.main_title p {
  font-size: 18px;
  color: #cfcfcf;
  line-height: 1.7;
}

/* Layout spacing */

.why_choose_inner {
  align-items: center;
}

/* ===============================
   Left Image
================================ */
/* 
.why_choose_image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
} */

.why_choose_image {
    position: relative;
    /* height: 98dvh; */
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    top: -105px;
}

/* .why_choose_image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
} */

.why_choose_image img {
    object-fit: cover;
    width: 100%;
    height: 80dvh;
    display: block;
    transition: transform 0.8s ease;
}

.why_choose_image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.6)
  );
}

.why_choose_image:hover img {
  transform: scale(1.05);
}

/* ===============================
   Cards Wrapper
================================ */

/* .why_choose_cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
} */

.why_choose_cards {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    top: -44px;
}

/* ===============================
   Glass Cards
================================ */

.why_choose_card {
  position: relative;
  padding: 40px;
  border-radius: 22px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 25px 50px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.04);

  transition: all 0.4s ease;
}

/* Gold glow on hover */

.why_choose_card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(248, 182, 0, 0.5),
    transparent,
    rgba(248, 182, 0, 0.4)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why_choose_card:hover::before {
  opacity: 1;
}

.why_choose_card:hover {
  transform: translateY(-8px);
}

/* ===============================
   Icon Styling
================================ */

.card_icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  background: rgba(248, 182, 0, 0.1);
  border: 1px solid rgba(248, 182, 0, 0.3);

  font-size: 22px;
  color: #F8B600;

  transition: all 0.4s ease;
}

.why_choose_card:hover .card_icon {
  background: #F8B600;
  color: #000000;
  transform: scale(1.1);
}

/* ===============================
   Text
================================ */

.why_choose_card h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.why_choose_card p {
  font-size: 15px;
  line-height: 1.7;
  color: #dcdcdc;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 992px) {

  .why_choose_cards {
    grid-template-columns: 1fr;
  }

  .main_title h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {

  .why_choose_area {
    padding: 100px 0;
  }

  .why_choose_card {
    padding: 30px;
  }

  .why_choose_image {
    margin-bottom: 50px;
  }
}

/* why choose us styling ends here */

/* product styling starts here */
/* =========================================
   FEATURED PRODUCTS — LUXURY GLASS SYSTEM
========================================= */

.product_area {
    padding: 20px 0;
    background: var(--bg-radial);
    position: relative;
}

/* ==============================
   Section Title
============================== */

.product_area .main_title {
    text-align: center;
    margin-bottom: 80px;
}

.product_area .main_title h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.product_area .main_title p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* ==============================
   Grid
============================== */

.product_inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* ==============================
   Product Card (Glass Standard)
============================== */

.product_card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 30px 70px rgba(0,0,0,0.4);

    transition: 0.4s ease;
}

/* Gold glow border */

.product_card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(248,182,0,0.5),
        transparent,
        rgba(248,182,0,0.3)
    );
    z-index: -1;
    opacity: 0;
    transition: 0.4s ease;
}

.product_card:hover {
    transform: translateY(-10px);
}

.product_card:hover::before {
    opacity: 1;
}

/* ==============================
   Image Area
============================== */

.product_image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.image_placeholder {
    width: 100%;
    height: 100%;
}

.image_placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.product_card:hover img {
    transform: scale(1.05);
}

/* ==============================
   Overlay
============================== */

.product_overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(15,15,15,0.85),
        rgba(15,15,15,0.95)
    );

    backdrop-filter: blur(20px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 40px;

    opacity: 0;
    transition: 0.4s ease;
}

.product_card:hover .product_overlay {
    opacity: 1;
}

/* Overlay text */

.overlay_title {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.overlay_description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 90%;
}

/* Gold Button */

.btn_view_product {
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--accent-gold);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.4s ease;
}

.btn_view_product:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(248,182,0,0.5);
}

/* ==============================
   Bottom Content
============================== */

.product_content {
    padding: 30px;
    text-align: center;
}

.product_title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.product_link {
    font-size: 14px;
    color: var(--accent-gold);
    text-decoration: none;
    transition: 0.3s ease;
}

.product_link:hover {
    letter-spacing: 1px;
}

/* =========================================
   Large Top Title (Product Name Above Image)
========================================= */

.product_card > .overlay_title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-primary);
    padding: 25px 25px 0;
    margin: 0;
    text-align: center;
}

/* =========================================
   Overlay Title (Inside Hover Overlay)
========================================= */

.product_overlay .overlay_title {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 18px;
}

/* ==============================
   Responsive
============================== */

@media (max-width: 768px) {
    .product_area .main_title h2 {
        font-size: 32px;
    }

    .product_inner {
        grid-template-columns: 1fr;
    }
}


/* product styling ends here */



/* ===============================
   Global Styles
================================ */

/* ===============================
    services section styles
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 20%, #1e1e1e, #0f0f0f 70%);
  color: #ffffff;
  overflow-x: hidden;
}

/* ===============================
   Section
================================ */

.services-section {
  position: relative;
  padding: 20px 0;
}

.services-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.services-header h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.services-header p {
  font-size: 18px;
  color: #cfcfcf;
  line-height: 1.7;
}

/* ===============================
   Cards Wrapper
================================ */

.cards-wrapper {
  position: relative;
}

/* ===============================
   Glass Card
================================ */

.service-card {
    position: sticky;
    top: 8%;
    width: 88%;
    margin: 0 auto 50px;
    padding: 70px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: all 0.5s ease;
}
/* Subtle gradient border glow */

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(248, 182, 0, 0.4),
    transparent,
    rgba(248, 182, 0, 0.3)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.01);
}

/* ===============================
   Split Layout
================================ */

.card-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 70px;
}

/* ===============================
   Image
================================ */

.card-image {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.6)
  );
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.08);
}

/* ===============================
   Content
================================ */

.label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F8B600;
  margin-bottom: 25px;
  display: block;
}

.service-card h3 {
  font-size: 40px;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.service-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #dcdcdc;
  margin-bottom: 45px;
  max-width: 600px;
}

/* CTA */

.cta {
  font-size: 16px;
  font-weight: 500;
  color: #F8B600;
  text-decoration: none;
  position: relative;
  transition: all 0.4s ease;
}

.cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #F8B600;
  transition: width 0.4s ease;
}

.cta:hover::after {
  width: 100%;
}

.cta:hover {
  color: #ffffff;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1024px) {

  .service-card {
    padding: 60px;
  }

  .card-image {
    height: 340px;
  }

  .service-card h3 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {

  .services-header h2 {
    font-size: 32px;
  }

  .service-card {
    width: 92%;
    padding: 40px 30px;
    margin-bottom: 100px;
  }

  .card-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .card-image {
    height: 240px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .service-card p {
    font-size: 15px;
  }
}

/* service section style ends here */



/* gallery section styles starts here   */
/* ===============================
   Gallery Section
================================ */

.gallery_section {
  padding: 20px 0;
  background: radial-gradient(circle at 30% 80%, #1c1c1c, #0f0f0f 70%);
  color: #ffffff;
}

/* Header */

.gallery_header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.gallery_header h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.gallery_header p {
  font-size: 18px;
  color: #cfcfcf;
  line-height: 1.7;
}

/* ===============================
   Grid Layout
================================ */

.gallery_grid {
  width: 88%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===============================
   Gallery Item
================================ */

.gallery_item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: 0 30px 60px rgba(0,0,0,0.4);

  cursor: pointer;
  transition: all 0.5s ease;
}

/* Image */

.gallery_item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

/* Overlay */

.gallery_overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;
  padding: 30px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2)
  );

  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery_overlay h4 {
  font-size: 20px;
  font-weight: 500;
}

/* Hover Effects */

.gallery_item:hover img {
  transform: scale(1.1);
}

.gallery_item:hover .gallery_overlay {
  opacity: 1;
}

.gallery_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1024px) {
  .gallery_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .gallery_section {
    padding: 100px 0;
  }

  .gallery_header h2 {
    font-size: 32px;
  }

  .gallery_grid {
    grid-template-columns: 1fr;
    width: 92%;
  }

  .gallery_item img {
    height: 240px;
  }
}

/* gallery section ends here */



/* testimonials section starts here */
/* ===============================
   Testimonial Section
================================ */

.testimonial_section {
  padding: 50px 0;
  background: radial-gradient(circle at 70% 30%, #1a1a1a, #0f0f0f 70%);
  color: #ffffff;
}

/* Header */

.testimonial_header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 0px;
  padding: 0 20px;
}

.testimonial_header h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.testimonial_header p {
  font-size: 18px;
  color: #cfcfcf;
  line-height: 1.7;
}

/* ===============================
   Grid
================================ */

.testimonial_grid {
  width: 88%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ===============================
   Card Design
================================ */

.testimonial_card {
  position: relative;
  padding: 50px;
  border-radius: 24px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.04);

  transition: all 0.4s ease;
}

/* Gold glow on hover */

.testimonial_card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(248, 182, 0, 0.5),
    transparent,
    rgba(248, 182, 0, 0.4)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial_card:hover::before {
  opacity: 1;
}

.testimonial_card:hover {
  transform: translateY(-10px);
}

/* Quote Icon */

.quote_icon {
  font-size: 60px;
  color: #F8B600;
  line-height: 1;
  margin-bottom: 25px;
  font-weight: 700;
}

/* Text */

.testimonial_card p {
  font-size: 17px;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 35px;
}

/* Client Info */

.client_info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.client_info span {
  font-size: 14px;
  color: #b5b5b5;
}

/* ===============================
   Review Button (Inside Card)
================================ */

.review_btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 22px;
  border-radius: 12px;

  background: rgba(248, 182, 0, 0.1);
  border: 1px solid rgba(248, 182, 0, 0.4);

  color: #F8B600;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  transition: all 0.4s ease;
}

.review_btn:hover {
  background: #F8B600;
  color: #000;
  transform: translateY(-3px);
}

/* ===============================
   Bottom CTA Button
================================ */

.testimonial_cta {
  text-align: center;
  margin-top: 80px;
}

.google_main_btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;

  background: #F8B600;
  color: #000;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 15px 40px rgba(248, 182, 0, 0.3);

  transition: all 0.4s ease;
}

.google_main_btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(248, 182, 0, 0.5);
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1024px) {
  .testimonial_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .testimonial_section {
    padding: 100px 0;
  }

  .testimonial_header h2 {
    font-size: 32px;
  }

  .testimonial_grid {
    grid-template-columns: 1fr;
    width: 92%;
  }

  .testimonial_card {
    padding: 35px;
  }
}


/* testimonials section ends here */




/* brand sliding section starts here  */

/* =========================================
   BRANDS SECTION — LUXURY MARQUEE
========================================= */

.brands_section {
    padding: 50px 0;
    background: radial-gradient(circle at 30% 30%, #1a1a1a, #0f0f0f 70%);
    overflow: hidden;
    text-align: center;
}

/* Header */

.brands_header {
  margin-bottom: 70px;
}

.brand_label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F8B600;
  display: inline-block;
  margin-bottom: 15px;
}

.brands_header h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 20px;
}

.brands_header p {
  font-size: 17px;
  color: #dcdcdc;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Slider */

.brands_slider {
  overflow: hidden;
  position: relative;
}

.brands_track {
  display: flex;
  gap: 100px;
  animation: scrollBrands 50s linear infinite;
}

/* Floating Text */

.brand_text {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;

  color: rgba(255,255,255,0.5);

  /* Gold shimmer effect */
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.5) 0%,
    rgba(255,255,255,0.5) 40%,
    #F8B600 50%,
    rgba(255,255,255,0.5) 60%,
    rgba(255,255,255,0.5) 100%
  );

  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shimmer 6s linear infinite;
}

/* Infinite Scroll */

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Gold Shimmer Animation */

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* Responsive */

@media (max-width: 768px) {
  .brands_track {
    gap: 60px;
  }

  .brand_text {
    font-size: 16px;
  }
}
/* brand sliding section ends here */


/* footer section styles starts here  */

/* ===============================
   Footer Section
================================ */

.main_footer {
  background: radial-gradient(circle at 50% 100%, #1a1a1a, #0f0f0f 70%);
  color: #ffffff;
  padding-top: 120px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer_container {
  width: 88%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 80px;
}

/* Column */

.footer_col h3,
.footer_col h4 {
  margin-bottom: 25px;
}

.footer_logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.footer_col p {
  font-size: 15px;
  line-height: 1.8;
  color: #cfcfcf;
  margin-bottom: 20px;
}

/* Links */

.footer_col ul {
  list-style: none;
}

.footer_col ul li {
  margin-bottom: 15px;
}

.footer_col ul li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer_col ul li a:hover {
  color: #F8B600;
  padding-left: 6px;
}

/* Google Button */

.footer_google_btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  border-radius: 50px;

  background: rgba(248, 182, 0, 0.15);
  border: 1px solid rgba(248, 182, 0, 0.4);

  color: #F8B600;
  text-decoration: none;
  font-weight: 500;

  transition: all 0.4s ease;
}

.footer_google_btn:hover {
  background: #F8B600;
  color: #000;
  transform: translateY(-4px);
}

/* Bottom Bar */

.footer_bottom {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: #aaaaaa;
}
/* ===============================
   Footer Contact Section
================================ */

.footer_contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.footer_phone {
  font-size: 16px;
  font-weight: 600;
  color: #F8B600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer_phone:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.open_status {
    font-size: 14px;
    color: #9cff9c;
    position: relative;
    padding-left: 18px;
    margin-left: 8px;
}

/* small green live dot */

.open_status::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #00ff6a;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff6a;
}
/* ===============================
   Responsive
================================ */

@media (max-width: 992px) {
  .footer_container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer_container {
    grid-template-columns: 1fr;
  }

  .main_footer {
    padding-top: 80px;
  }
}
/* footer section ends here */


/* gmb section starts here */

/* =========================================
   GOOGLE BUSINESS PROFILE SECTION
========================================= */

.gmb_section {
  padding: 20px 0;
  background: radial-gradient(circle at 60% 40%, #1a1a1a, #0f0f0f 70%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.gmb_container {
  width: 88%;
  margin: 0 auto;
}

.gmb_card {
  position: relative;
  padding: 100px 80px;
  border-radius: 36px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 60px 120px rgba(0,0,0,0.6);

  text-align: center;
  overflow: hidden;
  transition: 0.4s ease;
}

/* Gold Glow Border */

.gmb_card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 36px;
  background: linear-gradient(
    135deg,
    rgba(248,182,0,0.6),
    transparent,
    rgba(248,182,0,0.4)
  );
  z-index: -1;
  opacity: 0.8;
}

/* Hover Lift */

.gmb_card:hover {
  transform: translateY(-12px);
}

/* Content */

.gmb_label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F8B600;
  display: inline-block;
  margin-bottom: 20px;
}

.gmb_content h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 25px;
}

.gmb_content p {
  font-size: 18px;
  line-height: 1.9;
  color: #dcdcdc;
  max-width: 700px;
  margin: 0 auto 35px;
}

.gmb_rating {
  font-size: 22px;
  color: #F8B600;
  margin-bottom: 40px;
}

.gmb_rating span {
  font-size: 16px;
  color: #ffffff;
  margin-left: 10px;
}

/* CTA Button */

.gmb_btn {
  display: inline-block;
  padding: 18px 48px;
  border-radius: 50px;
  background: #F8B600;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
}

.gmb_btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(248,182,0,0.5);
}

/* Responsive */

@media (max-width: 992px) {

  .gmb_card {
    padding: 60px 40px;
  }

  .gmb_content h2 {
    font-size: 32px;
  }

  .gmb_content p {
    font-size: 16px;
  }

}

/* gmb section ends here */