/* ===================================== */
/*   SMYDE HOMEPAGE HERO SECTIONS ONLY   */
/* ===================================== */

/* HERO BACKGROUND SECTION */

.hero-section {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 80px;
  position: relative;
}

/* DARK OVERLAY FOR TEXT VISIBILITY */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* HERO CONTENT BOX */
.hero-inner1 {
  max-width: 1000px;
  color: white;
  position: relative;
  z-index: 2;
}
.hero-inner {
  max-width: 650px;
  color: white;
  position: relative;
  z-index: 2;
}

/* CENTER TEXT FOR FIRST HERO */
.text-center {
  text-align: center;
  margin: auto;
}


/* HEADINGS */
.hero-inner h1 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: white;
}

.hero-inner1 h1 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: white;
}

/* PARAGRAPH */
.hero-inner p {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: white;
}
/* Modern Popover Style */
.popover {
  border-radius: 0px;
  border: none;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  padding: 0px 0;
  min-width: 100vw;
  min-height: 100px;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
}

.header-popover {
  margin-top: 0px !important;
  position: fixed;
}

.footer-popover {
  margin-bottom: 10px !important;
}

/* Remove default arrow */
.popover .arrow {
  display: none;
}

/* Remove title space */
.popover-title {
  display: none;
}

/* Style content */
.popover-content {
  padding: 0;
  width: 100%;
  background-color: #151515;
  border-top: #808080 0.5px solid;
}

.popover-content > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  height: 150px;
  gap:0;
}

/* Product links styling */
.popover-content a {
  display: inline-flex; /* Better for centering content */
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  /* padding: 10px 30px; */
  color: #626262;
  text-decoration: none;
  transition: all 0.3s ease;
  /* font-weight: 500; */
  /* transition: 0.3s; */
  margin: 0px;
  padding: 0 20px;
  position: relative;
}

/* Hover effect */
.popover-content a:hover {
  /* background: #d9dffa; */
  color: #ffffff;
  /* color: #2254c5; */
  /* padding-left: 15px; */
}
/* Cursor only on text */
.trigger-text {
  cursor: pointer;
}
/* Footer specific adjustment */
#footerProductsPopover + .popover {
  margin-bottom: -8px !important;
}
/* Active product style - YOUR COLOR HERE */
.popover a.active-product {
  /* background: #2254c5;  Change this to your desired color */
  color: #626262 !important;
}

.popover a.active-product:hover {
  /* background: #025d94;  Darker shade for hover */
  color: #626262 !important;
}

/* Optional: Add an indicator */
.popover a.active-product::before {
  content: "";
  font-weight: bold;
}
/* .popover {
  animation: fadeInMenu 0.25s ease;
}

@keyframes fadeInMenu {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */
.hero-inner1 p {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: white;
}

/* BUTTONS */
.hero-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
  margin-right: 15px;
}

/* OUTLINE BUTTON */
.outline-btn {
  border: 2px solid white;
  color: white;
}

.outline-btn:hover {
  background: white;
  color: black;
  transform: translateY(-10px);
}

/* FILLED BUTTON */
.fill-btn {
  background: #2254c5;
  border: 2px solid #2254c5;
  color: white;
}

.fill-btn:hover {
  background: #2254e5;
  color: white;
  transform: translateY(-10px);
}

/* RIGHT ALIGN HERO */
.hero-section.right-align {
  justify-content: flex-end;
  text-align: right;
}

/* BUTTON GROUP */
.hero-buttons {
  margin-top: 20px;
}


/* ===================================== */
/*   RESPONSIVE DESIGN                   */
/* ===================================== */

/* Tablets */
@media (max-width: 992px) {
  .hero-section {
    padding: 60px;
  }

  .hero-inner h1 {
    font-size: 42px;
  }
    .hero-inner1 h1 {
    font-size: 42px;
  }

  .hero-inner p {
    font-size: 18px;
  }
    .hero-inner1 p {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    min-height: 75vh;
    padding: 40px 25px;
    justify-content: center;
    text-align: center;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-inner h1 {
    font-size: 32px;
  }

  .hero-inner p {
    font-size: 16px;
  }
  .hero-inner1 {
    max-width: 100%;
  }

  .hero-inner1 h1 {
    font-size: 32px;
  }

  .hero-inner1 p {
    font-size: 16px;
  }

  .hero-btn {
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }

  /* Disable right align on mobile */
  .hero-section.right-align {
    justify-content: center;
    text-align: center;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .hero-inner h1 {
    font-size: 26px;
  }

  .hero-inner p {
    font-size: 15px;
  }
  .hero-inner1 h1 {
    font-size: 26px;
  }

  .hero-inner1 p {
    font-size: 15px;
  }
}

        @media (min-width:768px) {
            .column-counts{
                column-count:2;
            }
        }

        .activehome {
        color: #ffffff !important;
        font-weight: bold;
        position: relative;
         }
         .activehome::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 24px;   /* distance from text */
  width: 30%;
  height: 2px;    /* thickness of underline */
  background-color: #ffffff; /* underline color */
  border-radius: 2px;
}
.figma-footer {
  background: #edecec5d;
  color: rgb(0, 0, 0);
  padding: 60px 100px 30px;
  font-family: "Inter", sans-serif;
}

/* TOP ROW */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.footer-logo {
  height: 95px;
}

.footer-links {
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  gap: 100px;
}

.footer-links a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #2254c5;
}

/* MAIN CONTENT */
.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* LEFT */
.footer-desc {
  font-size: 18px;
  line-height: 1.7;
  color: black;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #e8eaec;
  color: white;
  transform: translateY(-10px);
}

/* RIGHT */
.footer-right h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #000000;
}

.footer-right p {
  font-size: 18px;
  line-height: 1.6;
  color: black;
}

.footer-right a {
  color: #2254c5;
  font-weight: 500;
}

.footer-form form {
  display: grid;
  grid-template-columns: 1fr 1fr 0.5fr;  /* 2 equal columns */
  gap: 10px;
  width: 100%;
}

.footer-form input,
.footer-form button {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
}

.footer-form button {
  background: #2254c5;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.footer-form button:hover {
  background: #3535b5;
  transform: translateY(-10px);
}
/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(122, 117, 117, 0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
}

.footer-bottom .brand {
  color: #2254c5;
  font-weight: 400;
}

.bottom-links {
  display: flex;
  gap: 20px;
}

.bottom-links a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  transition: 0.3s;
  font-size: 18px;
}

.bottom-links a:hover {
  color: #2254c5;
}
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-form form {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .figma-footer {
    padding: 50px 20px;
    text-align: center;
  }

  /* Top Row Stack */
  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    justify-content: center;
    flex-direction: column;
    gap: 30px;
  }

  .footer-social {
    justify-content: center;
  }

  /* Main Content Stack */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  /* Form Stack */
  .footer-form form {
    grid-template-columns: 1fr 1fr;
  }

  /* Bottom Bar Stack */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .bottom-links {
    justify-content: center;
  }
}

@media (max-width: 426px) {
    /* Form Stack */
  .footer-form form {
    grid-template-columns: 1fr;
  }
}

