:root {
  --default-font: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  /* Modern, clean font stack */
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Pure white background for a clean modern look */
  --default-color: #212529;
  /* Dark gray text for good contrast */
  --heading-color: black;
  /* Optional: a deep #f7d772 for headings, looks modern */
  --accent-color:#f7d772;
  /* Your brand accent color */
  --surface-color: #ffffff;
  /* Cards and boxes can stay white too for minimal look */
  --contrast-color: #ffffff;
  /* For text over accent elements */
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #f7d772;
  /* The default color of the main navmenu links */
  --nav-hover-color: white;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: white;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: black;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: black;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
padding:20px !importent;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

p{
    text-align: justify;    /* Align text evenly across lines */
 color: white;
}
.main{
  background-color: black;
}
li{
  color: white;
}


/* loader */

   /* Fullscreen overlay */
    #page-loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #0d0d0d;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      flex-direction: column;
      color: #ffd700;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Spinner styling */
    .loader-wrapper {
      text-align: center;
    }

    .spinner {
      width: 60px;
      height: 60px;
      border: 8px solid rgba(255, 215, 0, 0.2);
      border-top: 8px solid #ffd700;
      border-radius: 50%;
      animation: spin 1.2s linear infinite;
      margin: 0 auto 15px auto;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Loading text */
    #page-loader p {
      font-size: 1.2rem;
      letter-spacing: 2px;
    }

    /* Sample page content */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      height: 200vh; /* To scroll and show the loader effect */
      background: #f0f0f0;
    }
 
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  /* --background-color: rgba(255, 255, 255, 0);\
   */
   background-color: black !important;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo i {
  font-size: 24px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

/* .scrolled .header {
  /* box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1); */
/* } */ 

.header .container-fluid {
  /* background: black; */
  border-radius: 20px;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 253, 253, 0.682);
}

.py-5 {
  margin-top: 200px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: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;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}
  .scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #f7d772;
  color: #fff;
  border-radius: 50%;
  padding: 10px 12px;
  font-size: 24px;
  display: none;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}
.scroll-top.active {
  display: flex !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  scroll-margin-top: 90px;
  overflow: clip;
  background: black !important;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  /* color: white; */
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* === Global: Recommended Font === */
body {
  color: var(--default-color);
  background-color: black;
  font-family: 'Inter', sans-serif;
  /* modern, clean font */
}

:root {
  --background-color: #ffffff;
  /* use pure white for fresh look */
  --default-color: black;
  --heading-color: #f7d772;
  --accent-color: #f7d772;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* === HERO === */
.hero {
  padding: 0;
  overflow: hidden;
  position: relative;
  background: black;
}

.hero .hero-container {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 180px 0 80px 0;
}

.hero .hero-container .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* clear semi-black overlay */
  z-index: 2;
}

.hero .hero-container .container {
  z-index: 3;
}

.hero .hero-container .hero-content {
  padding-right: 30px;
}

.hero .hero-container .hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .hero .hero-container .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-container .hero-content h1 {
    font-size: 2rem;
    text-align: center;
  }
}

.hero .hero-container .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .hero .hero-container .hero-content p {
    font-size: 1.1rem;
    text-align: center;
  }
}

.hero .hero-container .hero-content .cta-buttons {
  display: flex;
  gap: 15px;
}

@media (max-width: 576px) {
  .hero .hero-container .hero-content .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.hero .hero-container .hero-content .cta-buttons a {
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}

@media (max-width: 576px) {
  .hero .hero-container .hero-content .cta-buttons a {
    width: 100%;
    max-width: 240px;
  }
}

.hero .hero-container .hero-content .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero .hero-container .hero-content .cta-buttons .btn-primary:hover {
  background-color: #023871;
  /* slight darken for hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero .hero-container .hero-content .cta-buttons .btn-secondary {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.hero .hero-container .hero-content .cta-buttons .btn-secondary:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .hero .hero-container .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
}

/* === STATS CARD === */
.hero .hero-container .stats-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero .hero-container .stats-card .stats-header {
  text-align: center;
  margin-bottom: 25px;
}

.hero .hero-container .stats-card .stats-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.hero .hero-container .stats-card .stats-header .decoration-line {
  height: 3px;
  width: 70px;
  background-color: var(--accent-color);
  margin: 0 auto;
}

.hero .hero-container .stats-card .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.hero .hero-container .stats-card .stats-grid .stat-item {
  display: flex;
  align-items: center;
}

.hero .hero-container .stats-card .stats-grid .stat-item .stat-icon {
  font-size: 1.8rem;
  height: 55px;
  width: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  margin-right: 12px;
  flex-shrink: 0;
}

.hero .hero-container .stats-card .stats-grid .stat-item .stat-content h4 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  color: var(--contrast-color);
}

.hero .hero-container .stats-card .stats-grid .stat-item .stat-content p {
  opacity: 0.8;
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .hero .hero-container .stats-card .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* === EVENT TICKER === */
.hero .event-ticker {
  background-color: var(--accent-color);
  padding: 25px 0;
  color: var(--contrast-color);
}

.hero .event-ticker .ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .event-ticker .ticker-item .date {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero .event-ticker .ticker-item .title {
  margin-right: 15px;
  font-size: 1rem;
  font-weight: 600;
}


.bg-light-#f7d772 {
  background: linear-gradient(to right, #eaf6ff, #f0f7ff);
}

.hero .btn-primary {
  background-color: #f7d772;
  border-color: #f7d772;
  border-radius: 8px;
}

.hero .btn-outline-primary {
  border: 2px solid #f7d772;
  color: #f7d772;
  border-radius: 8px;
}

.hero-text h1 {
  font-size: 2.75rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.125rem;
  color: white;
}


/* Container (optional if placed inside a div) */
.video-play-button-wrapper {
  position: relative;
  display: inline-block;
}

/* Circular Button Style */
.video-play-button {
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  border: 2px solid #f7d772;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.video-play-button i {
  font-size: 2rem;
  color: #f7d772;
  margin-left: 4px;
  /* Slight offset to center the triangle visually */
}

/* Hover Effects */
.video-play-button:hover {
  background-color: #f7d772;
  border-color: #0056b3;
  transform: scale(1.05);
}

.video-play-button:hover i {
  color: #ffffff;
}

.polygon-frame {
  position: absolute;
  top: 8px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  z-index: 1;
  background: linear-gradient(135deg, #f7d77200 0%, #d6eaff 100%);
  clip-path: polygon(0 0, 100% 10%, 90% 100%, 10% 90%);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.1);
  border-radius: 20px;
}

/* ================================
   AFRI ME About Section with Image
================================== */
/* === About Section Styling === */
.afri-about {
  /* background: black; */
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
     background: url("/static/image/bg01.jpg") no-repeat center center !important;
    background-size: cover !important;
    
}



.afri-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* === Image Container with Decorative Shape === */
.afri-about-image {
  flex: 1 1 400px;
  position: relative;
  z-index: 1;
}

.afri-about-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

/* === Polygon or Blob-style Background Behind Image === */
.decorative-shape {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, #d6eaff, #eaf6ff);
  clip-path: polygon(0 0, 100% 10%, 90% 100%, 20% 90%);
  z-index: 1;
  border-radius: 20px;
  opacity: 0.25;
}

/* === Content Area === */
.afri-about-content {
  flex: 1 1 500px;
  z-index: 2;
}

.afri-about-heading {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
}
.text-secondary{
  color: white !important;
}
.afri-about-heading span {
  color: #f7d772;
}

.afri-about-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: white;
  margin-bottom: 1.5rem;
}

.afri-about-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: 2px solid #f7d772;
  border-radius: 50px;
  color: #f7d772;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.afri-about-button:hover,
.afri-about-button:focus {
  background: #f7d772;
  color: #fff;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .afri-about-container {
    flex-direction: column;
    text-align: center;
  }

  .afri-about-content {
    flex: 1 1 100%;
  }

  .afri-about-heading {
    font-size: 2rem;
  }

  .afri-about-body {
    font-size: 1rem;
  }

  .decorative-shape {
    display: none; /* Hide polygon on small screens */
  }
}

/* === Mission, Vision, Values Cards === */
.mission-vision-row {
  margin-top: 60px;
}

.mission-vision-row .value-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mission-vision-row .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mission-vision-row .value-card .card-icon {
  font-size: 2.5rem;
  color: var(--accent-color, #f7d772);
  margin-bottom: 20px;
}

.mission-vision-row .value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color, #2d465e);
}

.mission-vision-row .value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgb(15, 13, 13);
  margin: 0;
}

@media (max-width: 768px) {
  .mission-vision-row {
    margin-top: 40px;
  }

  .mission-vision-row .value-card {
    padding: 30px 20px;
  }
}

/* === Trade Categories Block Section === */


/* Section general styles */
.trade-sectors-block {
  padding: 60px 0;
}

.trade-sectors-block .section-title h2 {
  color: var(--heading-color);
  font-weight: 700;
}

.trade-sectors-block .section-title p {
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto;
}

/* Image styling */
.trade-sectors-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.trade-sectors-img img {
  width: 100%;
  border-radius: 12px;
}

.trade-sectors-img .img-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent-color);
  padding: 12px 20px;
  border-radius: 6px;
}

.trade-sectors-img .img-overlay h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
}

/* Content card styles */
.trade-sectors-content .sector-item {
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.trade-sectors-content .sector-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.trade-sectors-content .sector-item .icon-box {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 15px;
}

.trade-sectors-content .sector-item h4 {
  font-size: 20px;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.trade-sectors-content .sector-item p,
.trade-sectors-content .sector-item ul {
  color: white;
  margin: 0;
}

.trade-sectors-content .sector-item ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.trade-sectors-content .sector-item ul li {
  list-style: disc;
  margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .trade-sectors-img .img-overlay {
    position: static;
    margin-top: 15px;
    display: inline-block;
  }
}

/* Why Choose Us Section */

.why-choose-us-section {
  padding: 80px 0;
  position: relative;
}

.why-choose-us-section .section-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.why-choose-us-section .section-header .highlight {
  color: var(--accent-color);
  /* red accent */
}

.why-choose-us-section .section-header .subtitle {
  color: white;
  max-width: 600px;
  margin: 15px auto 40px auto;
}

.why-card {
  padding: 30px 20px;
  border: none;
  background: transparent;
  position: relative;
}

.icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px auto;
  border: 2px solid #f7d772;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: --;
  font-size: 24px;
  transition: all 0.3s ease;
  background: white;
}

.step-number {
  font-size: 16px;
  color: #999;
  margin-bottom: 10px;
}

.why-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-text {
  color: white;
  font-size: 15px;
  line-height: 1.6;
}

.why-card:hover .icon-circle {
  background: var(--accent-color);
  color: #fff;
}

.why-card:hover {
  cursor: pointer;
}

/* Optional: background circles */
.why-choose-us-section::before,
.why-choose-us-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(230, 230, 230, 0.3);
  z-index: 1;
}

.why-choose-us-section::before {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
}

.why-choose-us-section::after {
  width: 120px;
  height: 120px;
  bottom: 15%;
  left: 8%;
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-overview {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats .stats-overview .stats-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.stats .stats-overview .stats-description {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: white;
}

.stats .stats-overview .stats-cta {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.stats .stats-overview .stats-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.stats .stats-overview .stats-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.stats .stats-overview .stats-cta .btn-outline {
  border: 2px solid var(--heading-color);
  color: var(--heading-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  background-color: transparent;
  transition: all 0.3s ease;
}

.stats .stats-overview .stats-cta .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .stats .stats-overview {
    margin-bottom: 3rem;
  }
}

.stats .stats-card {
  background-color: #333;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.stats .stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats .stats-card .stats-icon {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--accent-color);
}

.stats .stats-card .stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  line-height: 1;
}

.stats .stats-card .stats-label {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.stats .achievements-gallery {
  margin-top: 2rem;
}

.stats .achievements-gallery .achievement-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.stats .achievements-gallery .achievement-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.stats .achievements-gallery .achievement-item .achievement-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.stats .achievements-gallery .achievement-item .achievement-content h4 {
  color: var(--contrast-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.stats .achievements-gallery .achievement-item .achievement-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.stats .achievements-gallery .achievement-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Recent News Section
--------------------------------------------------------------*/
.recent-news article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-news .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-news .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-news .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-news .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-news .title a:hover {
  color: var(--accent-color);
}

.recent-news .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-news .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-news .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .section-title {
  margin-bottom: 3rem;
}

.events .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.events .section-title p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .event-filters .form-select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.events .event-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.events .event-card {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.events .event-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.events .event-card .event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  min-width: 100px;
}

.events .event-card .event-date .month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.events .event-card .event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.5rem 0;
}

.events .event-card .event-date .year {
  font-size: 0.9rem;
}

.events .event-card .event-content {
  padding: 1.5rem;
  flex: 1;
}

.events .event-card .event-content h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  font-weight: 600;
}

.events .event-card .event-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.events .event-card .event-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.events .event-card .event-tag.academic {
  background-color: #e3f2fd;
  color: #0d47a1;
}

.events .event-card .event-tag.sports {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.events .event-card .event-tag.arts {
  background-color: #ffebee;
  color: #c62828;
}

.events .event-card .event-tag.community {
  background-color: #fff3e0;
  color: #e65100;
}

.events .event-card .event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.events .event-card .event-meta .meta-item {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.events .event-card .event-meta .meta-item i {
  margin-right: 0.5rem;
  font-size: 1rem;
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events .event-card .event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.events .event-card .event-actions .btn-learn-more {
  padding: 0.5rem 1.25rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
}

.events .event-card .event-actions .btn-learn-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.events .event-card .event-actions .btn-calendar {
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.events .event-card .event-actions .btn-calendar i {
  margin-right: 0.3rem;
}

.events .event-card .event-actions .btn-calendar:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.events .btn-view-all {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.events .btn-view-all:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .events .event-card {
    flex-direction: column;
  }

  .events .event-card .event-date {
    flex-direction: row;
    padding: 1rem;
    gap: 0.5rem;
    min-width: auto;
  }

  .events .event-card .event-date .month,
  .events .event-card .event-date .day,
  .events .event-card .event-date .year {
    margin: 0;
  }

  .events .event-card .event-date .day {
    font-size: 1.5rem;
    margin: 0 0.3rem;
  }

  .events .event-actions {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# History Section
--------------------------------------------------------------*/
.history .about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.history .about-content h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.history .about-content p {
  margin-bottom: 30px;
}

.history .about-content .timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 30px;
}

.history .about-content .timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.history .about-content .timeline .timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.history .about-content .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.history .about-content .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.history .about-content .timeline .timeline-item .timeline-content h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.history .about-content .timeline .timeline-item .timeline-content p {
  margin-bottom: 0;
}

.history .about-image {
  position: relative;
}

.history .about-image img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.history .about-image .mission-vision {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .history .about-image .mission-vision {
    grid-template-columns: 1fr;
  }
}

.history .about-image .mission-vision .mission,
.history .about-image .mission-vision .vision {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.history .about-image .mission-vision .mission h3,
.history .about-image .mission-vision .vision h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}

.history .about-image .mission-vision .mission h3:before,
.history .about-image .mission-vision .vision h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 20px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.history .about-image .mission-vision .mission p,
.history .about-image .mission-vision .vision p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.history .core-values {
  margin-top: 30px;
}

.history .core-values h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.history .core-values .value-card {
  background-color: var(--surface-color);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.history .core-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.history .core-values .value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.history .core-values .value-card .value-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.history .core-values .value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.history .core-values .value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Leadership Section
--------------------------------------------------------------*/
.leadership .section-subtitle {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.leadership .section-heading {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.leadership .section-description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.leadership .about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.leadership .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership .stats-container {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 8px;
  padding: 20px;
}

.leadership .stats-container .stat-item {
  text-align: center;
  padding: 15px 0;
}

.leadership .stats-container .stat-item h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.leadership .stats-container .stat-item p {
  color: var(--default-color);
  font-size: 0.9rem;
  margin: 0;
}

.leadership .leadership-team {
  margin-top: 4rem;
}

.leadership .leadership-team .leader-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.leadership .leadership-team .leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.leadership .leadership-team .leader-card:hover .social-links {
  opacity: 1;
}

.leadership .leadership-team .leader-card .leader-image {
  position: relative;
  overflow: hidden;
}

.leadership .leadership-team .leader-card .leader-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

.leadership .leadership-team .leader-card .leader-image .social-links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 15px 0 10px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.leadership .leadership-team .leader-card .leader-image .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 5px;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: background-color 0.3s;
}

.leadership .leadership-team .leader-card .leader-image .social-links a:hover {
  background-color: var(--accent-color);
}

.leadership .leadership-team .leader-card .leader-info {
  padding: 20px;
  text-align: center;
}

.leadership .leadership-team .leader-card .leader-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.leadership .leadership-team .leader-card .leader-info .position {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.leadership .leadership-team .leader-card .leader-info .bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .leadership .section-heading {
    font-size: 2rem;
  }

  .leadership .about-image {
    margin-top: 2rem;
    height: 400px;
  }

  .leadership .leadership-team {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .leadership .about-image {
    height: 300px;
  }

  .leadership .stat-item {
    margin-bottom: 15px;
  }
}


/* Modern Gold Trade Section */
.goldtrade {
  padding: 5rem 1.5rem;
  background-color: #fff;
  color: black;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 100%;
  margin: 0 auto;
}

.goldtrade h2 {
  font-weight: 700;
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  color: var(--accent-color);
  /* warm gold */
  letter-spacing: 0.03em;
  line-height: 1.1;
  position: relative;
}

.goldtrade h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #f7d772 0%, rgb(105, 105, 255) 100%);
  border-radius: 2px;
  margin-top: 0.75rem;
}

.goldtrade p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: black;
  margin-bottom: 2rem;
  max-width: 720px;
}

.goldtrade-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 3rem;
  box-shadow: 0 12px 30px rgba(191, 161, 52, 0.15);
  transition: transform 0.3s ease;
}

.goldtrade-img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(191, 161, 52, 0.25);
}

.goldtrade-steps {
  margin-bottom: 3rem;
}

.goldtrade-steps h3 {
  font-weight: 600;
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.goldtrade-steps .steps-wrapper {
  border-left: 3px solid #f7d772;
  padding-left: 1.8rem;
}

.goldtrade-steps .step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  gap: 1rem;
}

.goldtrade-steps .step-number {
  flex-shrink: 0;
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(191, 161, 52, 0.3);
  user-select: none;
}

.goldtrade-steps .step-content h4 {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.goldtrade-steps .step-content p {
  color: black;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.goldtrade-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect */
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(191, 161, 52, 0.2);
}

.goldtrade-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  .goldtrade h2 {
    font-size: 2.25rem;
  }

  .goldtrade-steps h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .goldtrade-steps .step-item {
    flex-direction: column;
  }

  .goldtrade-steps .step-number {
    margin-bottom: 0.5rem;
  }

  .goldtrade p {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Gold Trade Contact Section
--------------------------------------------------------------*/
.goldtrade-contact {
  background: #f9f9f9;
  padding: 60px 0;
}

.goldtrade-contact .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.goldtrade-contact .section-header p {
  color: white;
}

.goldtrade-contact .contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.goldtrade-contact .contact-info h4 {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #333;
}

.goldtrade-contact .contact-info p {
  margin-bottom: 10px;
  color: white;
}

.goldtrade-contact .contact-info i {
  color: #f7d772;
  margin-right: 10px;
}

.goldtrade-contact .php-email-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.goldtrade-contact .php-email-form .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.goldtrade-contact .php-email-form .btn-primary {
  background: #f7d772;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
  color: #fff;
}

.goldtrade-contact .php-email-form .btn-primary:hover {
  background: #f7d772;
}

.goldtrade-contact .social-links {
  margin-top: 20px;
}

.goldtrade-contact .social-links a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.5rem;
  color: #333;
  transition: color 0.3s;
}

.goldtrade-contact .social-links a:hover {
  color: #f7d772;
}



/* Modern Diamond Trade Section */
.diamondtrade {
  padding: 5rem 1.5rem;
  background-color: #fff;
  color: black;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 100%;
  margin: 0 auto;
}

.diamondtrade h2 {
  font-weight: 700;
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  color: var(--accent-color);
  /* diamond #f7d772 */
  letter-spacing: 0.03em;
  line-height: 1.1;
  position: relative;
}

.diamondtrade h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #f7d772 0%, #a8d3e8 100%);
  border-radius: 2px;
  margin-top: 0.75rem;
}

.diamondtrade p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: black;
  margin-bottom: 2rem;
  max-width: 720px;
}

.diamondtrade-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 3rem;
  box-shadow: 0 12px 30px rgba(104, 165, 197, 0.15);
  transition: transform 0.3s ease;
}

.diamondtrade-img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(104, 165, 197, 0.25);
}

.diamondtrade-steps {
  margin-bottom: 3rem;
}

.diamondtrade-steps h3 {
  font-weight: 600;
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.diamondtrade-steps .steps-wrapper {
  border-left: 3px solid #f7d772;
  padding-left: 1.8rem;
}

.diamondtrade-steps .step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  gap: 1rem;
}

.diamondtrade-steps .step-number {
  flex-shrink: 0;
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(104, 165, 197, 0.3);
  user-select: none;
}

.diamondtrade-steps .step-content h4 {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.diamondtrade-steps .step-content p {
  color: black;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.diamondtrade-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(104, 165, 197, 0.2);
}

.diamondtrade-video iframe,
.diamondtrade-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  .diamondtrade h2 {
    font-size: 2.25rem;
  }

  .diamondtrade-steps h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .diamondtrade-steps .step-item {
    flex-direction: column;
  }

  .diamondtrade-steps .step-number {
    margin-bottom: 0.5rem;
  }

  .diamondtrade p {
    max-width: 100%;
  }
}

.quick-links {
  background-color: #f9f9f9;
  padding: 20px 25px;
  border-radius: 8px;
  max-width: 250px;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
  font-family: 'Inter', sans-serif;
}

.quick-links h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #f7d772;
  /* gold accent */
  font-weight: 700;
  border-bottom: 2px solid #f7d772;
  padding-bottom: 0.5rem;
}

.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links ul li {
  margin-bottom: 0.75rem;
}

.quick-links ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.quick-links ul li a:hover {
  color: #f7d772;
  /* darker gold on hover */
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Diamond Trade Contact Section
--------------------------------------------------------------*/
.diamondtrade-contact {
  background: #f9f9f9;
  padding: 60px 0;
}

.diamondtrade-contact .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.diamondtrade-contact .section-header p {
  color: white;
}

.diamondtrade-contact .contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.diamondtrade-contact .contact-info h4 {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #333;
}

.diamondtrade-contact .contact-info p {
  margin-bottom: 10px;
  color: white;
}

.diamondtrade-contact .contact-info i {
  color: var(--accent-color);
  margin-right: 10px;
}

.diamondtrade-contact .php-email-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.diamondtrade-contact .php-email-form .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.diamondtrade-contact .php-email-form .btn-primary {
  background: var(--accent-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
  color: #fff;
}

.diamondtrade-contact .php-email-form .btn-primary:hover {
  background: var(--accent-color);
}

.diamondtrade-contact .social-links {
  margin-top: 20px;
}

.diamondtrade-contact .social-links a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.5rem;
  color: #333;
  transition: color 0.3s;
}

.diamondtrade-contact .social-links a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# General Trading Section
--------------------------------------------------------------*/
.general-trading .intro-wrapper {
  margin-bottom: 70px;
}

.general-trading .intro-wrapper .intro-image {
  position: relative;
}

.general-trading .intro-wrapper .intro-image img {
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.general-trading .intro-wrapper .intro-image .accent-shape {
  position: absolute;
  width: 120px;
  height: 120px;
  background-color: var(--accent-color);
  border-radius: 20px;
  bottom: -30px;
  left: -30px;
  z-index: -1;
  opacity: 0.15;
}

.general-trading .intro-wrapper .intro-content {
  padding-left: 20px;
}

.general-trading .intro-wrapper .intro-content .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 14px;
}

.general-trading .intro-wrapper .intro-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.general-trading .intro-wrapper .intro-content .intro-text {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 17px;
  margin-bottom: 25px;
  line-height: 1.7;
}

.general-trading .intro-wrapper .intro-content .key-highlights .highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.general-trading .intro-wrapper .intro-content .key-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 10px;
}

.general-trading .intro-wrapper .intro-content .key-highlights .highlight-item span {
  font-weight: 500;
}

@media (max-width: 992px) {
  .general-trading .intro-wrapper .intro-content {
    padding-left: 0;
  }

  .general-trading .intro-wrapper .intro-content h2 {
    font-size: 30px;
  }
}

.general-trading .trade-navigation {
  margin-bottom: 40px;
}

.general-trading .trade-navigation .trade-tabs .nav-tabs {
  border: none;
  gap: 15px;
  flex-wrap: wrap;
}

.general-trading .trade-navigation .trade-tabs .nav-tabs .nav-item .nav-link {
  border: none;
  background-color: var(--surface-color);
  color: var(--heading-color);
  border-radius: 10px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.general-trading .trade-navigation .trade-tabs .nav-tabs .nav-item .nav-link .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.general-trading .trade-navigation .trade-tabs .nav-tabs .nav-item .nav-link .icon i {
  font-size: 18px;
}

.general-trading .trade-navigation .trade-tabs .nav-tabs .nav-item .nav-link.active,
.general-trading .trade-navigation .trade-tabs .nav-tabs .nav-item .nav-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .general-trading .trade-navigation .trade-tabs .nav-tabs {
    justify-content: center;
  }

  .general-trading .trade-navigation .trade-tabs .nav-tabs .nav-item .nav-link {
    padding: 12px 16px;
    font-size: 14px;
  }
}

.general-trading .trade-content {
  margin-bottom: 80px;
}

.general-trading .trade-content .trade-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.general-trading .trade-content .trade-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.general-trading .trade-content .trade-item .trade-header {
  padding: 25px 25px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.general-trading .trade-content .trade-item .trade-header .trade-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 28px;
}

.general-trading .trade-content .trade-item .trade-header .trade-type {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

.general-trading .trade-content .trade-item .trade-body {
  padding: 10px 25px 20px;
  flex-grow: 1;
}

.general-trading .trade-content .trade-item .trade-body h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.general-trading .trade-content .trade-item .trade-body p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  line-height: 1.6;
}

.general-trading .trade-content .trade-item .trade-body .trade-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.general-trading .trade-content .trade-item .trade-body .trade-details li {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.general-trading .trade-content .trade-item .trade-body .trade-details li i {
  margin-right: 8px;
  font-size: 16px;
  min-width: 20px;
}

.general-trading .trade-content .trade-item .trade-footer {
  padding: 15px 25px 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.general-trading .trade-content .trade-item .trade-footer .trade-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

.general-trading .trade-content .trade-item .trade-footer .trade-link i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.general-trading .trade-content .trade-item .trade-footer .trade-link:hover i {
  transform: translateX(5px);
}

/* Specific styling for each trade category */
.general-trading .trade-content .trade-item.agriculture .trade-header .trade-icon {
  background-color: color-mix(in srgb, #8BC34A, transparent 88%);
  /* Green for agriculture */
  color: #8BC34A;
}

.general-trading .trade-content .trade-item.agriculture .trade-header .trade-type {
  background-color: color-mix(in srgb, #8BC34A, transparent 85%);
  color: #8BC34A;
}

.general-trading .trade-content .trade-item.agriculture .trade-footer .trade-link {
  color: #8BC34A;
}

.general-trading .trade-content .trade-item.healthcare .trade-header .trade-icon {
  background-color: color-mix(in srgb, #E91E63, transparent 88%);
  /* Pink for healthcare */
  color: #E91E63;
}

.general-trading .trade-content .trade-item.healthcare .trade-header .trade-type {
  background-color: color-mix(in srgb, #E91E63, transparent 85%);
  color: #E91E63;
}

.general-trading .trade-content .trade-item.healthcare .trade-footer .trade-link {
  color: #E91E63;
}

.general-trading .trade-content .trade-item.sports .trade-header .trade-icon {
  background-color: color-mix(in srgb, #FFC107, transparent 88%);
  /* Amber for sports */
  color: #FFC107;
}

.general-trading .trade-content .trade-item.sports .trade-header .trade-type {
  background-color: color-mix(in srgb, #FFC107, transparent 85%);
  color: #FFC107;
}

.general-trading .trade-content .trade-item.sports .trade-footer .trade-link {
  color: #FFC107;
}

.general-trading .trade-content .trade-item.education .trade-header .trade-icon {
  background-color: color-mix(in srgb, #03A9F4, transparent 88%);
  /* Light #f7d772 for education */
  color: #03A9F4;
}

.general-trading .trade-content .trade-item.education .trade-header .trade-type {
  background-color: color-mix(in srgb, #03A9F4, transparent 85%);
  color: #03A9F4;
}

.general-trading .trade-content .trade-item.education .trade-footer .trade-link {
  color: #03A9F4;
}

.general-trading .trade-content .trade-item.other .trade-header .trade-icon {
  background-color: color-mix(in srgb, #607D8B, transparent 88%);
  /* #f7d772 Grey for other */
  color: #607D8B;
}

.general-trading .trade-content .trade-item.other .trade-header .trade-type {
  background-color: color-mix(in srgb, #607D8B, transparent 85%);
  color: #607D8B;
}

.general-trading .trade-content .trade-item.other .trade-footer .trade-link {
  color: #607D8B;
}

.general-trading .featured-trade-wrapper {
  margin-bottom: 80px;
}

.general-trading .featured-trade-wrapper .section-heading h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.general-trading .featured-trade-wrapper .section-heading p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 18px;
}

.general-trading .featured-trade-wrapper .featured-trade-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-image img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.5s;
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-image:hover img {
  transform: scale(1.05);
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-image .trade-label {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content {
  padding: 15px 0 0;
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 700;
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
  line-height: 1.7;
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content .trade-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content .trade-highlights .highlight {
  display: flex;
  align-items: flex-start;
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content .trade-highlights .highlight .highlight-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  margin-right: 15px;
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content .trade-highlights .highlight .highlight-icon i {
  color: var(--accent-color);
  font-size: 22px;
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content .trade-highlights .highlight .highlight-info h4 {
  font-size: 15px;
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content .trade-highlights .highlight .highlight-info p {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content .trade-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content .trade-highlights {
    grid-template-columns: 1fr;
  }
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content .featured-trade-action {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content .featured-trade-action .btn-inquire {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content .featured-trade-action .btn-inquire:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content .featured-trade-action .btn-details {
  background-color: transparent;
  color: var(--heading-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 80%);
  transition: all 0.3s;
}

.general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content .featured-trade-action .btn-details:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .general-trading .featured-trade-wrapper .featured-trade-card {
    padding: 25px;
  }

  .general-trading .featured-trade-wrapper .featured-trade-card .featured-trade-content h3 {
    font-size: 22px;
  }
}

.general-trading .stats-wrapper .stats-content {
  padding-right: 30px;
}

.general-trading .stats-wrapper .stats-content .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 14px;
}

.general-trading .stats-wrapper .stats-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.general-trading .stats-wrapper .stats-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
  line-height: 1.7;
}

.general-trading .stats-wrapper .stats-content .btn-about {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.general-trading .stats-wrapper .stats-content .btn-about:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .general-trading .stats-wrapper .stats-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .general-trading .stats-wrapper .stats-content h2 {
    font-size: 30px;
  }
}

.general-trading .stats-wrapper .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.general-trading .stats-wrapper .stats-grid .stat-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.general-trading .stats-wrapper .stats-grid .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.general-trading .stats-wrapper .stats-grid .stat-card .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.general-trading .stats-wrapper .stats-grid .stat-card .stat-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.general-trading .stats-wrapper .stats-grid .stat-card .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.general-trading .stats-wrapper .stats-grid .stat-card .stat-title {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
}

@media (max-width: 576px) {
  .general-trading .stats-wrapper .stats-grid {
    grid-template-columns: 1fr;
  }
}


/*--------------------------------------------------------------
# Agricultural Commodities Section
--------------------------------------------------------------*/
.agricultural-commodities .section-heading {
  margin-bottom: 60px;
}

.agricultural-commodities .section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
}

.agricultural-commodities .section-heading p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto;
}

/* Content Blocks */
.agricultural-commodities .ac-block {
  margin-bottom: 80px;
}

.agricultural-commodities .ac-block img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.agricultural-commodities .ac-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.agricultural-commodities .ac-block p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Highlights List */
.agricultural-commodities .ac-highlights {
  padding-left: 0;
  list-style: none;
}

.agricultural-commodities .ac-highlights li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--heading-color);
}

.agricultural-commodities .ac-highlights li i {
  font-size: 18px;
  margin-right: 10px;
  color: var(--accent-color);
}

/* Responsive */
@media (max-width: 992px) {
  .agricultural-commodities .section-heading h2 {
    font-size: 30px;
  }

  .agricultural-commodities .ac-block h3 {
    font-size: 20px;
  }

  .agricultural-commodities .ac-block p {
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Trading Services Section
--------------------------------------------------------------*/
.trading .trading-hero {
  padding: 2rem 0 4rem;
  position: relative;
}

.trading .trading-hero .hero-content {
  position: relative;
  z-index: 2;
}

.trading .trading-hero .hero-content .trading-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.trading .trading-hero .hero-content h2 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.trading .trading-hero .hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 90%;
  color: white;
}

.trading .trading-hero .hero-content .trading-metrics {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.trading .trading-hero .hero-content .trading-metrics .metric .counter {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trading .trading-hero .hero-content .trading-metrics .metric .label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
}

.trading .trading-hero .hero-content .btn-discover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.trading .trading-hero .hero-content .btn-discover:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.trading .trading-hero .hero-image-wrapper .hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  position: relative;
}

.trading .trading-hero .hero-image-wrapper .hero-image img {
  border-radius: 20px;
  transition: transform 0.8s ease;
  width: 100%;
}

.trading .trading-hero .hero-image-wrapper .hero-image img:hover {
  transform: scale(1.05);
}

.trading .notable-trading {
  padding: 5rem 0;
}

.trading .notable-trading .trade-profile {
  background-color: #333;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.trading .notable-trading .trade-profile:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.trading .notable-trading .trade-profile .profile-header .profile-img {
  height: 260px;
  overflow: hidden;
}

.trading .notable-trading .trade-profile .profile-header .profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.trading .notable-trading .trade-profile .profile-header .profile-img img:hover {
  transform: scale(1.1);
}

.trading .notable-trading .trade-profile .profile-header .profile-year {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
}

.trading .notable-trading .trade-profile .profile-body {
  padding: 2rem;
}

.trading .notable-trading .trade-profile .profile-body h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.trading .notable-trading .trade-profile .profile-body .profile-title {
  display: block;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.trading .notable-trading .trade-profile .profile-body p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: white;
}

.trading .notable-trading .trade-profile .profile-body .btn-view-profile {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 20px;
}

.trading .notable-trading .trade-profile .profile-body .btn-view-profile i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.trading .notable-trading .trade-profile .profile-body .btn-view-profile:hover i {
  transform: translateX(5px);
}

.trading .notable-trading .trade-profile .achievement-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.trading .notable-trading .trade-profile:hover .achievement-badge {
  transform: translateY(0);
}

.trading .impact-banner {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}

.trading .impact-banner .impact-content h3 {
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.trading .impact-banner .impact-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: white;
}

.trading .impact-banner .impact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trading .impact-banner .impact-buttons .btn-donate,
.trading .impact-banner .impact-buttons .btn-learn-more {
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.trading .impact-banner .impact-buttons .btn-donate {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.trading .impact-banner .impact-buttons .btn-donate:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.trading .impact-banner .impact-buttons .btn-learn-more {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.trading .impact-banner .impact-buttons .btn-learn-more i {
  margin-left: 0.75rem;
  transition: transform 0.3s ease;
}

.trading .impact-banner .impact-buttons .btn-learn-more:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.trading .impact-banner .impact-buttons .btn-learn-more:hover i {
  transform: translateX(5px);
}

.trading .impact-banner .impact-image img {
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.trading .impact-banner .impact-image .impact-stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.25rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 220px;
}

.trading .impact-banner .impact-image .impact-stat .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trading .impact-banner .impact-image .impact-stat .stat-text {
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 992px) {
  .trading .trading-hero .hero-content {
    margin-bottom: 3rem;
    text-align: center;
  }

  .trading .trading-hero .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .trading .trading-hero .hero-content .trading-metrics {
    justify-content: center;
    flex-wrap: wrap;
  }

  .trading .impact-banner .impact-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .trading .impact-banner .impact-buttons {
    justify-content: center;
  }

  .trading .impact-banner .impact-image .impact-stat {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .trading .trading-hero .hero-content h2 {
    font-size: 2rem;
  }

  .trading .trading-hero .hero-content .trading-metrics {
    gap: 1.5rem;
  }

  .trading .impact-banner {
    padding: 2rem;
  }
}




/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}


/* extra css */

    .afri-about-image {
      position: relative;
      z-index: 1;
    }

    .svg-blob-shape {
      position: absolute;
      top: -40px;
      left: -40px;
      width: 750px;
      height: 800px;
      z-index: 0;
      transform: rotate(-10deg);
    }


  /* precious */

  
    .timeline-step {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 15px;
      text-align: center;
      width: 220px;
      flex-shrink: 0;
      margin-bottom: 20px;
    }

    .circle {
      background: #0d6efd;
      color: #fff;
      width: 50px;
      height: 50px;
      font-size: 20px;
      font-weight: bold;
      border-radius: 50%;
      line-height: 50px;
      margin: 0 auto 15px;
    }

    .arrow-curve {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 10px;
    }

    .arrow-curve img {
      transform: rotate(0deg);
      width: 40px;
      opacity: 0.6;
    }

    .timeline {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 15px;
    }

    .timeline::-webkit-scrollbar {
      display: none;
    }

    /* --- Why Trade With Us --- */
    .info-card {
      transition: all 0.3s ease;
      border-left: 5px solid transparent;
    }

    .info-card:hover {
      border-left: 5px solid #0d6efd;
      background-color: #f8f9ff;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    }

    .icon-box i {
      font-size: 2.5rem;
    }
    /* Hide SVG on screens smaller than 768px */
@media (max-width: 768px) {
  .blob {
    display: none;
  }
}



