@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');


body {
  font-family: "DM Sans", sans-serif;
  background: #F5F1E5;
}

:root {
  --btn-clr: #f2a93b;
  --black: #1A1A1A;
  --footer-bg: #F5F1E5;
  --socket-bg: #2d3737;
  --accent-green: #4FD98E;
  --text-main: #444;
  --section-bg: linear-gradient(90deg, #55d68d, #f6b445);
  --card-width: 250px;
  --card-gap: 30px;
  --total-cards: 4;
}

/* TOP BAR */
.top-bar {
  background: var(--section-bg);
  padding: 8px 0;
  font-size: 14px;
  border-bottom-left-radius: 50px;
}

.top-bar a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
}

.lang-btn {
  border: none;
  background: #fff;
  border-radius: 50px;
  padding: 4px 12px;
  font-weight: 600;
}

.icon-btn {
  border: none;
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

/* NAVBAR */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #222;
  padding: 18px 14px;
}

.navbar {
  background: #F5F1E5;
}

.dropdown-menu {
  border-radius: 0;
  border: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

/* HERO */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  object-fit: cover;
  border-bottom-right-radius: 120px;
}

/* MEGA DROPDOWN */
.mega-dropdown {
  position: static;
}

.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  border: none;
  padding: 40px 0;
  background: #f6f3e9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

/* CARD */
.mega-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.mega-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom-right-radius: 150px;
}

.mega-card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-bottom-right-radius: 150px;
}
.mega-card-content p{
  color: #fff;
}

/* TITLES */
.mega-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  border-bottom: 1px solid #999;
  padding-bottom: 6px;
  text-align: start;
}

/* LIST */
.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: start;
}

.mega-list li {
  margin-bottom: 10px;
}

.mega-list a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.mega-list a:hover {
  color: #c49b2c;
}

.mega-card-content h5 {
  text-align: start;
}

.mega-card-content p {
  text-align: start;
}

/* MOBILE */
@media (max-width: 991px) {
  .hero-img {
    height: 140px;
    border-bottom-right-radius: 60px;
  }

  .top-bar .container {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (min-width: 992px) {
  .mega-dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
  }

  .mega-dropdown>.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    border-bottom-right-radius: 100px;
  }
}

/* MOBILE MENU DESIGN */
@media (max-width: 991px) {

  .navbar-collapse {
    background: #F5F1E5;
    padding: 10px 16px 30px;
  }

  .navbar-nav .nav-link {
    padding: 14px 10px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
  }

  .dropdown-menu {
    position: static !important;
    box-shadow: none;
    background: #fafafa;
    margin: 0;
    padding: 10px 15px;
  }

  /* Mega menu simplified */
  .mega-menu {
    padding: 0;
    background: #fafafa;
  }

  .mega-title {
    font-size: 12px;
    margin-top: 12px;
  }

  .mega-list li {
    margin-bottom: 8px;
  }

  .mega-list a {
    display: block;
    padding: 6px 0;
  }


  /* Dropdown arrow right aligned */
  .nav-link.dropdown-toggle::after {
    float: right;
    margin-top: 8px;
  }

  .mobile-clr {
    background: var(--section-bg);
    padding: 22px 12px;
    border-bottom-left-radius: 50px;
    position: relative;
    bottom: 7px;
    left: 10px;
  }
}

/* MOBILE TOP LINKS */
.mobile-top-links {
  background: var(--section-bg);
  padding: 12px 15px;
  border-bottom-left-radius: 40px;
}

.mobile-top-links .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-top-links a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 1px solid #eee;
}
/* Smooth arrow rotation */
.nav-link.dropdown-toggle::after {
  transition: transform 0.3s ease;
}

/* Desktop hover arrow up */
@media (min-width: 992px) {
  .mega-dropdown:hover > .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Active class arrow up */
.nav-item.show > .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}

/* MOBILE BOTTOM LINKS BAR */
.mobile-bottom-links {
  display: none; /* default hidden */
  background: var(--section-bg);;
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  border-bottom-right-radius: 60px;
}

.mobile-bottom-links a {
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-bottom-links span {
  margin: 0 6px;
  opacity: 0.6;
}

/* show only when menu open */
.mobile-bottom-links.show {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}


/*=================== importent css ==================*/
/*=================== importent css ==================*/
.ptb-64 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.sincebg {
  background: linear-gradient(45deg, #132E26, #4FD98E);
  border-top-right-radius: 150px;
}

.sincebg2 {
  background: linear-gradient(45deg, #132E26, #4FD98E);
  border-bottom-right-radius: 150px;
}

.sincebg h1 {
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.6px;
  font-optical-sizing: auto;
}

p {
  font-family: DM Sans;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #1A1A1A;
}
span{
  font-family: DM Sans;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

/* button */
.learn-btn {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 18px;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;

}

.learn-btn .icon {
  width: 28px;
  height: 28px;
  background: var(--btn-clr);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.learn-btn:hover {
  background: #f9f9f9;
}

.learn-btn:hover .icon {
  transform: translateX(2px);
}


.learn-btn2 {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 18px;
  background: #efe8d6;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.learn-btn2 .icon {
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.learn-btn2:hover {
  background: #ece8da;
}

.learn-btn2:hover .icon {
  transform: translateX(2px);
}


/* LEARN BUTTON 3 */
.learn-btn3 {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 18px;
  background: var(--btn-clr);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
}

.learn-btn3 .icon {
  width: 26px;
  height: 26px;
  background: #ffffff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.learn-btn3:hover .icon {
  transform: translateX(2px);
}

.sectionheading h3 {
  font-family: "DM Sans";
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.84px;
}

.news-title {
  font-family: "DM Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black);
  letter-spacing: -0.64px;
  margin-bottom: 20px;
}

.news-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.meta-badge {
  text-align: center;
    font-feature-settings: 'salt' on;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    background: #e7e9e8;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid #020202;
    font-size: 0.8rem;
    color: #020202;
  /* text-align: center;
  font-feature-settings: 'salt' on;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  background: #ebe6d8;
  color: #333;
  padding: 2px 10px;
  border-radius: 50px;
  border: 1px solid #000; */
}

.news-desc {
  font-family: DM Sans;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #1A1A1A;
}

/* resend update */
.updates-section {
  background: linear-gradient(45deg, #4FD98E, #F2B13E);
  overflow: hidden;
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
}

.slider-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease-in-out;
  padding: 20px 0;
}

.update-card-new {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.update-card-new h6{
font-weight: 300;
font-style: Light;
vertical-align: bottom;
font-size: 24px;
}
.update-card {
  min-width: 300px;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #35a776;
}

.card-title {
  font-family: "DM Sans";
  color: #444;
  margin-bottom: 25px;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
}

.card-title2 {
  font-family: "DM Sans";
  color: #444;
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 1.4;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 30px auto 0;
}

.nav-circle {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dots-group {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.dot.active {
  background: #004a40;
  width: 12px;
  height: 8px;
  border-radius: 4px;
}


.economic-initiatives {
  background-color: #ffffff;
}

.initiative-card {
  background: linear-gradient(145deg, #1e2f2a, #16221f);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.initiative-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.initiative-card .card-text {
  color: #4FD98E;
  font-family: DM Sans;
  margin-bottom: 25px;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 100%;

}

/* Icon adjustment */
.initiative-card img {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}


.main-container {
  margin: 0 auto;
  border: 1px solid #b5c4b9;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.tableheader {
  font-family: DM Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  letter-spacing: -2%;
  vertical-align: middle;
  background-color: #edfbf4;
  padding: 15px 20px;
  font-size: 16px;
  color: #132E26;
  border-bottom: 1px solid #b5c4b9;
}

.tableheader2 {
     font-family: DM Sans;
    font-weight: 700 !important;
    font-size: 18px !important;
    vertical-align: middle;
    background-color: #edfbf4;
    color: #132E26;
}

/* Mobile Scroll Logic */
.scroll-wrapper {
  overflow-x: auto;
  /* Horizontal scroll enable karta hai */
  width: 100%;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  /* Fixed 4 columns */
  width: 100%;
  /* Force karta hai ki mobile pe 4 columns chote na hon */
}

.location-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  gap: 10px;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.flag {
  font-size: 1.2rem;
}

.name {
  font-size: 14px;
  color: #374151;
  font-family: DM Sans;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;

}

/* Scrollbar styling (Optional: isse scrollbar clean dikhta hai) */
.scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}





h2 {
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
}


.logo-card img {
  max-width: 80%;
  height: auto;
}



/* Dots (Static for CSS version) */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
}

.dot.active {
  background: #999;
}

.slider-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLTR 20s linear infinite;
}

/* Card */
.logo-card {
  width: var(--card-width);
  height: 140px;
  background: #fff;
  border-radius: 12px;
  margin-right: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  border: 1.5px solid #eaeaea;
}

/* RTL spacing */
html[dir="rtl"] .logo-card {
  margin-right: 0;
  margin-left: 20px;
}

/* LTR Animation */
@keyframes scrollLTR {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* RTL Animation */
html[dir="rtl"] .logo-track {
  animation: scrollRTL 20s linear infinite;
}

@keyframes scrollRTL {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}



.publication-list {
  margin-top: 30px;
}

.publication-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 40px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.card-content h4 {
  font-family: "DM Sans";
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 15px;
  font-weight: 400;
}

.meta-tags {
  display: flex;
  gap: 10px;
}

.tag {
  text-align: center;
  font-feature-settings: 'salt' on;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  background: #e7e9e8;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid #020202;
  font-size: 0.8rem;
  color: #020202;
}



/* Keep your existing desktop CSS above this */

@media (max-width: 767px) {

  /* Stack content vertically in mobile */
  .publication-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }

  /* Adjust heading size for mobile */
  .card-content h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  /* Ensure button takes full width or stays consistent */
  .card-action {
    width: 100%;
  }

}

.site-footer {
  background-color: var(--footer-bg);
  padding-top: 60px;
  border-top-right-radius: 100px;
}

.footer-logo {
  max-width: 250px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 14px;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #000;
  padding-left: 5px;
}

/* Bottom Bar */
.footer-bottom {
  background: linear-gradient(45deg, #4A4E50, #132E26);
  ;
  padding: 20px 0;
  color: white;
  margin-top: 40px;
}

.legal-links a,
.legal-links span {
  color: white;
  text-decoration: none;
  font-size: 13px;
  margin-right: 25px;
}

/* Social Icons Styling */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 35px;
  height: 35px;
  background-color: var(--accent-green);
  color: var(--socket-bg) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.spansence {
  font-family: "DM Sans";
  font-size: 23px;
  margin-top: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .site-footer {
    border-top-right-radius: 50px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .legal-links a {
    margin: 0 10px;
  }

  .sincebg h1 {
    color: #fff;
    font-size: 42px;
    letter-spacing: 1.5px;
  }

  .spansence {
    font-size: 25px;
  }
}


@media (max-width: 768px) {
  .footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
  }

  .legal-links a {
    margin: 0;
    display: inline-block;
  }

  .legal-links span {
    width: 100%;
    display: block;
    margin-top: 10px;
    font-size: 12px;
    order: 3;
  }

  .social-icons {
    order: 4;
  }
}

/* Desktop normal */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.separator {
  margin: 0 6px;
}

/* Mobile */
@media (max-width: 576px) {

  .breadcrumb {
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
  }

  /* Sab hide */
  .breadcrumb-item,
  .separator {
    display: none;
  }

  /* First show */
  .breadcrumb-item:first-child {
    display: inline-flex;
    flex-shrink: 0;
  }

  /* Last show */
  .breadcrumb-item:last-child {
    display: inline-flex;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }

  /* Dots separator */
  .breadcrumb-item:first-child::after {
    content: " ... ";
    font-weight: 600;
    margin: 0 6px;
  }
}

.custom-breadcrumb-nav {
  background-color: #f5f3e7 !important;
  padding: 10px 0;
  border-top: 1px solid #dee2e6;
}

.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
  align-items: center;
  display: flex;
}

/* Home button styling */
.btn-home {
  background-color: #e8e6d9;
  color: #555;
  text-decoration: none;
  padding: 3px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-home:hover {
  background-color: #ddd;
  color: #333;
}



/* Arrow separator styling */
.separator {
  margin: 0 10px;
  color: #888;
  font-size: 12px;
  display: flex;
  align-items: center;
}

/* About Us (Active) button styling */
.btn-about {
  background-color: var(--btn-clr);
  color: #000;
  padding: 3px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* Bootstrap default slash hatane ke liye */
.breadcrumb-item+.breadcrumb-item::before {
  display: none;
}




/* Section Styles */
.research-pub-section {
  background-color: #fff;
  padding: 64px 0;
}

.custom-h3 {
  font-size: 2.2rem;
}

.custom-p {
  color: #555;
  max-width: 90%;
  line-height: 1.6;
}

/* Card Container */
.amf-custom-card {
  border-radius: 30px;
  /* High rounding as per image */
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Image Part */
.card-img-top {
  overflow: hidden;
}

.card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark Green Content Part */
.card-content-bottom {
  font-family: "DM Sans", sans-serif;
  background: linear-gradient(145deg, #1e2f2a, #16221f);
  padding: 40px;
  color: #ffffff;
  flex-grow: 1;
}

.card-content-bottom h4 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.card-content-bottom p {
  margin-bottom: 15px;
  color: #fff;
}

.director-info p{
  color: #fff;
  font-family: DM Sans;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .card-img-top {
    height: 250px;
  }

  .custom-h3 {
    font-size: 1.6rem;
  }

  .director-info {
    margin-top: 20px;
    margin-left: 20px;
  }

  .director-info2 {
    margin-left: 20px;
    margin-bottom: 20px;
  }
}

.nav-label {
  font-weight: 600;
  font-size: 16px;
}

.nav-pill {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  text-decoration: none;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 14px;
  transition: 0.3s;
}

.nav-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.nav-pill.active {
  background-color: var(--btn-clr);
  border-color: var(--btn-clr);
  color: #1A3129;
  font-weight: 600;
}

.namedrirector {
  font-family: "DM Sans";
  color: #4FD98E;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4;
}

/* Common Card Styling */
.director-card,
.director-card-mobile {
  background-color: #1a2e26;
  border-radius: 30px;
  overflow: hidden;
  color: white;
}

/* Desktop Styles */

.director-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}



.accordion-item {
  background: #f5f1e5;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: 0.3s ease;
}

.accordion-header {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion-header span:first-child {
  flex: 1;
}

.accordion-header .icon {
  flex-shrink: 0;
}


.accordion-header .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1f3d2b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #555;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 1000px;
  padding: 0 20px 18px;
}

/* Mobile */
@media (max-width: 600px) {
  .accordion-header {
    padding: 16px;
  }
}



.search-wrap {
  margin: 20px auto;
}

.search-box {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 15px;
  background: var(--section-bg);
}

.search-input {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 0 12px;
  height: 40px;
}

.search-icon {
  margin-right: 8px;
  font-size: 14px;
  color: #666;
}

.search-input input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}

.filter-btn {
  border: none;
  background: #f6e08b;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
  cursor: pointer;
}






/* Outer Card */
.bank-card {
  margin-top: 40px;
  background: linear-gradient(135deg, #1f2d2a, #0f231e);
  border-radius: 18px;
  padding: 30px;
}

/* Inner Capsule */
.bank-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(90deg, #4fe18c, #ffc33a);
  border-radius: 100px;
  padding: 30px 40px;
}


/* Content */
.bank-content ul {
  margin: 0;
  padding-left: 18px;
}

.bank-content li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 6px;
  color: #16332b;
}

/* Responsive */
@media (max-width: 768px) {
  .bank-inner {
    flex-direction: column;
    border-radius: 30px;
  }
}




.card-text2 {
  color: #4FD98E;
  font-size: 20px;
}

.text3 {
  font-size: 14px;
}



.timeline-col {
  position: relative;
}

.timeline-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-img {
  width: 70px;
  z-index: 2;
}

.timeline-line {
  width: 2px;
  flex-grow: 1;
  margin-top: 0px;
  border-left: 2px dotted #8fd3a8;
}

.timeline-row:last-child .timeline-line {
  display: none;
}



.investment-slider {
  color: #fff;
  position: relative;
  min-height: 260px;
}

.investment-slider h3 {
  color: #67e0a3;
  font-weight: 600;
  margin-bottom: 15px;
}

.investment-slider p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 90%;
}


.slider-content {
  display: none;
}

.slider-content.active {
  display: block;
}

/* arrows */
.slider-arrows {
  position: absolute;
  display: flex;
  gap: 12px;
}

.slider-arrows button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #0b1f1c;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.slider-arrows button:hover {
  background: #67e0a3;
}



.contact-card {
  background: #f5f1e5;
  padding: 30px 15px;
  border-radius: 18px;
}

.field-wrap {
  position: relative;
}

.field-label {
  position: absolute;
  top: -9px;
  left: 18px;
  background: #fff;
  padding: 2px 10px;
  font-size: 12px;
  color: #8b8b8b;
  border-radius: 12px;
  z-index: 2;
}


.custom-textarea {
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid #d6d6d6;
  min-height: 160px;
  resize: none;
  font-size: 14px;
}

.custom-input:focus,
.custom-textarea:focus {
  box-shadow: none;
  border-color: #bfbfbf;
}

.send-btn {
  background: transparent;
  border: none;
  color: #8d8d8d;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.send-btn span {
  width: 26px;
  height: 26px;
  background: #efe6cf;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.field-wrap {
  position: relative;
}

.field-label {
  position: absolute;
  top: -8px;
  left: 22px;
  background: #f5f1e5;
  padding: 0 8px;
  font-size: 12px;
  color: #9a9a9a;
  line-height: 1;
  z-index: 2;
}

.custom-input {
  border-radius: 30px;
  padding: 14px 18px;
  border: 1px solid #d6d6d6;
  font-size: 14px;
  background: #fff;
}

.custom-textarea {
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid #d6d6d6;
  min-height: 160px;
  resize: none;
}

.custom-input:focus,
.custom-textarea:focus {
  box-shadow: none;
  border-color: #c2c2c2;
}

select.custom-input {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}

.upload-box {
  border: 2px dashed #ddd;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  position: relative;
  background: #fff;
}

.upload-placeholder {
  color: #999;
}

.upload-icon {
  font-size: 28px;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  margin: 0 auto 10px;
}

.upload-link {
  color: #6f42c1;
  font-weight: 500;
  cursor: pointer;
}

.preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.preview-item {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  cursor: pointer;
}


a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.spancard {
  background-color: #F2B13E33;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
}




.check2 {
  font-size: 12px;
  color: #9a9a9a;
}


.pt-64 {
  padding-top: 64px;
}

.pb-64 {
  padding-bottom: 64px;
}

/* ================= STEPPER ================= */
.stepper-wrapper {
  max-width: 1200px;
  margin: 0 auto 40px;
}

.stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* FIXED LINE */
.stepper::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 13px;
  right: 50px;
  height: 2px;
  background: #6edfa3;
  z-index: 0;
}

/* circle */
.step .circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #cfcfcf;
  position: relative;
  z-index: 1;
}

.step.done .circle {
  background: #6edfa3;
  border-color: #6edfa3;
}

.step.done .circle::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step.active .circle {
  border-color: #6edfa3;
}

.step.active .circle::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #6edfa3;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.label {
  margin-top: 8px;
  line-height: 1.2;
}

.tick {
  margin-top: 8px;
  width: 18px;
  height: 18px;
  background: #6edfa3;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}


/* ================= FORM ================= */
.form-wrapper {
  margin: auto;
  background: #f6f2e6;
  border-radius: 16px;
  padding: 0px 10px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* ================= COMPLETE ================= */
.complete-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #bfeecf;
  padding: 15px 18px;
  border-radius: 10px;
}

.complete-icon {
  width: 26px;
  height: 26px;
  background: #6edfa3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= MOBILE ================= */
@media(max-width:768px) {
  .stepper {
    overflow-x: auto;
  }

  .step {
    min-width: 130px;
  }
}



/* ============ Arabic Css ================== */

/* RTL fix – SAFE */
html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] body {
  text-align: right;
}

/* html[dir="rtl"] .icon {
  transform: rotate(180deg);
} */

html[dir="rtl"] .navbar-nav {
  margin-right: auto;
  margin-left: 0;
}

/* html[dir="rtl"] .learn-btn:hover .icon,.learn-btn2:hover .icon,.learn-btn3:hover .icon  {
  transform: rotate(180deg) translateX(2px);
} */

html[dir="rtl"] .hero-img {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 120px !important;
}

[dir="rtl"] .sincebg {
  border-top-right-radius: 0;
  border-top-left-radius: 150px;
}

[dir="rtl"] .sincebg2 {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 150px;
}

html[dir="rtl"] .slider-container {
  -webkit-mask-image: linear-gradient(to left, black 80%, transparent 100%);
}

html[dir="rtl"] .mega-title {
  text-align: right;
}

html[dir="rtl"] .mega-card-content h5 {
  text-align: right;
}

html[dir="rtl"] .mega-card-content p {
  text-align: right;
}

html[dir="rtl"] .separator i {
  transform: rotate(180deg);
}

html[dir="rtl"] .field-label {
  left: auto;
  right: 22px;
}

@media (max-width: 991px) {
  html[dir="rtl"] .mobile-clr {
    left: auto;
    right: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
  }
}

[dir="rtl"] .site-footer {
  border-top-right-radius: 0;
  border-top-left-radius: 100px;
}

html[dir="rtl"] .breadcrumb-item+.breadcrumb-item {
  padding-left: 0;
  padding-right: var(--bs-breadcrumb-item-padding-x);
}

[dir="rtl"] .mega-card img {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 150px;
}

[dir="rtl"] .mega-card-content {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 150px;
}