h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Oswald", sans-serif;
  font-weight: 600;
}
p {
  font-family: "Poppins", "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
div,
span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HERO SECTION START */
.carousel {
  margin-top: 0px;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.carousel .list {
  height: 100%;
  position: relative;
}

.carousel .list::before {
  position: absolute;
  width: var(--w-image);
  height: 100%;
  content: "";
  top: 0;
  left: calc(100% - calc(var(--w-image) * var(--calculate)));
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  z-index: 10;
  pointer-events: none;
}

.carousel .list::after {
  position: absolute;
  top: 50px;
  left: 50px;
  content: "";
  background-color: red;
  width: 400px;
  height: 300px;
  z-index: 10;
  pointer-events: none;
  border-radius: 20px 50px 110px 230px;
  filter: blur(150px);
  opacity: 0.6;
}

.carousel .list .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel .list .item .image {
  width: var(--w-image);
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(100% - calc(var(--w-image) * var(--calculate)));
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  font-weight: 500;
}

.carousel .list .item .image img {
  width: 90%;
  height: 400px;
  margin-bottom: 20px;
  filter: drop-shadow(0 150px 50px #9e0c0c55);
  border-radius: 100%;
}

.carousel .list .item .image figcaption {
  font-weight: bold;
  font-size: 1.3em;
  text-align: right;
  margin-bottom: 30px;
  width: 70%;
}

.carousel .list .item .main-content {
  height: 100%;
  display: grid;
  grid-template-columns: calc(100% - calc(var(--w-image) * var(--calculate)));
}

.carousel .list .item .main-content .content {
  padding: 150px 20px 20px 80px;
}

.carousel .list .item .main-content .content h2 {
  font-size: 3em;
}

.carousel .list .item .main-content .content .price {
  font-size: 2em;
  margin: 20px 0;
}

.carousel .list .item .main-content .content .addToCard {
  background-color: #4f8b69;
  color: #fff;
  padding: 10px 30px;

  font-size: large;
  font-weight: 500;
  border-radius: 30px;
  border: none;
  margin-top: 20px;
}

.arrows {
  position: absolute;
  bottom: 20px;
  width: calc(100% - calc(var(--w-image) * var(--calculate)));
  display: grid;
  grid-template-columns: repeat(2, 50px);
  grid-template-rows: 50px;
  justify-content: end;
  gap: 10px;
}

.arrows button {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: #fff;

  font-size: large;
  font-weight: bold;
  line-height: 0;
  box-shadow: 0 10px 40px #5555;
  cursor: pointer;
  transition: 0.5s;
}

.arrows button:hover {
  background-color: #d6a54a;
}

.carousel .list .item {
  display: none;
}

.carousel .list .item.active,
.carousel .list .item.other_1,
.carousel .list .item.other_2 {
  display: block;
}

.carousel .list .item.active {
  z-index: 2;
}

.carousel .list .item.other_1,
.carousel .list .item.other_2 {
  pointer-events: none;
}

.carousel .list .item.active .main-content {
  animation: showContent 1s ease-in-out 1 forwards;
}

@keyframes showContent {
  from {
    clip-path: circle(0% at 70% 50%);
  }
  to {
    clip-path: circle(100% at 70% 50%);
  }
}

.next .item.other_1 {
  z-index: 1;
}

.next .item .image img,
.next .item .image figcaption {
  animation: effectNext 0.5s ease-in-out 1 forwards;
}

@keyframes effectNext {
  from {
    transform: translateX(calc(var(--transform-from)));
  }
  to {
    transform: translateX(calc(var(--transform-from) - var(--w-image)));
  }
}

.next .item.active .image {
  --transform-from: var(--w-image);
}

.next .item.other_1 .image {
  z-index: 3;
  --transform-from: 0px;
  overflow: hidden;
}

.next .item.other_2 .image {
  z-index: 3;
  --transform-from: calc(var(--w-image) * 2);
}

.arrows {
  z-index: 10;
}

/* prev */

.prev .list .item .image img,
.prev .list .item .image figcaption {
  animation: effectPrev 0.5s ease-in-out 1 forwards;
}

@keyframes effectPrev {
  from {
    transform: translateX(calc(var(--transform-from)));
  }
  to {
    transform: translateX(calc(var(--transform-from) + var(--w-image)));
  }
}

.prev .list .item.active .image {
  --transform-from: calc(var(--w-image) * -1);
  overflow: hidden;
}

.prev .list .item.other_1 .image {
  --transform-from: 0px;
  z-index: 3;
}

.prev .list .item.other_2 .image {
  z-index: 3;
  --transform-from: var(--w-image);
}

.prev .list .item.other_2 .main-content {
  opacity: 0;
}

@media screen and (max-width: 1023px) {
  :root {
    --calculate: 1;
    --w-image: 400px;
  }
  .carousel .list .item .main-content .content h2 {
    font-size: 3em;
  }
}

@media screen and (max-width: 767px) {
  .carousel .list .item .image {
    width: 100%;
    left: 0;
    justify-content: center;
  }
  .carousel .list .item .image figcaption {
    color: #fff;
    width: 100%;
    text-align: center;
  }
  .carousel .list .item .main-content .content {
    display: none;
  }
  .arrows {
    left: 50%;
    justify-content: center;
  }
}

/* hero section end*/
:root {
  --border-color: #fff5;
  --w-image: 500px;
  --calculate: calc(3 / 2);
}
.nav-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: background 0.3s;
}

.nav-icon:hover {
  background: #d6a54a;
  color: black;
}

.nav-left {
  left: 10px;
}
.nav-right {
  right: 10px;
}

.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 15px;
  height: 15px;
  background: gray;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot .active {
  background: #ff4081;
}

@media (min-width: 769px) {
  .slide img {
    width: 50%;
  }
  .dots-container {
    gap: 20px;
  }
}

/*hero section end*/

/*about section for main section*/

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
}
.text-content {
  flex: 1;
  padding: 20px;
  animation: fadeInLeft 1s ease-in-out;
}
.image-content {
  flex: 1;
  display: flex;
  gap: 10px;
  justify-content: center;
  animation: fadeInRight 1s ease-in-out;
}
.image-content img {
  width: 45%;
  border-radius: 10px;
  transition: transform 0.3s;
}
.image-content img:hover {
  transform: scale(1.1);
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ✅ Mobile View (Text Upar & Images Neeche) */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
    padding: 30px 5%;
  }

  .image-content {
    flex-direction: column;
    align-items: center;
  }

  .image-content img {
    display: none;
  }

  .text-content h2 {
    font-size: 1.8rem;
  }

  .text-content p {
    font-size: 0.9rem;
  }
}
/* about section end*/

/* features section start*/
.features {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 50px 20px;
  background: #1a4e8a;
  color: #fff;
  text-align: center;
  flex-wrap: wrap;
}

.feature {
  width: 30%;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
}

.feature img {
  width: 50px;
  margin-bottom: 10px;
}

.feature h2 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 80%;
    margin-bottom: 20px;
  }
}

/* features section end  */
/* 
our services css strat */
.services-section-2025 {
  padding: 50px 3%;
  text-align: center;
}

.services-title-2025 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  position: relative;
}

.services-title-2025::after {
  content: "";
  width: 100px;
  height: 3px;
  background-color: #7f0505;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

.services-container-2025 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-box-2025 {
  background-color: #fff;
  padding: 20px;

  transition: transform 0.3s;
}

.service-box-2025 img {
  width: 100%;
  max-width: 380px;
  height: 320px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-box-2025 h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.service-box-2025 p {
  font-size: 16px;
  color: #252525;
  line-height: 1.6;
}

/* Hover Effect */
.service-box-2025:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-container-2025 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-container-2025 {
    grid-template-columns: 1fr;
  }
}

/* our services section end  */

/* home about us section start  */
.gredge-about-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

/* When visible */
.gredge-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Left side */
.gredge-about-left {
  flex: 1;
  position: relative;
  min-width: 300px;
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s ease-in-out;
}
.gredge-about-left.gredge-visible {
  opacity: 1;
  transform: translateX(0);
}

.gredge-about-main-img {
  width: 100%;
  border-radius: 5px;
  display: block;
}

.gredge-about-small-img {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 5px solid #fff;
}

.gredge-about-info-box {
  position: absolute;
  bottom: -40px;
  left: 70px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 400px;
  border-radius: 5px;
  justify-content: center;
  justify-items: center;
}

.gredge-about-info-box h3 {
  color: #333333;
  font-size: 2rem;
  margin: 0;
}

.gredge-about-info-box p {
  font-size: 0.95rem;
  color: #333;
  margin-top: 5px;
}

/* Right side */
.gredge-about-right {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s ease-in-out;
  transition-delay: 0.3s;
}
.gredge-about-right.gredge-visible {
  opacity: 1;
  transform: translateX(0);
}

.gredge-about-subtitle {
  color: #333333;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.gredge-about-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 20px;
  text-align: center;
}

.gredge-about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
  text-align: justify;
}

/* Buttons */
.gredge-about-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.gredge-btn-primary {
  background: #6e2e1e;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.gredge-btn-primary a {
  color: #fff;
  text-decoration: none;
}

.gredge-btn-primary:hover {
  background: #d6a54a;
}

.gredge-btn-play {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
}

.gredge-btn-play i {
  width: 40px;
  height: 40px;
  background: #009688;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
  .gredge-about-section {
    flex-direction: column;
    padding: 20px;
  }
  .gredge-about-title {
    font-size: 1.6rem;
  }
  .gredge-about-text {
    font-size: 1.2rem;
  }

  .gredge-about-info-box {
    position: relative;
    bottom: 0;
    margin-top: 20px;
    left: 1px;
  }

  .gredge-about-small-img {
    position: relative;
    top: -20px;
    left: 0;
    width: 120px;
  }
}
@media (max-width: 768px) {
  .gredge-about-section {
    flex-direction: column-reverse;
    padding: 20px;
  }

  .gredge-about-left {
    margin-top: 20px;
  }
}

/* home about us section end  */

/* our products start */
.our-products-categories-section_2025_ui {
  padding: 30px 2%;

  overflow: hidden;
}

.our-products-categories-title-wrapper_2025_ui {
  text-align: center;
  margin-bottom: 10px;
}

.our-products-categories-title_2025_ui {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  color: #333333;
  margin-top: 40px;
}

.our-products-categories-title_2025_ui::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 60px;
  height: 4px;
  background-color: rgb(0, 0, 0);
  border-radius: 4px;
}

.our-products-categories-grid_2025_ui {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* gap: 20px; */
  margin-top: 20px;
  margin-bottom: 20px;
}

.our-products-categories-card_2025_ui {
  background-color: #fff;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  border-radius: 5px;
  width: 24%;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
  margin: auto;
  margin-top: 20px;
}

.our-products-categories-card_2025_ui img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
  border: 1px solid rgb(247, 247, 247);
  border-radius: 5px;
}

.our-products-categories-card_2025_ui.visible-left {
  opacity: 1;
  transform: translateX(0);
  animation: slideInLeft_2025_ui 0.8s ease forwards;
}

.our-products-categories-card_2025_ui.visible-right {
  opacity: 1;
  transform: translateX(0);
  animation: slideInRight_2025_ui 0.8s ease forwards;
}

.our-products-categories-card_2025_ui.visible-center {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp_2025_ui 0.8s ease forwards;
}

@keyframes slideInLeft_2025_ui {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight_2025_ui {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp_2025_ui {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.our-products-categories-name_2025_ui {
  font-size: 20px;
  font-weight: 600;
  color: #333; /* Blue color similar to screenshot */
  text-align: center;
  margin: 15px 0 20px;
  text-decoration: none;
  letter-spacing: 0.3px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.our-products-categories-card_2025_ui:hover
  .our-products-categories-name_2025_ui {
  color: #d6a54a; /* Optional hover effect */
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .our-products-categories-card_2025_ui {
    width: 100%;
  }

  .our-products-categories-grid_2025_ui {
    gap: 20px;
  }

  .our-products-categories-section_2025_ui {
    padding: 40px 20px;
  }

  .our-products-categories-title_2025_ui {
    font-size: 24px;
  }
  .our-products-categories-card_2025_ui img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* our products section end  */

/* why choose us section start  */

.wcu_2025 {
  --wcu-accent: #6e2e1e;
  --wcu-text: #6e2e1e;
  --wcu-muted: #475569;
  --wcu-bg: #ffffff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--wcu-bg);
  color: var(--wcu-text);
  padding: 48px 20px;
}

.wcu_2025 .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading */
.wcu_2025 .title {
  text-align: center;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #333333;
}

/* Centered border under heading */
.wcu_2025 .title-bar {
  width: 90px; /* center border width */
  height: 4px; /* border thickness */
  background: #333333;
  border-radius: 999px;
  margin: 14px auto 36px; /* centers it */
}

/* 4 Feature items grid */
.wcu_2025 .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Card */
.wcu_2025 .item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 12px;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.wcu_2025 .item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.08);
}

/* Icon wrapper */
.wcu_2025 .icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 14px;
  background: rgba(11, 42, 107, 0.08); /* tint of accent */
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.wcu_2025 .icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--wcu-accent);
}

/* One-word label */
.wcu_2025 .label {
  font-size: clamp(14px, 2.6vw, 18px);
  font-weight: 700;
  text-transform: uppercase; /* ensures one-word punchy look */
  letter-spacing: 0.8px;
  color: var(--wcu-accent);
}

/* Responsiveness */
@media (max-width: 900px) {
  .wcu_2025 .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .wcu_2025 {
    padding: 38px 16px;
  }
  .wcu_2025 .grid {
    grid-template-columns: 1fr;
  }
}

/* why choose us section end  */
/* New Arrivals Slider start here */

/* our most popular products */
.home-populor-section {
  margin-top: 50px;
  background: #f5f5f5;
  padding: 2rem;
  text-align: center;
}

.home-populor-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333333;
}

.home-populor-border {
  width: 80px;
  height: 4px;
  background: #333333;
  margin: 0 auto 2rem;
  border-radius: 4px;
}

.home-populor-carousel {
  position: relative;
  overflow: hidden;
}

.home-populor-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}

.home-populor-product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 100%;
  max-width: 100%;
  flex: 0 0 auto;
  text-align: center;
  padding-bottom: 1rem;
  cursor: pointer;
}

.home-populor-product-card img {
  width: 100%;
  height: 350px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.home-populor-product-card a {
  text-decoration: none;
}

.home-populor-product-name:hover {
  color: #d6a54a;
}

.home-populor-product-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: #333;
}

.home-populor-product-sub {
  font-size: 0.9rem;
  color: #777;
}

.home-populor-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #6e2e1e;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #fff;
}

.home-populor-arrow.left {
  left: 10px;
}

.home-populor-arrow.right {
  right: 10px;
}

/* Desktop: Show 4 items */
@media (min-width: 992px) {
  .home-populor-product-card {
    min-width: calc(25% - 1rem);
    max-width: calc(25% - 1rem);
  }
}

/* Tablet: Show 2 items */
@media (min-width: 600px) and (max-width: 991px) {
  .home-populor-product-card {
    min-width: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

/* Mobile: Show 1 item */
@media (max-width: 599px) {
  .home-populor-product-card {
    min-width: 100%;
    max-width: 100%;
  }
}

/* New Arrivals Slider End here */

/* whatsapp and phone icon section with arrow  start   */
.scroll-top {
  z-index: 100;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.scroll-top.show {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-top.show {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-icons {
  position: fixed;
  right: 15px;
  top: 70%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

/* Common icon style */
.floating-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

.phone-icon {
  background-color: #4285f4;
}

.whatsapp-icon {
  background-color: #25d366;
}

/* Responsive visibility */
@media (min-width: 768px) {
  .phone-icon {
    display: none;
  }
}

a .fab.fa-whatsapp {
  color: #ffffff;
  font-size: 24px;
}

/* whatsapp and phone icon section end  */
