/**
* Main CSS File - Premium Corporate Design for InvestIQ Oak Wealth
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Corporate Palette */
  --primary-color: #003221;
  /* Dark Green - Requested */
  --secondary-color: #ba8e32;
  /* Gold - Requested */
  --accent-color: #004d33;
  /* Lighter Dark Green - Innovation */

  /* Bootstrap Override */
  --bs-primary: #003221;
  --bs-primary-rgb: 0, 50, 33;

  /* Neutrals */
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --dark-bg: #002619;

  --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.dark-background {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

.dark-background h2,
.dark-background h3,
.dark-background p {
  color: var(--white) !important;
}


/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
}

.text-gold {
  color: var(--secondary-color) !important;
}


/* Custom Primary Button to override Bootstrap blue */
.btn-primary,
.btn-primary:active,
.btn-primary:focus {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}

.btn-primary:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background-color: var(--primary-color);
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .logo img {
  max-height: 100px;
  margin-right: 8px;
  transition: all 0.3s;
}

.scrolled .header .logo img {
  max-height: 75px;
}

.scrolled .header {
  background-color: rgba(0, 50, 33, 0.95);
  padding: 5px 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}

.header .btn-getstarted {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  transition: 0.3s;
  color: var(--primary-color);
  background: var(--secondary-color);
  text-transform: uppercase;
  border: 2px solid var(--secondary-color);
}

.header .btn-getstarted:hover {
  background: transparent;
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.9);
    padding: 18px 15px;
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  /* Hover Effects */
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus,
  .navmenu li:hover>a {
    color: var(--secondary-color);
  }

  /* Underline Animation */
  .navmenu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 10px;
    left: 15px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease-in-out;
  }

  .navmenu a:hover::after,
  .navmenu .active::after,
  .navmenu li:hover>a::after {
    width: calc(100% - 30px);
  }

  /* Dropdown Menu */
  .navmenu ul ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.2s;
    /* Faster transition */
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu ul li:hover>ul {
    visibility: visible;
    top: 100%;
    opacity: 1;
  }

  .navmenu ul ul li {
    min-width: 200px;
  }

  .navmenu ul ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    color: var(--primary-color);
    font-weight: 500;
  }

  .navmenu ul ul a::after {
    display: none;
    /* No underline for dropdown items */
  }

  .navmenu ul ul a:hover,
  .navmenu ul ul .active:hover,
  .navmenu ul ul li:hover>a {
    color: var(--secondary-color);
    background-color: transparent;
    padding-left: 25px;
    /* Indent effect */
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--white);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    margin: 0;
    padding: 20px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 6px 6px;
  }

  .mobile-nav-active .navmenu ul {
    display: block;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--primary-color);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu li:hover>a {
    color: var(--secondary-color);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    padding: 10px 20px;
    margin: 10px 20px;
    background: #f8f9fa;
    box-shadow: none;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }
}

.hero {
  position: relative;
  padding: 160px 0 100px 0;
  background-color: var(--primary-color);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 50, 33, 0.4), rgba(0, 50, 33, 0.4)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.05);
  z-index: 1;
}

/* Account Section Redesign Styles */
.account-type-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.account-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.account-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 50, 33, 0.15);
  border-color: var(--secondary-color);
}

.account-type-card:hover::before {
  transform: scaleX(1);
}

.account-type-card h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.account-type-card.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.account-type-card.active h3 {
  color: var(--secondary-color);
}

.account-type-card.active i {
  color: var(--white) !important;
}

.account-details {
  display: none;
  margin-top: 30px;
  padding: 40px;
  border-radius: 12px;
  background: #fdfaf3;
  /* Very light gold tint */
  border-left: 6px solid var(--secondary-color);
  box-shadow: var(--shadow-sm);
  animation: slideFadeIn 0.5s ease;
}

.account-details.active {
  display: block;
}

.account-details h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.account-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.account-details ul li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  font-size: 16px;
}

.account-details ul li i {
  color: var(--secondary-color);
  margin-right: 15px;
  font-size: 20px;
}

.btn-open-account {
  margin-top: 20px;
  font-weight: 700 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero h2 {
  color: var(--white);
  font-size: 58px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
}

.welcome-note {
  background: linear-gradient(135deg, #ffffff 0%, #e8c172 50%, #ba8e32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: var(--font-heading);
}

.hero-frame {
  background: linear-gradient(rgba(0, 50, 33, 0.65), rgba(0, 50, 33, 0.75)), url('https://images.unsplash.com/photo-1605142859862-978be7eba909?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  padding: 60px;
  border-radius: 20px;
  border: 1px solid rgba(186, 142, 50, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(186, 142, 50, 0.1);
  position: relative;
  overflow: hidden;
}

.hero h2 {
  color: var(--white);
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  font-weight: 300;
  max-width: 800px;
  letter-spacing: 3px;
  font-style: italic;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.btn-scroll-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  color: var(--secondary-color);
  font-size: 24px;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  margin-top: 20px;
}

.btn-scroll-down:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section {
  padding: 80px 0;
}

.light-background {
  background-color: var(--light-bg);
}

.section-title {
  text-align: center;
  padding-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  color: var(--primary-color);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

/*--------------------------------------------------------------
# About & Services
--------------------------------------------------------------*/
.icon-boxes .icon-box {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease-in-out;
  height: 100%;
  border-bottom: 3px solid transparent;
}

.icon-boxes .icon-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--secondary-color);
}

.icon-boxes .icon-box i {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: block;
}

.icon-boxes .icon-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--secondary-color);
  font-weight: 600;
}

.read-more i {
  margin-left: 8px;
  transition: 0.3s;
}

.read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Stats
--------------------------------------------------------------*/
.stats {
  background: var(--primary-color);
  color: var(--white);
  padding: 80px 0;
  position: relative;
}

.stats img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

.stats .stats-item {
  position: relative;
  z-index: 1;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Global stats styling for uniformity */
/* Global stats styling for uniformity */
.stats .stats-item span {
  display: inline-block;
  font-size: clamp(16px, 1.4vw, 26px);
  /* Use clamp to dynamically scale text */
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
  white-space: nowrap;
}

.stats .stats-percent {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
  margin-left: 5px;
  display: inline-block;
}

/* Specific fix for very large numbers */
.stats .stats-item.large-number span {
  font-size: 26px;
  /* Match the default size */
}

.stats .stats-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  /* Prevent title from wrapping */
}

/*--------------------------------------------------------------
# Reports Section (Restyled Pricing)
--------------------------------------------------------------*/
.pricing .pricing-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.pricing .pricing-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pricing .pricing-item h3 {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing .pricing-item h4 {
  font-size: 20px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.8);
}

.pricing .pricing-item .icon {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 20px;
}

.pricing .pricing-item ul {
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing .pricing-item ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.pricing .pricing-item ul i {
  color: var(--secondary-color);
  font-size: 18px;
  margin-right: 10px;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: var(--primary-color);
  background: var(--secondary-color);
  transition: all 0.3s;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  width: 100%;
}

.pricing .buy-btn:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: scale(1.05);
}

.pricing .pricing-item.featured {
  background: rgba(186, 142, 50, 0.1);
  /* Subtle gold tint */
  border: 1px solid rgba(186, 142, 50, 0.3);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h3 strong {
  font-weight: 700;
  color: var(--secondary-color);
}

.faq .content p {
  color: #6c757d;
  font-size: 15px;
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq .faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.faq .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  color: var(--primary-color);
}

.faq .faq-item h3 .num {
  color: var(--secondary-color);
  padding-right: 5px;
}

.faq .faq-item h3:hover {
  color: var(--secondary-color);
}

.faq .faq-item .faq-content {
  display: none;
  padding: 15px 0 0 0;
}

.faq .faq-item.faq-active .faq-content {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.faq .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: var(--secondary-color);
}

.faq .faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

<style>
/* Video Thumbnail Styling for Carousel */
.video-thumbnail-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumbnail-wrapper:hover .video-thumbnail {
  transform: scale(1.05);
}

.play-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: #fff;
  opacity: 0.9;
  transition: all 0.3s ease;
  pointer-events: none;
}

.video-thumbnail-wrapper:hover .play-icon-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  color: #ba8e32;
}

.video-thumbnail-wrapper a {
  display: block;
  text-decoration: none;
}

/* Add arrow icon to Watch Video links */
.testimonials .text-gold {
  color: #ba8e32;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.testimonials .text-gold:hover {
  color: #9b7428;
  gap: 8px;
}

/* Ensure testimonial items have proper spacing */
.testimonials .testimonial-item {
  padding: 20px;
}
</style>

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 40px 0;
  background: var(--white);
}

.clients img {
  max-width: 60%;
  transition: all 0.3s ease-in-out;
  filter: grayscale(100);
  opacity: 0.5;
}

.clients img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: var(--primary-color);
  color: var(--white);
  font-size: 14px;
  padding-top: 60px;
}

.footer h4 {
  color: var(--secondary-color);
  font-size: 18px;
  padding-bottom: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  line-height: 2;
}

.footer .footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--secondary-color);
}

.footer .copyright {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  text-align: center;
  margin-top: 40px;
}

/*--------------------------------------------------------------
# Our Team (Consolidated)
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Gallery / Weekly Buzz (Consolidated)
--------------------------------------------------------------*/
.gallery .img-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  cursor: pointer;
}

.gallery .img-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
}

.gallery .img-container:hover img {
  transform: scale(1.1);
}

.gallery .img-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  transition: opacity 0.3s;
}

.gallery .img-content .title {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.gallery .img-content .category {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}

.gallery .img-content-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 50, 33, 0.9);
  /* Primary Color Overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 20px;
}

.gallery .img-container:hover .img-content-hover {
  opacity: 1;
}

.gallery .img-content-hover .title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.gallery .img-content-hover .category {
  font-size: 16px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Hub Hero Buttons */
.btn-hub-hero {
  background: #ba8e32 !important;
  color: #003221 !important;
  font-weight: 700 !important;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-hub-hero:hover {
  background: #fff !important;
  color: #003221 !important;
  transform: translateY(-2px);
}
/* ADD THIS CSS TO YOUR assets/css/main.css FILE */
/* OR CREATE A SEPARATE CSS FILE AND LINK IT IN THE HEAD */

/* Team Member Card Uniform Height Fix */

/* Make all team member cards the same height */
.team-wrap {
  display: flex;
  margin-bottom: 30px;
}

.team-member {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* Ensure the image container is consistent */
.team-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio - makes square images */
  border-radius: 8px;
  margin-bottom: 20px;
}

.team-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay styling */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(186, 142, 50, 0.95);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.team-img:hover .overlay {
  opacity: 1;
}

.team-details {
  color: #fff;
  overflow-y: auto;
  max-height: 100%;
}

.team-details p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Team title and role - fixed height */
.team-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member span {
  color: #ba8e32;
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  min-height: 25px;
}

/* Social icons */
.socials {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.socials a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.socials a:hover {
  background: #fff;
  color: #ba8e32;
  transform: translateY(-3px);
}

/* Ensure equal heights in each row */
.team-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .team-img {
    padding-top: 100%; /* Keep square on mobile */
  }
  
  .team-details p {
    font-size: 0.85rem;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  /* For tablets - 2 columns */
  .team-wrap {
    min-height: 400px;
  }
}

@media (min-width: 992px) {
  /* For desktop - 3 columns */
  .team-wrap {
    min-height: 450px;
  }
}