/*
Theme Name: ACTnet Theme
Theme URI: https://example.com
Author: Ivy Auxilio
Author URI: https://example.com
Description: A custom WordPress theme for ACTnet
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ACTnet by zepoga
*/

:root {
  --bs-danger: #a42019; /* your new base color */
  --bs-danger-rgb: 230, 57, 70;
  --bs-danger-bg-subtle: #f8d7da;
  --bs-danger-border-subtle: #f5c2c7;
  --bs-danger-text-emphasis: #58151c;

  --mc-card-bg: #fff;
  --mc-card-border: #eef2f6;
  --mc-text: #1e293b;
  --mc-accent-fire: #ff6b4a; /* fire */
  --mc-accent-water: #3aa7ff; /* water */
  --mc-accent-ice: #6ee7ff; /* ice */
  --mc-radius: 12px;
  --mc-gap: 1rem;
}
html {
  scroll-behavior: smooth;
}
.btn-danger {
  background-color: #a42019 !important; /* your new color */
  border-color: #a42019 !important;
}

.btn-danger:hover,
.btn-danger:focus {
  background-color: #e63946 !important; /* darker shade */
  border-color: #e63946 !important;
}
.btn-primary {
  background-color: #001b5d !important;
  border-color: #001b5d !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #022e9b !important; /* darker shade */
  border-color: #022e9b !important;
}

body.admin-bar .navbar.fixed-top {
  top: 32px; /* default height of wpadminbar on desktop */
}
.custom-logo {
  max-height: 60px; /* match your navbar */
  height: auto;
  width: auto;
}

.logo {
  height: 60px;
  transition: opacity 0.3s ease;
}

.logo-white {
  display: none;
}

.navbar.scrolled .logo-gray {
  display: none;
}

.navbar.scrolled .logo-white {
  display: inline-block;
}
.navbar {
  background: linear-gradient(to bottom, rgb(255 255 255), rgb(0 0 0 / 40%));
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
/* Navbar Links */
.navbar-nav {
  align-items: center;
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .navbar-nav .menu-item a {
  /* color: #fff;
  font-weight: 100; */
  color: #000000;
  font-weight: 500;
}

.navbar-nav .menu-item {
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.navbar-nav .menu-item a {
  text-decoration: none !important;
  color: #000;
}

.navbar.scrolled .navbar-nav li:last-child a {
  color: #fff;
}
.navbar.scrolled .navbar-nav li:nth-last-child(2) > a {
  color: #a42019;
}
.navbar.scrolled .navbar-nav li:last-child a:hover {
  color: #fff;
}

.navbar-nav li:last-child a {
  background-color: #a42019;
  padding: 0.5rem 2rem;
  color: #fff;
  border-radius: 5px;
}
.navbar-nav li:nth-last-child(2) > a {
  border: 1px solid #a42019;
  color: #a42019;
  border-radius: 5px;
  padding: 0.5rem 1rem;
}
.navbar-nav li:last-child a:hover {
  border: 1px solid #a42019;
  padding: 0.5rem 2rem;
  color: #fff;
  border-radius: 5px;
  background-color: #a42019;
}

.navbar-nav .menu-item:hover {
  color: #0d6efd !important; /* Bootstrap primary blue */
  text-decoration: none !important;
}

.navbar-nav .menu-item.active {
  color: #0d6efd !important;
  border-bottom: 2px solid #0d6efd;
}

/* Offcanvas menu styling */
.offcanvas-body .menu-item {
  font-size: 1.1rem;
  padding: 0.5rem 0;
}

@media screen and (max-width: 782px) {
  body.admin-bar .navbar.fixed-top {
    top: 46px; /* wpadminbar is taller on mobile */
  }
}
.network {
  min-height: 100vh; /* full screen height */
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
  flex-direction: column;
  margin: 0 auto;
  box-sizing: border-box;
  gap: 50px;
}
section {
  min-height: 100vh; /* full screen height */
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
  flex-direction: column;
  margin: 0 auto;
  padding: 3rem 1rem;
  box-sizing: border-box;
  gap: 50px;
}
.about-header {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}
.about-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}
.mc-visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.mc-icon-cards {
  /* max-width: 1100px; */
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue",
    Arial;
}

.mc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--mc-gap);
  align-items: stretch;
}

.mc-card {
  background: var(--mc-card-bg);
  border: 1px solid var(--mc-card-border);
  border-radius: var(--mc-radius);
  padding: 5.25rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}
.mc-card:focus,
.mc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
}

.mc-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--mc-text);
}
.mc-icon svg {
  display: block;
  width: 64px;
  height: 64px;
}

/* color the icons individually */
.mc-card:nth-child(1) .mc-icon {
  color: var(--mc-accent-fire);
}
.mc-card:nth-child(2) .mc-icon {
  color: var(--mc-accent-water);
}
.mc-card:nth-child(3) .mc-icon {
  color: var(--mc-accent-ice);
}

.mc-title {
  font-size: 1.125rem;
  margin: 0 0 0.25rem;
  color: var(--mc-text);
  font-weight: 600;
}
.mc-desc {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
}
.about-different {
  /* background: #ffffff;
  padding: 60px 20px; */
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.wmud-title {
  font-size: 2rem;
  /* font-weight: 700; */
  color: #222;
  margin-bottom: 30px;
  text-align: center;
}

.wmud-list {
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  display: flex;
}

.wmud-list li {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #444;
  gap: 10px;
}

.wmud-list li span {
  margin-left: 10px;
}

.wmud-list li::before {
  content: "";
}
/* Section wrapper */
.three-col-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

/* Container */
.three-col-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* Card */
.three-col-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.three-col-card:hover {
  transform: translateY(-5px);
}

/* Image */
.col-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Title */
.col-title {
  font-size: 1rem;
  font-weight: 400;
  margin: 10px 0;
  color: #222;
}

/* Icon */
.col-icon {
  font-size: 2rem;
  margin: 10px 0;
}

/* Subtext */
.col-subtext {
  font-size: 1rem;
  color: #555;
  margin-top: 5px;
}

.contact-banner {
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #21252970;
}

.contact-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.contact-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-banner p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-contact {
  display: inline-block;
  background: #a42019;
  color: #fff;
  padding: 14px 28px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #001d62;
}
.image-network-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .image-network-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .image-network-row .item {
    flex: 1 1 18%; /* 5 items across, shrink on smaller */
    /* min-width: 250px; */
  }
  .image-network-row img {
    width: 250px !important;
  }
}
.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  text-align: left;
  padding: 50px;
}
.image-row .item {
  flex: 1 1 18%;
  min-width: 150px;
}

.image-network-row img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}
.image-row img {
  max-width: 180px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}
.image-row h4 {
  margin-top: 10px;
  font-size: 1rem;
}
.container-footer {
  margin-top: 0;
  padding: 50px 0 50px;
}
.container-footer .container-ft {
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container-footer .widget-social-links {
  margin-top: 10px;
}
.brand-logo-footer {
  width: 250px;
}
.container-footer .widget-social-links img {
  width: 35px;
  margin-right: 10px;
}
.container-footer .footer-widget .title {
  border-bottom: 1px solid #242b33;
  display: block;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}

.container-footer .footer-widget .title:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #f7be3d;
  display: block;
  margin-top: 13px;
}
.container-footer .footer-widget .textwidget {
  color: #fff;
}
.container-footer .widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.py-50 {
  margin: 50px 0px;
}
.section {
  background-color: #e9e9e9;
  padding: 4rem 0;
  position: relative;
  display: block;
}
.check li {
  list-style: none;
  margin-bottom: 8px;
}
.check li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 16px;
  left: 0;
  padding-right: 10px;
  position: relative;
  top: 2px;
  color: #e4a62f;
}
footer {
  padding: 25px 0;
  text-align: center;
  font-size: 14px;
  background-color: #e2e2e2;
  clear: both;
  border-top: 1px solid #161f27;
  background: #10151b;
  color: #464c54;
}
footer p {
  margin: 0px;
}
/* Responsive */
@media (max-width: 900px) {
  .three-col-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .three-col-container {
    grid-template-columns: 1fr;
  }
}

/* Responsive: stack on smaller screens */
@media (max-width: 900px) {
  .mc-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .mc-cards {
    grid-template-columns: 1fr;
  }
  .mc-icon svg {
    width: 56px;
    height: 56px;
  }
}
.service-container {
  justify-content: center;
}
.custom-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: #0a58cab5;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.col-left {
  flex: 1 1 40%;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.col-left .section-title {
  font-size: 2rem;
  margin-bottom: 15px;
}

.col-left .section-desc {
  font-size: 1rem;
  line-height: 1.6;
}

.col-right {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.col-right .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  flex: 0 0 45%;
  max-width: 220px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.col-right .card i {
  font-size: 2rem;
  color: #ff6f61; /* accent color */
  margin-bottom: 10px;
}

.image-network {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 15px;
  position: relative;
}
.network-side-cover {
  height: 100vh;
}

.image-column {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 15px;
  position: relative;
}

.image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Make one image span larger */
.image-column img:nth-child(3) {
  grid-column: span 2;
  /* height: 400px; */
}

.image-column img:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.network-section {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.line-left::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #f7be3d;
  display: block;
  margin-top: 13px;
}
.line-center::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #f7be3d;
  display: block;
  margin: 13px auto 0;
}
.join-section {
  height: 100vh; /* full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}
.bg-muted {
  background-color: lightgray;
}
.blue-box {
  background-color: #0c1221; /* blue box background */
  color: #fff;
}

.white-box {
  background-color: #ffffff;
  color: #1d56c3; /* text color to contrast the blue */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.white-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.two-column-feature .image-cover {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.two-column-feature .text-column {
  background-color: #fff;
}
.min-vh-50 {
  min-height: 50vh;
}
.image-cover-event {
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.blue-box {
  width: 100%;
}

.registration-form .card {
  border: 1px solid #eee;
  background-color: #fff;
}

.registration-form .form-label {
  font-weight: 500;
  font-size: 0.9rem;
}

.registration-form input,
.registration-form select {
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
}
.badge.bg-danger {
  background-color: #a42019 !important;
  border-radius: 0.25rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.registration-form .form-check-label {
  font-size: 0.9rem;
}
.events-data img,
.events-btn {
  width: 300px;
}
.events-f2f {
  width: 100px;
}
.niche-text {
  max-height: 0;
  overflow: hidden;
  /* background: rgba(0, 0, 0, 0.7); */
  background-color: #fff;
  color: #000;
  padding: 0 15px;
  transition: all 0.4s ease;
  text-align: center;
  position: absolute;
  transform: scale(0.9);
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.item:hover .niche-text {
  max-height: 200px;
  padding: 15px;
  transform: scale(1); /* feels like a popup */
  pointer-events: auto;
}
.subnetwork {
  background: rgba(255, 255, 255, 0.7);
  margin: 1rem 4rem;
  padding: 2rem;
}
.contact-left {
  flex: 1 1 60%;
}
.divider {
  border: none;
  height: 3px;
  background: #8b1e1e;
  width: 100%;
  margin: 20px 0;
}
input,
textarea {
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 0.95rem;
}

textarea {
  border-radius: 8px;
  min-height: 100px;
  resize: none;
}

.full-width {
  width: 100%;
  margin-top: 15px;
}

.contact-right {
  flex: 1 1 35%;
  border-left: 1px solid #ccc;
  padding-left: 40px;
}
.note {
  font-size: 0.85rem;
  color: #8b1e1e;
  margin-top: 10px;
}

.btn-submit {
  display: inline-block;
  background-color: #8b1e1e;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 25px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s ease;
}
.btn-submit:hover {
  background-color: #a62a2a;
}

.contact-right a {
  color: #1a73e8;
  text-decoration: none;
}

.contact-right a:hover {
  text-decoration: underline;
}
.contact-info iframe {
  border: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  min-height: 430px;
}
@media (max-width: 767.98px) {
  .two-column-feature .image-cover {
    min-height: 250px;
  }
}
@media (max-width: 900px) {
  .image-column {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }
  .col-right {
    margin-top: 60px;
    height: 400px;
  }

  .contact-right {
    border-left: none;
    padding-left: 0;
  }

  .form-row {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .directories {
    flex-direction: column; /* stack vertically */
  }

  .directories .item {
    flex: 1 1 100% !important;
    width: 100% !important;
  }
}

@media (max-width: 425px) {
  .prev,
  .next {
    display: none;
  }
  .section {
    padding: 1rem;
  }
  .network-side-cover {
    height: 50vh;
  }

  .banner-regs {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
  }
}

/* 
---------------------------------------------
Features Style
--------------------------------------------- 
*/

#features {
  padding-top: 130px;
  padding-bottom: 130px;
}

.features .features-content {
  z-index: 2;
  position: relative;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.features-item {
  text-align: center;
  padding: 20px;
  border-radius: 50px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  transition: background-color 0.5s;
  -webkit-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
}

.features-item:hover {
  background: rgb(51, 204, 197);
  background: linear-gradient(
    105deg,
    rgba(13 21 169) 0%,
    rgba(8, 141, 195, 1) 100%
  );
}

.features-item:hover h4 {
  color: #fff;
}

.features-item:hover p {
  color: #fff;
}

.features-item:hover .line-dec {
  background-color: rgba(255, 255, 255, 0.3);
}

.first-feature:hover .icon {
  background-image: url(./assets/images/features-icon-white-01.png);
}

.second-feature:hover .icon {
  background-image: url(./assets/images/features-icon-white-02.png);
}
.third-feature:hover .icon {
  background-image: url(./assets/images/users-loyalty-white.png);
}
.fourth-feature:hover .icon {
  background-image: url(./assets/images/coworking-white.png);
}

.features-item .number h6 {
  background-repeat: no-repeat;
  width: 110px;
  height: 69px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 69px;
  margin-top: -65px;
  margin-bottom: 30px;
}

.features-item .first-number h6 {
  background-image: url(./assets/images/features-number-01.png);
}

.features-item .second-number h6 {
  background-image: url(./assets/images/features-number-02.png);
}

.features-item .third-number h6 {
  background-image: url(./assets/images/features-number-03.png);
}

.features-item .fourth-number h6 {
  background-image: url(./assets/images/features-number-04.png);
}

.first-feature .icon {
  background-image: url(./assets/images/features-icon-black-01.png);
}

.second-feature .icon {
  background-image: url(./assets/images/features-icon-black-02.png);
}
.third-feature .icon {
  background-image: url(./assets/images/users-loyalty-black.png);
}
.fourth-feature .icon {
  background-image: url(./assets/images/coworking-black.png);
}

.features-item .icon {
  width: 63px;
  height: 63px;
  margin: 0 auto;
  transition: all 0.5s;
}

.features-item h4 {
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 30px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #2a2a2a;
  position: relative;
  transition: all 0.5s;
}

.features-item .line-dec {
  width: 100px;
  height: 2px;
  background-color: rgba(51, 204, 197, 0.3);
  margin: 30px auto;
  transition: all 0.5s;
}

.features-item p {
  position: relative;
  margin-top: 0px;
  transition: all 0.5s;
}

.feature-header {
  text-align: left;
  margin-left: 1rem;
}
.feature-sub-text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  /* max-width: 400px; */
}

.features-list {
  list-style: none;
  padding: 0;
}

.feature-item {
  cursor: pointer;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background-color: #f8f8f8;
  transition: transform 0.4s ease;
  transform-style: preserve-3d;
}

.feature-item.open {
  transform: rotateX(180deg);
}

.feature-header,
.feature-desc {
  backface-visibility: hidden;
}

.feature-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  font-size: 14px;
  padding-top: 8px;
}

.feature-item.open .feature-desc {
  max-height: 200px;
  opacity: 1;
}

.feature-item.open .feature-header {
  display: none;
}

.feature-desc {
  transform: rotateX(180deg);
  color: #000;
}

.section-heading-mb {
  margin-bottom: 120px;
}

.section-heading h6 {
  font-size: 15px;
  font-weight: 700;
  color: #001a5a;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-heading h2 {
  font-size: 30px;
  text-transform: capitalize;
  color: #2a2a2a;
  font-weight: 800;
  position: relative;
  z-index: 2;
  line-height: 45px;
}

.section-heading h2 em {
  font-style: normal;
  color: #33ccc5;
}

.section-heading h2 span {
  color: #088ec3;
}

.section-heading,
.subtext {
  margin-left: 15px;
  margin-right: 15px;
}

.vm-section {
  padding: 60px 20px;
  background: #fdfdfd;
}

.vm-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  align-items: flex-start;
}

.vm-image img {
  width: 100%;
  max-width: 825px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.vm-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.vm-box {
  margin-bottom: 20px;
  background: #ffffff;
  padding: 16px 20px;
  border-left: 4px solid #a42019;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.vm-label {
  margin-bottom: 10px;
  font-size: 20px;
  color: #a42019;
}

.vm-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .vm-container {
    flex-direction: column;
    text-align: center;
  }
  .vm-box {
    text-align: left;
  }
}
.directories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.directories .item {
  text-align: center;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 15px;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex: 0 0 calc(50% - 24px);
  /* max-width: calc(50% - 24px); */
  flex-direction: column;
  transform: translateY(40px);
  opacity: 0;
  animation: cardFloat 0.9s ease forwards;
}
/* .directories .item:nth-child(1) {
  animation-delay: 0.1s;
}
.directories .item:nth-child(2) {
  animation-delay: 0.2s;
}
.directories .item:nth-child(3) {
  animation-delay: 0.3s;
}
.directories .item:nth-child(4) {
  animation-delay: 0.4s;
} */
.tech .item {
  transform: scale(1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.tech .item:hover {
  background-color: #088ec3;
  transform: scale(0.95);
  box-shadow: 0 18px 38px rgba(255, 87, 34, 0.2);
  color: #fff;
}
@keyframes cardFloat {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.directories h4 {
  font-size: 20px;
  text-align: center;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.directories .item ul {
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.no-boderTop {
  border-top: transparent !important;
  padding-top: 10px !important;
}

@media (max-width: 992px) {
  .directories .item {
    flex: 0 0 calc(50% - 24px); /* 2 columns */
  }
}

@media (max-width: 576px) {
  .directories .item {
    flex: 0 0 100%; /* 1 column */
  }
}

.video-banner {
  position: relative;
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(65%); /* Darkens video slightly */
}

.video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 29, 98, 0.5),
    rgba(95, 7, 32, 0.6)
  ); /* Your brand colors */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.banner-btn {
  background: #ff5722;
  padding: 14px 32px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #ff784e;
  transform: scale(1.05);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive magic */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.1rem;
  }
  .video-banner {
    height: 60vh;
  }
}

.event-strip {
  width: 100%;
  background: linear-gradient(90deg, #001d62, #5f0720);
  color: #fff;
  padding: 30px 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  animation: stripSlideUp 0.7s ease forwards;
}

.event-strip p {
  margin: 0;
  opacity: 0;
  animation: textPulse 1.5s infinite ease-in-out 0.7s;
}
.event-strip.marquee p {
  white-space: nowrap;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes stripSlideUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes textPulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.hero-special-overlay.show {
  opacity: 1;
}

.normal-text.hide {
  opacity: 0;
  pointer-events: none;
}

.normal-text,
.hero-special-overlay {
  transition: opacity 0.6s ease;
  opacity: 1;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-special-overlay {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hero-special-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.image-carousel-banner {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Accordion Corporate Style */
.accordion-button {
  background-color: #ffffff;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 16px;
  border: none;
  box-shadow: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #f4f6f8;
  color: #222;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 18px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Fix icon alignment */
.accordion-button img {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

/* Add smooth opening animation */
.accordion-collapse {
  transition: height 0.25s ease;
}

/* Remove background jump */
.section-with-background {
  background-attachment: fixed !important;
  transition: none !important;
}

.accordion {
  width: 100%; /* Or a fixed width like 500px */
  max-width: 800px; /* Optional: keep consistent look */
  margin: 0 auto; /* Center the accordion container on page */
}
.accordion-body {
  text-align: left;
}

/* Prevent layout jumping when active */
.accordion-item {
  width: 100%;
}

.backoffice .accordion-button:not(.collapsed) {
  background: #370e62;
  color: #d4af37;
  font-size: 18px;
}

.min-vh-60 {
  min-height: 60vh;
}

/* .services .item p {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid #eee;
} */
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr); /* 3 items desktop */
}

.services-grid .item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: left; /* left align text */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Responsive — 2 columns on tablet/mobile */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Optional — Full width on very small phones */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.event-activity {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}
.activity-words {
  height: 80px; /* adjust based on your layout */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.network-image-column .image-cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Nice left-to-right gradient overlay */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  );
}
/* 
.activity-words .word {
  color: #fff;
  position: absolute;
  font-size: 5rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.6);
  animation: wordFade 3s ease-in-out;
} */

.word {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  font-size: 5rem;
  white-space: nowrap;
}

/* Only the active word is visible */
.word.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Delay each word (2s difference each) */
/* .activity-words .word:nth-child(1) {
  animation-delay: 0s;
}
.activity-words .word:nth-child(2) {
  animation-delay: 2s;
}
.activity-words .word:nth-child(3) {
  animation-delay: 4s;
}
.activity-words .word:nth-child(4) {
  animation-delay: 6s;
}
.activity-words .word:nth-child(5) {
  animation-delay: 8s;
}
.activity-words .word:nth-child(6) {
  animation-delay: 10s;
}
.activity-words .word:nth-child(7) {
  animation-delay: 12s;
}
.activity-words .word:nth-child(8) {
  animation-delay: 14s;
} */

@keyframes wordFade {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  5% {
    opacity: 1;
    transform: scale(1);
  } /* Quick fade in */
  25% {
    opacity: 1;
    transform: scale(1);
  } /* Fully visible */
  30% {
    opacity: 0;
    transform: scale(0.95);
  } /* Fade out */
  100% {
    opacity: 0;
  } /* Fully hidden rest of time */
}

.member-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

@media (max-width: 576px) {
  .member-benefits img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
