@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #422c78;
  --secondary-color: #74be42;
  --light-font: #fff;
  --light-gray: #eeebeb;
}

* {
  font-family: "Poppins", sans-serif;
}

/* global css  */

.primary-text {
  color: var(--primary-color);
}

.secondary-text {
  color: var(--secondary-color);
}

.theme-primary-bg {
  background-color: var(--primary-color);
  color: white;
  border-radius: 5px;
  padding: 2px;
}
.theme-primary-bg1 {
  background-color: var(--primary-color);
}

.theme-dark-btn {
  border-radius: 50px;
  background-color: var(--primary-color);
  text-decoration: none;
  box-shadow: 4px 5px 8px #80808063;
  padding: 7px 17px;
  color: var(--light-font);
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
  display: inline-block;
}

.theme-dark-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0)
  );
  transition: all 1.2s ease;
}

.theme-dark-btn:hover::before {
  left: 100%;
}

.theme-dark-btn:hover {
  background-color: var(--primary-color);
  color: var(--light-font);
}

.corner-effect {
  position: relative;
  background-color: var(--gray-back);
  z-index: 1;
  /* Ensure content has a higher z-index than the pseudo-elements */
}

/* Top-right diamond */
.corner-effect::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  /* Dark navy color */
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: -1;
  /* Send the diamond to the back */
}

/* Bottom-left diamond */
.corner-effect::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  /* Dark navy color */
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  z-index: -1;
  /* Send the diamond to the back */
}

/* header styling  */

.header-sec {
  padding: 9px 0;
  box-shadow: 2px 2px 4px rgba(211, 211, 211, 0.233);
  background-color: var(--primary-color);
}

.header-sec .logo-img img {
  filter: brightness(0) invert(1);
}

/* hero section styling  */

.hero-section {
  padding: 6% 0 4% 0;
  position: relative;
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.4),
      /* White with 70% opacity at the top */ rgba(255, 255, 255, 0.6)
        /* Fully transparent at the bottom */
    ),
    url("../images/hero-bg.webp");
  /* Background image */
  background-position: center center;
  background-size: cover;
  background-blend-mode: overlay;
  /* Ensures smooth blending of image and gradient */
  backdrop-filter: blur(5px);
  /* Optional: Adds slight blur to enhance the image effect */
}

.hero-section img {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
  animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    /* Starting and ending position */
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
    /* Normal shadow */
  }

  50% {
    transform: translateY(-20px);
    /* Peak height of the bounce */
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.3));
    /* Increased shadow spread */
  }
}

.hero-content p {
  font-weight: 700;
  font-size: 18px;
  line-height: 8px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.hero-content h1 {
  font-size: 45px;
  font-weight: 800;
  line-height: 55px;
}

.hero-content h2 {
  font-size: 21px;
  font-weight: 500;
  line-height: 35px;
}

.hero-list-sec {
  display: flex;
  gap: 20px;
  margin: 18px 0px;
}

.hero-list-sec ul {
  padding-left: 15px;
}

.hero-list-sec ul li {
  margin-bottom: 5px;
  list-style-type: none;
  /* Remove default bullet */
  position: relative;
  padding-left: 25px;
  /* Space for the icon */
}

.hero-list-sec ul li::before {
  content: "\F270";
  /* Bootstrap icon Unicode */
  font-family: "bootstrap-icons";
  /* Specify Bootstrap Icons font */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  /* Set icon color as per your design */
  font-size: 1rem;
  /* Adjust size as needed */
  font-weight: bold;
}

/* activate sec styling  */

.activate-sec {
  padding: 70px 0px;
}
.active-video {
  max-height: 460px; /* Set a maximum height */
  overflow: hidden; /* Hide any overflow if necessary */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px !important;
  box-shadow: 5px 8px 13px lightgray !important;
}

.active-video video {
  height: auto;
  width: auto;
  max-width: 100%; /* Prevents the video from going beyond the container width */
  max-height: 100%; /* Prevents the video from going beyond the container height */
  object-fit: contain; /* Display the video within the container without cropping or zooming */
}

.active-content {
  padding-left: 40px;
}

.active-content h2 {
  font-size: 35px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--primary-color);
}

.active-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--secondary-color);
}

/* contact us section  */

.contact-sec {
  padding: 70px 0;
  background-color: var(--light-gray);
  /* Adjust the padding as needed */
}

.form-sec {
  background: #ffffff;
  /* Card background color */
  padding: 30px;
  /* Padding inside the card */
  border-radius: 15px;
  /* Rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* Initial shadow */
  border: 2px solid lightgray;
  /* Border color */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  /* Smooth transition for shadow and scaling */
}

/* Hover effect */
.form-sec:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* Reduced shadow on hover */
  transform: translateY(-2px);
  /* Slight upward movement on hover */
}

.form-control {
  width: 100%;
  /* Full width */
  padding: 10px 15px;
  /* Padding inside the input fields */
  margin-bottom: 15px;
  /* Space between input fields */
  border: 1px solid #ced4da;
  /* Border color */
  border-radius: 8px;
  /* Rounded corners */
  transition: border-color 0.3s;
  /* Smooth transition */
}

.form-control:focus {
  border-color: var(--secondary-color);
  /* Focus border color */
  box-shadow: none;
  /* Focus shadow */
}

.form-sec h2 {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.form-sec button {
  margin-top: 20px;
}

/* upgrade sec styling  */

.upgrade-sec {
  padding: 70px 0;
}

.upgrade-sec .upgrade-content h2 {
  font-size: 35px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 49px;
  color: var(--primary-color);
}

.upgrade-sec .upgrade-content p {
  font-size: 17px;
  line-height: 27px;
}

/* faq section styling  */

/* faq section stylng  */

/* service faq section */
.faq-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.faq-section .accordion-item {
  background-color: var(--primary-color);
}

.faq-section .accordion-item * {
  color: white;
}

.faq-section button.accordion-button {
  background: var(--primary-color);
  border-bottom: 0px !important;
  line-height: 1.5rem;
}

.faq-section .accordion-button:not(.collapsed),
.faq-section .accordion-button:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
  background-color: transparent;
}

.faq-section .accordion-button::after {
  width: 11px;
  height: 11px;
  border-radius: 100%;
  background-color: var(--secondary-color);
  background-image: none !important;
}

.faq-section .accordion-button.collapsed::after {
  background-color: var(--light-gray);
}

.faq-section h2.heading-2 {
  font-size: 35px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--primary-color);
}

/* servcies section styling  */

/******************* services ection styling  ************************/

.service-sec-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  height: 100%;
  cursor: pointer;
}

.service-sec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-sec-icon {
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
  box-shadow: 3px 4px 5px lightgray;
}

.service-sec-icon i {
  color: white;
}

.service-sec-body {
  flex-grow: 1;
}

.service-sec-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-sec-text {
  color: #555;
}

.service-sec-icon i {
  font-size: 31px;
  line-height: 1;
}

/* Review Section */

.quality-timeline {
  padding: 20px 0 !important;
  background-color: var(--secondary-color);
}

.quality-timeline .container {
  width: 95%;
  padding: 50px 0;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
}

.quality-timeline .container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  background: var(--primary-color);
  z-index: 1;
}

.quality-timeline .timeline-block {
  width: -webkit-calc(50% + 8px);
  width: -moz-calc(50% + 8px);
  width: calc(50% + 8px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  clear: both;
}

.quality-timeline .timeline-block-right {
  float: right;
}

.quality-timeline .timeline-block-left {
  float: left;
  direction: rtl;
}

.quality-timeline .marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: white;
  margin-top: 10px;
  z-index: 9999;
}

.quality-timeline .timeline-content {
  width: 95%;
  padding: 0 15px;
  color: #666;
  background-color: var(--primary-color);
  transition: 0.4s;
  cursor: pointer;
}

.quality-timeline .timeline-content h3 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  color: var(--light-font);
}

.quality-timeline .timeline-content span {
  font-size: 15px;
  color: black;
}

.quality-timeline .timeline-content p {
  font-size: 15px;
  line-height: 25px;
  word-spacing: 1px;
  color: #e9e8e8;
}

@media screen and (max-width: 768px) {
  .quality-timeline .container:before {
    left: 8px;
    width: 2px;
  }

  .quality-timeline .timeline-block {
    width: 100%;
    margin-bottom: 30px;
  }

  .quality-timeline .timeline-block-right {
    float: none;
  }

  .quality-timeline .timeline-block-left {
    float: none;
    direction: ltr;
  }
}

.quality-timeline .timeline-content {
  padding: 20px !important;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  box-shadow: 0px 10px #2e2e2e;
  text-align: left !important;
}

.timeline-content img {
  width: 80px;
  border-radius: 100%;
  padding: 2px;
  border: 2px solid white;
  box-shadow: 2px 4px 5px black;
  margin-bottom: 9px;
}

.review-heading h2 {
  font-size: 35px;
  font-weight: 700;
}

/* pricing section  */

.pricing-tables {
  padding: 60px 0;
}

.pricing-tables ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-tables img {
  max-width: 100%;
  height: auto;
}

.pricing-tables .main-title {
  margin-bottom: 50px;
  text-align: center;
}

.pricing-tables .main-title h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-tables .main-title h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

.pricing-tables .main-title p {
  font-size: 18px;
  margin-bottom: 0;
}

.pricing-tables .pricing {
  text-align: center;
  border: 1px solid lightgray;
  position: relative;
  background: #eeebeb;
  height: 100%;
  z-index: 9;
  box-shadow: 0px 7px 5px lightgray;
}

.pricing-tables .pricing .price-header {
  width: 100%;
  background: #fff;
  padding: 35px 20px;
}

.pricing-tables .pricing .price-header .title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
}

.pricing-tables .pricing .price-header .price {
  font-size: 35px;
  font-weight: 700;
  margin: 0;
  color: var(--primary-color);
}

.pricing-tables .pricing .content {
  padding: 20px 20px 30px;
  background: var(--light-gray);
  height: auto !important;
}

.pricing-tables .pricing .content ul {
  margin: 0 0 20px;
}

.pricing-tables .pricing .content ul li {
  padding: 6px 0;
  font-size: 16px;
  color: #656565;
}

.pricing-tables .pricing.featured .listing-badges {
  position: absolute;
  top: 0;
  z-index: 999;
  right: 0;
  width: 100%;
  display: block;
  font-size: 15px;
  padding: 0;
  overflow: hidden;
  height: 100px;
}

.pricing-tables .pricing.featured .featured {
  float: left;
  transform: rotate(-45deg);
  left: -67px;
  top: 17px;
  position: relative;
  text-align: center;
  width: 200px;
  font-size: 13px;
  margin: 0;
  padding: 7px 10px;
  font-weight: 500;
  color: #fff;
}

.pricing-tables .pricing.featured .featured {
  background: var(--primary-color);
}

.pricing-tables .btn-outline {
  border: solid 1px var(--primary-color);
  color: var(--primary-color);
}

.pricing-tables .btn-outline:hover {
  border: solid 1px var(--secondary-color);
  background: var(--secondary-color);
  color: #fff;
}

.pricing-tables .button-theme {
  background: var(--primary-color);
  color: #fff !important;
}

.pricing-tables .button-theme:hover {
  background: var(--secondary-color);
  color: #fff;
}

.pricing-tables .pricing-btn {
  padding: 7px 25px 5px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pricing ul {
  text-align: left;
}

.pricing ul li {
  position: relative;
  padding-left: 25px !important;
}

.pricing ul li::before {
  content: "\F270";
  /* Bootstrap icon Unicode */
  font-family: "bootstrap-icons";
  /* Specify Bootstrap Icons font */
  position: absolute;
  left: 0;
  color: var(--primary-color);
  /* Set icon color as per your design */
  font-size: 1rem;
  /* Adjust size as needed */
  font-weight: bold;
}

.pricing {
  padding-bottom: 40px;
}

.pricing .button {
  position: absolute;
  bottom: 0px;
  /* Adjusted for better readability */
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 40px;
}

/* Media Queries */
@media (max-width: 767px) {
  .review-sec .carousel-caption {
    padding: 3rem 2rem;
    font-size: 0.7rem;
    line-height: 1.5rem;
  }

  .review-sec .carousel-caption img {
    width: 4rem;
    border-radius: 4rem;
    margin-top: 1rem;
  }

  .review-sec #image-caption {
    font-size: 0.6rem;
  }

  .review-sec i {
    padding: 3px !important;
    font-size: 14px !important;
  }

  .review-sec {
    min-height: 65vh !important;
  }

  .review-sec .review-stars i {
    font-size: 14px !important;
  }
}

.review-sec .carousel-control-prev,
.review-sec .carousel-control-next {
  transition: none;
  opacity: unset;
}

.review-sec .carousel-control-prev {
  justify-content: flex-start;
}

.review-sec .carousel-control-next {
  justify-content: flex-end;
}

/* benifit sec styling  */

.benifit-sec {
  padding: 60px 0;
}

/* commitment sec styling  */

section.services-sec.commitment-sec {
  padding: 60px 0px;
  background: #eeebeb;
}

.commitment-sec .service-sec-card {
  background: transparent;
  box-shadow: none;
  border: none;
}

.commitment-sec .service-sec-card {
  padding: 9px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.commitment-sec h2 {
  font-size: 35px;
  margin-bottom: 50px !important;
  font-weight: 700;
  color: var(--primary-color);
}

/* footer section  */

.footer-section a,
.footer-section a:active,
.footer-section a:focus {
  color: #6f6f6f;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

.footer-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-section img {
  max-width: 100%;
  height: auto;
  width: 140px;
  filter: brightness(0) invert(1);
}

.footer-section {
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.footer-section:before {
  content: "";
  position: absolute;
  top: -146%;
  left: -18%;
  width: 44%;
  height: 257%;
  transform: rotate(54deg);
  background-color: #4f378a;
  -webkit-transform: rotate(54deg);
  -moz-transform: rotate(54deg);
  -ms-transform: rotate(54deg);
  -o-transform: rotate(54deg);
  z-index: -10;
}

.footer-section:after {
  position: absolute;
  content: "";
  background-color: #4f378a;
  top: -24%;
  right: 4%;
  width: 26%;
  height: 264%;
  transform: rotate(44deg);
  -webkit-transform: rotate(44deg);
  -moz-transform: rotate(44deg);
  -ms-transform: rotate(44deg);
  -o-transform: rotate(44deg);
  z-index: -10;
}

.footer-section .footer-top {
  padding-top: 60px;
  padding-bottom: 25px;
}

.footer-section .footer-top p,
.footer-section .company-footer-contact-list li {
  color: #ffffff;
}

.footer-section .company-footer-contact-list {
  margin-top: 10px;
}

.footer-section .company-footer-contact-list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.footer-section .company-footer-contact-list li + li {
  margin-top: 5px;
}

.footer-section .company-footer-contact-list li i {
  margin-right: 10px;
  font-size: 20px;
  display: inline-block;
}

.footer-top .site-logo {
  margin-bottom: 25px;
  display: block;
  max-width: 170px;
}

.widget-title {
  text-transform: capitalize;
}

.footer-top .widget-title {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--secondary-color);
}

.courses-link-list li + li {
  margin-top: 10px;
}

.courses-link-list li a {
  color: #ffffff;
  text-transform: capitalize;
  font-family: var(--para-font);
  font-weight: 400;
}

.courses-link-list li a:hover {
  color: var(--white-font);
}

.courses-link-list li i {
  margin-right: 5px;
}

.footer-top .small-post-title a {
  font-family: var(--para-font);
  color: #ffffff;
  font-weight: 400;
}

.footer-bottom {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.149);
}

.sm-icons {
  flex-direction: row;
}

.sm-icons .nav-link {
  padding-right: 1em;
}

.copy-right-text {
  color: #ffffff;
}

.copy-right-text a {
  color: var(--white-font);
}

ul.navbar-nav.sm-icons i {
  font-size: 20px;
  color: var(--secondary-color) !important;
}

.footer-top ul li a:hover {
  color: var(--secondary-color) !important;
}

.phone-widget {
  z-index: 99999999;
  position: fixed;
  bottom: 18px;
  left: 26px;
}

.phone-widget div {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  font-size: 29px;
  box-shadow: 1px 3px 6px #0000004d;
  border: 2px solid var(--primary-color);
  transition: 0.4s;
}

.phone-widget div:hover {
  opacity: 0.9;
}

.phone-widget div i {
  color: var(--primary-color);
}

/* responsive styling  */

@media only screen and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 38px;
    line-height: 48px;
  }

  .hero-content h2 {
    font-size: 16px;
    line-height: 28px;
  }

  .active-content h2 {
    font-size: 30px;
    margin-bottom: 11px;
  }

  .active-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .active-content {
    padding-left: 18px;
  }

  .form-sec h2 {
    font-size: 22px;
  }

  .form-control {
    padding: 7px 15px;
  }

  .upgrade-sec .upgrade-content h2 {
    font-size: 28px;
  }

  .upgrade-sec .upgrade-content p {
    font-size: 14px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .active-content {
    padding-top: 30px;
  }

  .upgrade-sec .upgrade-content h2 {
    margin-top: 40px;
  }

  .faq-section h2.heading-2 {
    font-size: 30px;
  }

  .hero-list-sec ul {
    margin-bottom: 0;
  }

  .hero-img {
    margin-top: 30px;
  }

  .pricing-tables .col-lg-4 {
    margin-bottom: 30px;
  }

  .active-video {
    max-height: 321px !important;
  }
}

@media only screen and (max-width: 690px) {
  .header-sec .logo1 {
    width: 88px !important;
  }

  .header-sec .logo2 {
    width: 130px !important;
  }

  .hero-list-sec li {
    font-size: 14px;
  }

  .footer-top .widget-title {
    margin-bottom: 24px;
    margin-top: 27px;
  }

  .hero-list-sec {
    gap: 0;
  }
}

@media only screen and (max-width: 480px) {
  section.hero-section {
    padding: 13% 0 8% 0;
  }

  .hero-content h1 {
    font-size: 25px;
    line-height: 35px;
  }

  .active-content h2 {
    font-size: 26px;
    margin-bottom: 11px;
  }

  .active-content h3 {
    font-size: 17px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 414px) {
  .hero-list-sec {
    flex-direction: column;
  }

  .active-content h2 {
    font-size: 23px;
    margin-bottom: 11px;
  }

  .upgrade-sec .upgrade-content h2 {
    font-size: 23px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 414px) {
  .hero-content p {
    font-size: 16px;
    line-height: 16px;
  }
}

/* ************************* address suggestions ******************************** */
#suggestions {
  position: absolute;
  z-index: 1000;
  width: 100%; /* match the input field width */
  max-height: 200px;
  overflow-y: auto;
  left: 0; /* align with input field */
  top: 100%; /* appear right below input */
  background: white; /* so it looks like a dropdown */
  border: 1px solid #ccc;
  border-top: none; /* merge nicely with input */
}

/* ********************* activate section *****************************8 */
.activate-sec {
  background: linear-gradient(135deg, #f8f9fc, #ffffff);
}
.gift-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gift-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gift-img {
  width: 80px; /* same width */
  height: 80px; /* same height */
  object-fit: cover; /* crop images neatly */
  border-radius: 12px; /* rounded corners */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* subtle shadow */
}

/* ********************* loc-cards ******************* */
.loc-cards {
  height: 170px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
/* *********************** gift card******************** */
.gift-card img {
  width: 100%; /* make it fill the card’s width */
  height: 200px; /* fixed height for all */
  object-fit: contain; /* crop nicely instead of stretching */
  border-radius: 8px; /* optional rounded corners */
}

/* **************** get free blinking link *************** */
.blink-link {
  display: none;
}

/* Show + animate only on mobile */
@media (max-width: 768px) {
  .blink-link {
    display: inline-block;
    font-weight: bold;
    color: red;
    text-decoration: none;
    animation: blink 1s infinite alternate;
  }
}

@keyframes blink {
  0% {
    color: red;
  }
  100% {
    color: green;
  }
}
