* {
  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 */


/* products styling starts here  */

/* Product Section Styles */
.product_area {
    padding: 20px 0;
    background-color: #0f0f0f;
    position: relative;
}

.product_area .main_title {
    text-align: center;
    margin-bottom: 60px;
}

.product_area .main_title h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.product_area .main_title h2:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%);
}

.product_area .main_title p {
    font-size: 16px;
    color: #a0a0a0;
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.7;
    font-weight: 300;
}

.product_inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product_card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.3);
}

.product_image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image_placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image_placeholder img{ 
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image_placeholder:before {
    content: "Product Image";
    color: #333;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}

.product_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}

.product_card:hover .product_overlay {
    opacity: 1;
}
.overlay_title {
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

h2 {
    font-size: 30px;
}

.overlay_description {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 80%;
}

.btn_view_product {
    padding: 10px 25px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn_view_product:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.product_content {
    padding: 25px;
    text-align: center;
}

.product_title {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.product_link {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.product_link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product_area .main_title h2 {
        font-size: 32px;
    }
    
    .product_inner {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product_area {
        padding: 80px 0;
    }
    
    .product_area .main_title h2 {
        font-size: 28px;
    }
    
    .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
================================ */


.brands_section {
    padding: 6px 0;
    background: radial-gradient(circle at 50% 50%, #1a1a1a, #0f0f0f 70%);
    color: #ffffff;
    overflow: hidden;
}

/* Header */

.brands_header {
  text-align: center;
  margin-bottom: 70px;
}

.brands_header h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.brands_header p {
  color: #cfcfcf;
  font-size: 16px;
}

/* ===============================
   Slider
================================ */

.brands_slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.brands_track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;

  animation: scrollLeft 25s linear infinite;
}

/* Infinite scroll animation */

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Logo */

.brand_logo {
  flex: 0 0 auto;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px 40px;

  border-radius: 16px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.4s ease;
}

.brand_logo img {
  max-height: 40px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.4s ease;
}

/* Hover effect */

.brand_logo:hover {
  transform: translateY(-6px);
  border: 1px solid rgba(248,182,0,0.4);
}

.brand_logo:hover img {
  filter: grayscale(0%) brightness(1);
}
/* 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;
  gap: 10px;
}

.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 */


