/**
  Author: Oxygene MCL
  Alfred Maina
**/
html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Geist", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #565656;
}

body::-webkit-scrollbar {
  width: 0.6em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #0C6AFA;
}

body::-webkit-scrollbar-thumb {
  background-color: #0C6AFA;
}

.width-90 {
  width: 90%;
  margin: auto;
}

.width-80 {
  width: 80%;
  margin: auto;
}

::-moz-selection {
  background: #0C6AFA !important;
  color: white;
}

::selection {
  background: #0C6AFA !important;
  color: white;
}

a {
  text-decoration: none;
  transition-duration: 300ms;
}

p {
  font-size: 1rem;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

ol li {
  padding: 10px 0px;
}

ul.tick {
  list-style: none;
  margin-left: 0px;
}
ul.tick.two-column {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 50;
       column-gap: 50;
}
ul.tick li {
  position: relative;
  padding: 10px 0px;
  border-bottom: 1px solid rgba(86, 86, 86, 0.3);
  margin: 10px 0px;
}
ul.tick li:last-child {
  border-bottom: none;
}
ul.tick li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -30px;
  top: 10px;
  content: "\f058";
  color: #0C6AFA;
  z-index: 10;
}

.btn {
  transition-duration: 300ms;
}
.btn.right-arrow {
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border: 1px solid rgba(203, 176, 1, 0.3);
}
.btn.right-arrow i {
  color: #CBB001;
  transform: rotate(-50deg);
  transition-duration: 300ms;
}
.btn.right-arrow:hover {
  background: #0C6AFA;
  color: #fff;
}
.btn.right-arrow:hover i {
  transform: rotate(0deg);
  color: #fff;
}

.title {
  font-size: 47px;
}

.sub-title {
  font-size: 1rem;
  opacity: 0.6;
}

input:focus, textarea:focus, .form-control:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

header {
  position: relative;
  z-index: 999;
}
header .top-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .top-header:after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 1px;
  background: rgba(86, 86, 86, 0.2);
  bottom: 0;
  left: -5%;
}
header .top-header .list-align {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}
header .top-header .list-align li {
  padding: 5px 20px;
  border-right: 1px solid rgba(86, 86, 86, 0.2);
}
header .top-header .list-align li:first-child {
  border-left: 1px solid rgba(86, 86, 86, 0.2);
}
header .top-header .list-align li a {
  color: #565656;
  font-size: 0.9rem;
}
header .top-header .list-align li a span {
  font-weight: 700;
}
header .top-header .list-align li a:hover {
  color: #CBB001;
}
header .top-header .list-align li i {
  padding-right: 6px;
}
header .top-header .list-align li .dropdown .dropdown-menu {
  border-radius: 0px;
  padding: 0px;
}
header .top-header .list-align li .dropdown .dropdown-menu li {
  padding: 0px;
}
header .top-header .list-align li .dropdown .dropdown-menu li .active {
  color: #fff;
}
header .navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
}
header .navbar .nav-item {
  padding: 0px 10px;
}
header .navbar .nav-link {
  font-weight: 600;
  color: #000;
  padding: 0.75rem 1rem;
}
header .navbar .nav-link.active {
  color: #0C6AFA;
}
header .navbar .contact-btn {
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border: 1px solid rgba(203, 176, 1, 0.3);
}
header .navbar .contact-btn i {
  color: #0C6AFA;
  transform: rotate(-50deg);
  transition-duration: 300ms;
}
header .navbar .contact-btn:hover {
  background: #0C6AFA;
  color: #fff;
}
header .navbar .contact-btn:hover i {
  transform: rotate(0deg);
  color: #fff;
}
header .navbar .navbar-brand img {
  max-height: 50px;
  margin-right: 10px;
}
header .navbar.fixed {
  position: fixed;
  width: 100%;
  left: 0%;
  padding: 0px 5%;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 999;
  animation: sticky 2s;
  box-shadow: 5px 5px 7px 7px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

@keyframes sticky {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition-duration: 300ms;
}
.img-wrapper:hover img {
  transform: scale(1.05);
}

@keyframes zoom-in-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.landing-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 80vh;
}
.landing-slider .temp-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
}
.landing-slider .temp-img.hide {
  opacity: 0;
  pointer-events: none;
}
.landing-slider .page-video {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.landing-slider .page-video::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.landing-slider .page-video .player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.landing-slider .landing-banner-content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  width: 80%;
  left: 10%;
}
.landing-slider .landing-banner-content .content-left {
  max-width: 800px;
}
.landing-slider .landing-banner-content .sub-title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  opacity: 0.9;
}
.landing-slider .landing-banner-content .title {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 40px;
  text-shadow: 2px 3px 14px #000;
}
.landing-slider .landing-banner-content .btn {
  border-radius: 50px;
  padding: 0.5rem 2.25rem;
  font-weight: 600;
  background: #0C6AFA;
  color: #fff;
  border: 1px solid rgba(203, 176, 1, 0.3);
}
.landing-slider .landing-banner-content .btn i {
  color: #CBB001;
  transform: rotate(-50deg);
  transition-duration: 300ms;
}
.landing-slider .landing-banner-content .btn:hover {
  background: #CBB001;
  color: #fff;
}
.landing-slider .landing-banner-content .btn:hover i {
  transform: rotate(0deg);
  color: #fff;
}
.landing-slider .stats-cards {
  display: flex;
  gap: 20px;
  position: absolute;
  z-index: 100;
  left: 65%;
  bottom: 100px;
  transform: translateX(-50%);
}
.landing-slider .stats-cards .stat-card {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  width: 220px;
  transition: all 0.3s ease;
  text-align: center;
}
.landing-slider .stats-cards .stat-card:hover {
  background: rgba(86, 86, 86, 0.7);
  transform: translateY(-10px);
}
.landing-slider .stats-cards .stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.landing-slider .stats-cards .stat-card .stat-description {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.top-footer .subscribe {
  position: relative;
  background: url(../images/footerbg-2.png);
  background-size: cover;
  border-radius: 15px;
  padding: 50px 10px;
  color: #fff;
}
.top-footer .subscribe .img-wrapper img {
  border-radius: 15px;
}
.top-footer .subscribe .subscription {
  width: 90%;
}
.top-footer .subscribe .subscription .input-group {
  background: transparent;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.top-footer .subscribe .subscription .input-group .input-group-text {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
}
.top-footer .subscribe .subscription .input-group input {
  background: transparent;
  padding: 15px 10px;
  border: none;
  color: #fff;
}
.top-footer .subscribe .subscription .input-group input::-moz-placeholder {
  color: #fff;
  font-style: italic;
  opacity: 1;
}
.top-footer .subscribe .subscription .input-group input::placeholder {
  color: #fff;
  font-style: italic;
  opacity: 1;
}
.top-footer .subscribe .subscription .input-group .btn {
  color: #fff;
}
.top-footer .subscribe .subscription .input-group .btn i {
  transform: rotate(-40deg);
  transition-duration: 300ms;
  color: #CBB001;
}
.top-footer .subscribe .subscription .input-group .btn:hover {
  color: #CBB001;
}
.top-footer .subscribe .subscription .input-group .btn:hover i {
  transform: rotate(0deg);
  color: #fff;
}
.top-footer .subscribe .subscription .title {
  font-size: 47px;
  color: #fff;
}
.top-footer .subscribe .subscription .sub-title i {
  color: #CBB001;
  font-size: 0.9;
}

footer {
  position: relative;
  color: #fff;
}
footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 70%;
  bottom: 0;
  left: 0;
  background: url(../images/footer-background.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
}
footer .logo-wrapper {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
footer .the-footer {
  position: relative;
  z-index: 200;
  padding: 50px 0px 20px 0px;
}
footer .the-footer .btn {
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(203, 176, 1, 0.3);
}
footer .the-footer .btn i {
  color: #CBB001;
  transform: rotate(-50deg);
  transition-duration: 300ms;
}
footer .the-footer .btn:hover {
  background: #0C6AFA;
  color: #fff;
}
footer .the-footer .btn:hover i {
  transform: rotate(0deg);
  color: #fff;
}
footer .the-footer .footer-item h3 {
  font-size: 1rem;
  font-weight: 700;
}
footer .the-footer .footer-item ul li {
  padding: 5px 0px;
  transition-duration: 300ms;
}
footer .the-footer .footer-item ul li a {
  color: #fff;
  font-size: 0.9rem;
}
footer .the-footer .footer-item ul li:hover {
  transform: translateX(3px);
}
footer .the-footer .footer-item ul li:hover a {
  color: #CBB001;
}
footer .the-footer .row .col-md-3 {
  padding-top: 30px;
}
footer .the-footer .row .col-md-3:first-child {
  padding-top: 0px;
}
footer .the-footer .row .col-md-3:nth-child(2) .footer-item {
  padding-left: 40px;
}
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px 0px 0px;
  margin-top: 20px;
}
footer .copyright .width-80 {
  display: flex;
  justify-content: space-between;
}
footer .copyright .links ul {
  margin-left: 0px;
  padding-left: 0px;
  list-style: none;
  display: inline-flex;
}
footer .copyright .links ul li {
  padding: 2px 15px;
}
footer .copyright .links ul li:first-child {
  padding-left: 0px;
}
footer .copyright .links ul li a {
  color: #fff;
}
footer .copyright .links ul li a:hover {
  opacity: 0.6;
}

.mandate {
  padding: 50px 0px;
}
.mandate .title {
  font-size: 47px;
  color: black;
}

.background-about-bx {
  padding: 50px 0px;
}
.background-about-bx .title {
  font-size: 47px;
  color: black;
}

.about {
  padding: 50px 0px;
  background: #F5F8FF;
}
.about .sub-title {
  font-size: 20px;
  color: #000;
  opacity: 1;
  padding-top: 15px;
  font-weight: 700;
}

.team a.card-title {
  font-size: 18px;
  font-weight: 600;
  color: black;
}

.title {
  font-size: 47px;
  color: black;
}

.functions {
  padding: 50px 0px;
}
.functions .img-wrapper {
  position: relative;
  width: 150%;
  height: 100%;
  /* overflow: hidden; */
}
.functions ul {
  margin-top: 0;
  margin-bottom: 1rem;
  list-style: none;
  padding-left: 0rem;
}

.structure {
  padding: 50px 0px;
}

.top-banner {
  position: relative;
  height: 400px;
  width: 100%;
}
.top-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-banner .page-titles {
  text-align: center;
  position: absolute;
  z-index: 100;
  top: 60%;
  left: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
}
.top-banner .page-titles ul {
  justify-content: center;
}
.top-banner .page-titles ul li {
  position: relative;
  padding: 10px 20px;
}
.top-banner .page-titles ul li a {
  color: #fff;
}
.top-banner .page-titles ul li a:hover {
  color: #CBB001;
}
.top-banner .page-titles ul li:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  content: "\f054";
  font-size: 0.8rem;
  color: #fff;
  z-index: 10;
}
.top-banner .page-titles ul li:last-child:after {
  display: none;
}
.top-banner:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background-image: linear-gradient(to top right, rgba(0, 0, 0, 0.822), rgba(1, 10, 1, 0.3) 70%);
}

.sectors {
  position: relative;
  background: #0C6AFA;
  padding: 70px 0px;
  border-radius: 40px;
  color: #fff;
}
.sectors .stick-side {
  position: sticky;
  top: 40px;
  padding-right: 30px;
}
.sectors .titlee {
  font-size: 48px;
  color: #fff;
}
.sectors .sub-title {
  opacity: 0.9;
  margin-bottom: 20px;
}
.sectors ul li::before {
  color: #fff;
}
.sectors .card {
  border-radius: 20px;
  margin-bottom: 40px;
}
.sectors .card .card-body {
  padding: 30px;
}
.sectors .card .img-wrapper {
  border-radius: 20px;
  min-height: 200px;
}

.directions {
  position: absolute;
  right: 0%;
  top: 20px;
  z-index: 10;
}
.directions .carousel-nav {
  display: flex;
  gap: 10px;
}
.directions .carousel-nav button {
  background: none;
  border: 1px solid #ccc;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.2s ease;
}
.directions .carousel-nav button:hover {
  background: #eee;
}

.infrastructure {
  position: relative;
  padding: 60px 0px;
}
.infrastructure .directions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.infrastructure .directions .btn {
  margin-right: 20px;
  border: none;
}
.infrastructure .directions {
  position: absolute;
  left: 64%;
  top: 35px;
  z-index: 10;
}
.infrastructure .titles {
  width: 1100px;
  margin-bottom: 50px;
}
.infrastructure .titles .title {
  font-size: 48px;
  color: black;
}
.infrastructure .titles .sub-title i {
  color: #CBB001;
}
.infrastructure .card {
  height: 50vh;
  border: none;
  border-radius: 20px;
  overflow: hidden;
}
.infrastructure .card .card-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.infrastructure .card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.infrastructure .card .card-body {
  position: absolute;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
  z-index: 20;
  bottom: 8%;
  left: 5%;
  width: 90%;
  text-align: center;
  color: #fff;
}
.infrastructure .card .card-body .card-title {
  font-size: 1.2rem;
  text-shadow: 2px 3px 14px #000;
}

.background {
  position: relative;
  padding: 60px 0px;
}
.background .directions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.background .directions .btn {
  margin-right: 20px;
  border: none;
}
.background .titles {
  width: 1100px;
  margin-bottom: 50px;
}
.background .titles .sub-title i {
  color: #CBB001;
}
.background .card {
  height: 55vh;
  border: none;
  border-radius: 20px;
  overflow: hidden;
}
.background .card .card-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.background .card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.background .card .card-body {
  position: absolute;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
  z-index: 20;
  bottom: 8%;
  left: 5%;
  width: 90%;
  text-align: center;
  color: #fff;
}
.background .card .card-body .card-title {
  font-size: 1.2rem;
  text-shadow: 2px 3px 14px #000;
}

.home-news {
  position: relative;
  padding: 60px 0px;
}
.home-news .directions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-news .directions .btn {
  margin-right: 20px;
  border: none;
}
.home-news .titles {
  width: 1100px;
  margin-bottom: 50px;
  color: #000;
}
.home-news .titles .sub-title i {
  color: #CBB001;
}
.home-news .card {
  border: none;
  height: 100%;
}
.home-news .card .img-wrapper {
  height: 30vh;
  border-radius: 20px;
}
.home-news .card .card-body {
  padding: 20px 10px;
}
.home-news .card .card-body .card-title {
  font-size: 1.2rem;
  color: #000;
  font-weight: 500;
  display: block;
}
.home-news .card .card-body .btn {
  padding: 10px 0px;
  border: none;
}
.home-news .card .card-body .btn:hover {
  background: transparent;
  color: #0C6AFA;
}
.home-news .card .card-body .btn:hover i {
  color: #0C6AFA;
}
.home-news.news-page .card {
  margin-bottom: 20px;
}
.home-news.news-page .card .card-body .meta-data li {
  padding-right: 15px;
  font-size: 0.9rem;
}
.home-news.news-page .card .card-body .meta-data li a {
  color: #CBB001;
}
.home-news.news-page .card .card-body .meta-data li:last-child a {
  color: #0C6AFA;
}

.investment-projects {
  position: relative;
  padding: 50px 0px;
}
.investment-projects .title {
  font-size: 2em;
}
.investment-projects .card {
  height: 100%;
  border-radius: 20px;
}
.investment-projects .card .img-wrapper {
  height: 30vh;
  border-radius: 20px;
}
.investment-projects .card .card-body {
  padding: 20px 10px;
}
.investment-projects .card .card-body .card-title {
  font-size: 1.2rem;
  color: #000;
  font-weight: 500;
  display: block;
}
.investment-projects .card .card-body .card-text {
  opacity: 0.7;
}

.resources-section .title {
  font-size: 47px;
  color: black;
}
.resources-section .carsd {
  position: relative;
  padding: 15px 15px;
  border-radius: 15px;
  border: none;
  width: 115%;
}
.resources-section .carsd .img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}
.resources-section .carsd .img-wrapper img {
  width: 90%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition-duration: 300ms;
}
.resources-section .carsd .img-wrapper .fa-headphones {
  position: absolute;
  z-index: 20;
  top: 12px;
  right: 12px;
  color: #fff;
}
.resources-section .carsd .img-wrapper .cat {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
  background: #CBB001;
  color: #fff;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 12px;
}
.resources-section .carsd .img-wrapper .cats {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 20;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
}
.resources-section .carsd .play {
  position: absolute;
  z-index: 200;
  font-size: 40px;
  color: red;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.resources-section .carsd h3 {
  position: absolute;
  z-index: 200;
  font-size: 40px;
}

.center-titles {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.titles {
  margin-bottom: 50px;
}
.titles .sub-title i {
  color: #CBB001;
}

.left-tabs {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.left-tabs .nav {
  padding: 0px;
}
.left-tabs .nav .nav-link {
  background: transparent;
  color: #565656;
  border-radius: 0px;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.2rem;
  width: 100%;
  text-align: left;
}
.left-tabs .nav .nav-link.active {
  background: transparent;
  border-left: 5px solid #CBB001;
  color: #CBB001;
}

.faq-section {
  margin-bottom: 60px;
}
.faq-section .accordion-item {
  border: none;
  border-top: 1px solid #eee;
  border-radius: 0;
  margin-bottom: 0.5rem;
}
.faq-section .accordion-button {
  background-color: transparent;
  color: #565656;
  font-weight: 600;
  box-shadow: none;
  padding: 1rem 0;
  border: none;
}
.faq-section .accordion-button:not(.collapsed) {
  color: #000;
  font-size: 1.2rem;
}
.faq-section .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.faq-section .accordion-button:not(.collapsed)::after i {
  color: #CBB001;
}
.faq-section .accordion-body {
  padding: 0 0 1rem 0;
  color: rgba(86, 86, 86, 0.8);
}

.tab-menu {
  padding-bottom: 50px;
}
.tab-menu .nav-item .nav-link {
  padding: 10px 40px;
  color: #565656;
  font-weight: 500;
}
.tab-menu .nav-item .nav-link.active {
  color: #CBB001;
  border-bottom: 1px solid #CBB001;
}

.events {
  padding: 60px 0px;
}

.all-events {
  padding: 0px 0px 50px 0px;
}
.all-events .card {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
  width: 100%;
  border: none;
  margin: 20px 0px;
  border-radius: 20px;
}
.all-events .card .img-wrapper {
  border-radius: 20px;
}
.all-events .card .img-wrapper .date {
  position: absolute;
  top: 10px;
  right: 0px;
  background: #0C6AFA;
  color: #fff;
  padding: 5px 10px;
  border-top-left-radius: 1px;
  border-bottom-left-radius: 20px;
  font-size: 14px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.all-events .card .img-wrapper .date i {
  padding-left: 10px;
  padding-right: 6px;
  padding-bottom: 2px;
}
.all-events .card .content {
  width: 90%;
  margin: auto;
}
.all-events .card .content .title {
  font-size: 25px;
  font-weight: 600;
}
.all-events .card .content .title a {
  color: #000;
}
.all-events .card .content .details {
  position: relative;
}
.all-events .card .content .details ul {
  margin-left: 0px;
  padding-left: 0px;
  list-style: none;
  display: flex;
  margin-bottom: 10px;
  padding-top: 3px;
}
.all-events .card .content .details ul li {
  padding-right: 20px;
  font-weight: 500;
  font-style: italic;
}
.all-events .card .content .details ul li i {
  padding-right: 10px;
  color: #0C6AFA;
}
.all-events .card .content .ctas .btn:nth-child(odd) {
  background: #0C6AFA;
  color: #fff;
}
.all-events .card .content .ctas .btn:nth-child(odd) i {
  color: #fff;
}
.all-events .card .content .ctas .btn:nth-child(odd):hover {
  background: #CBB001;
}
.all-events .card:nth-child(even) {
  background: #F5F8FF;
}
.all-events .card:nth-child(even) .row {
  flex-direction: row-reverse;
}

.filters {
  padding: 20px 10px 10px 10px;
  background: rgba(0, 0, 0, 0.03);
  margin-bottom: 50px;
}
.filters .search-wrapper label {
  display: block;
  margin-bottom: 0.5rem;
}
.filters .search-wrapper input[type=text] {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 45px;
}
.filters label {
  font-weight: 600;
  font-size: 14px;
}
.filters .custom-select {
  min-width: 350px;
  position: relative;
}
.filters select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  font-size: 1rem;
  padding: 0.4em 6em 0.4em 1em;
  height: 45px;
  background-color: #fff;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  color: #000;
  cursor: pointer;
}
.filters .custom-select::before,
.filters .custom-select::after {
  --size: 0.3rem;
  content: "";
  position: absolute;
  right: 1rem;
  pointer-events: none;
}
.filters .custom-select::before {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-bottom: var(--size) solid black;
  top: 40%;
}
.filters .custom-select::after {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid black;
  top: 55%;
}

.downlaods {
  padding: 50px 0px;
}
.downlaods .card {
  position: relative;
  height: 100%;
  text-align: center;
  padding: 0px 0px 0px 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 20px;
}
.downlaods .card .img-wrapper {
  height: 25vh;
  border-radius: 20px;
  width: 98%;
  margin: auto;
}
.downlaods .card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0px solid #CBB001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.downlaods .card .icon-wrap i {
  font-size: 30px;
  color: red;
}
.downlaods .card .card-title {
  margin-bottom: 0px;
}
.downlaods .card .card-title a {
  font-size: 16px;
  color: #0C6AFA;
  transition-duration: 300ms;
}
.downlaods .card .card-title a:hover {
  color: #000;
}
.downlaods .card .card-footer {
  background: transparent;
  padding: 20px 0px;
}

.operate {
  background-color: #CBB001;
  padding-bottom: 5rem;
  border-radius: 50px;
}
.operate .page-titles h3 {
  color: #fff;
  font-size: 1rem;
}
.operate .page-titles h1 {
  font-weight: 500;
  color: #fff;
  font-size: 40px;
}
.operate .tab {
  display: flex;
  justify-content: center;
}
.operate .tab .nav-item {
  padding: 0 10px;
}
.operate .tab .nav-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 0;
}
.operate .tab .nav-link.active {
  color: #1b1a16; /* Dark text for active tab */
  font-weight: 700;
  /* CRITICAL: The line style */
  border-bottom: 2px solid #1b1a16 !important;
  /* Override Bootstrap defaults */
  background-color: transparent !important;
  border-color: transparent !important;
}
.operate .tab .nav-link:hover:not(.active) {
  color: #1b1a16; /* Dark text on hover */
  border-bottom: 2px solid #1b1a16;
}
.operate .tabcontent .tab-content {
  border-radius: 1rem !important;
}
.operate .tabcontent .tab-content p {
  font-weight: 400;
  font-size: 15px;
}
.operate .tabcontent .tab-pane .row {
  margin-right: 0;
  margin-left: 0;
}
.operate .tabcontent .img-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.operate .tabcontent .content * {
  color: #1b1a16;
}
.operate .tabcontent .content * .fas {
  color: #CBB001;
}
.operate .tabcontent .title {
  color: rgb(0, 0, 0) f;
  font-size: 35px;
  font-weight: 500;
}

.directories {
  background-color: #0A6CFF;
  padding-bottom: 5rem;
  border-radius: 50px;
}
.directories .page-titles h3 {
  color: #fff;
  font-size: 1rem;
}
.directories .page-titles h1 {
  font-weight: 500;
  color: #fff;
  font-size: 40px;
}
.directories .tab {
  display: flex;
  justify-content: center;
}
.directories .tab .nav-item {
  padding: 0 10px;
}
.directories .tab .nav-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 0;
}
.directories .tab .nav-link.active {
  color: #1b1a16; /* Dark text for active tab */
  font-weight: 700;
  /* CRITICAL: The line style */
  border-bottom: 2px solid #1b1a16 !important;
  /* Override Bootstrap defaults */
  background-color: transparent !important;
  border-color: transparent !important;
}
.directories .tab .nav-link:hover:not(.active) {
  color: #1b1a16; /* Dark text on hover */
  border-bottom: 2px solid #1b1a16;
}
.directories .tabcontent .tab-content {
  border-radius: 1rem !important;
}
.directories .tabcontent .tab-pane .row {
  margin-right: 0;
  margin-left: 0;
}
.directories .tabcontent .img-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.directories .tabcontent .content * {
  color: #1b1a16;
}
.directories .tabcontent .content * .fas {
  color: #CBB001;
}
.directories .tabcontent .title {
  color: rgb(0, 0, 0) f;
  font-size: 35px;
  font-weight: 500;
}
.directories .tabcontent .sub-title {
  font-size: 20px;
  color: black;
  font-weight: 600;
}

.project-timeline {
  padding: 10px 0;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}

.project-timeline .timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  min-height: 450px;
}

.project-timeline .timeline-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Timeline Steps */
.project-timeline .timeline-step {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 300px;
  padding: 10px 0;
}

.project-timeline .timeline-step .step-number {
  position: absolute;
  font-size: 200px; /* Larger number size */
  font-weight: 700;
  color: rgba(224, 224, 224, 0.7); /* Lighter grey with opacity */
  z-index: -1;
  line-height: 1;
  pointer-events: none;
}

.project-timeline .timeline-step .step-content h3 {
  font-size: 18px; /* Smaller heading as in the image */
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.project-timeline .timeline-step .step-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* 1. Project Discovery Call (Bottom Left) */
.project-timeline .timeline-step.step-1 {
  top: 250px;
  left: 15%; /* Adjusted left positioning */
  transform: translateX(-50%);
}

.project-timeline .timeline-step.step-1 .step-number {
  top: -100px;
  left: 10px; /* Positioned relative to the left of the text box */
}

/* 2. Project Discovery Call (Bottom Middle) */
.project-timeline .timeline-step.step-2 {
  top: 350px; /* Lower on the screen */
  left: 50%; /* Center position */
  transform: translateX(-50%);
}

.project-timeline .timeline-step.step-2 .step-number {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.project-timeline .timeline-step.step-3 {
  top: 50px; /* MOVED HIGHER: Changed from 150px to 50px */
  left: 80%;
  transform: translateX(-50%);
}

.project-timeline .timeline-step.step-3 .step-number {
  top: 0px;
  right: 0px;
  left: auto;
}

/* --- REVISED MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
  .project-timeline {
    padding: 50px 0;
  }
  .project-timeline .timeline-container {
    min-height: auto;
    padding: 0 5%;
  }
  .project-timeline .timeline-svg {
    display: none; /* Hide complex SVG path */
  }
  .project-timeline .timeline-step {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    align-items: center;
    padding-top: 50px; /* Add padding for the number */
  }
  .project-timeline .timeline-step .step-number {
    position: absolute; /* Revert to absolute for the large number */
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    margin-bottom: 0;
  }
}
/* --- Division Structure Styling --- */
.division-structure {
  padding: 50px 0;
}

/* --- Left Column: Division Titles --- */
.division-titles {
  padding-right: 30px; /* Space between columns */
}

.division-item {
  display: flex;
  align-items: center;
  padding: 40px 0 15px 40px;
  cursor: pointer;
  position: relative;
  border-top: 1px solid #eee; /* Horizontal separation line */
  transition: background-color 0.3s, color 0.3s;
}

/* Remove top border from the first item */
.division-item:first-child {
  border-top: none;
}

.division-item h3 {
  margin-bottom: 0;
  font-size: 1.15rem; /* Slightly larger text */
  font-weight: 600;
  color: #565656; /* $dark */
}

.division-item i.fa-check-circle {
  /* Use Font Awesome's fa-check-circle for the yellow tick */
  font-size: 1.2rem;
  color: #CBB001; /* $secondary yellow color */
  margin-right: 15px;
}

/* Styling for the ACTVE division item (Investment Policy in the image) */
.division-item.active {
  /* Optional: Highlight the active title */
  background-color: #f7f7f7;
}

/* --- Right Column: Division Content --- */
.division-content {
  padding: 20px;
  border-left: 1px solid #eee; /* Vertical divider */
}

.division-content p {
  color: #565656; /* $dark */
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.division-functions {
  padding-left: 20px;
}

.division-functions li {
  font-size: 0.9rem;
  color: #565656; /* $dark */
  padding: 5px 0;
  line-height: 1.4;
}

/* Responsive adjustment */
@media (max-width: 767px) {
  .division-titles {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .division-content {
    border-left: none; /* Remove vertical line on mobile */
    padding: 0;
  }
  .division-item {
    border-bottom: 1px solid #eee;
  }
}
.singles-bx h1 {
  font-size: 48px;
  font-weight: 600;
  color: black;
  margin-bottom: 20px;
}
.singles-bx .quote-box {
  background-color: #e9f0f6;
  padding: 50px;
  margin: 20px 0;
  font-style: italic;
  border-radius: 30px;
  font-size: 32px;
}
.singles-bx .content-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
.singles-bx .main-article {
  flex: 3;
  background-color: white;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.singles-bx .main-article h1 {
  font-size: 2.2em;
  margin-bottom: 20px;
  line-height: 1.2;
}
.singles-bx .article-image {
  margin: 20px 0;
}
.singles-bx .sidebar {
  flex: 1;
  min-width: 280px;
}
.singles-bx .search-box {
  display: flex;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
}
.singles-bx .search-box input {
  flex-grow: 1;
  padding: 10px;
  border: none;
  outline: none;
}
.singles-bx .search-box input button {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
.singles-bx .widget {
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.singles-bx .widget h3 {
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 1.2em;
}
.singles-bx .popular-posts .post-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.singles-bx .popular-posts .post-item img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}
.singles-bx .help-section {
  background-color: #f7f7f7;
  padding: 20px;
  text-align: center;
  border: 1px dashed var(--border-color);
  margin-top: 40px;
}
.singles-bx .help-section h2 {
  color: var(--primary-blue);
  font-size: 1.5em;
  margin-bottom: 10px;
}
.singles-bx .whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366; /* WhatsApp Green */
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
}
.singles-bx .whatsapp-button img {
  width: 40px;
  height: 40px;
  filter: invert(1); /* Makes the icon white */
}

/* --- CSS Reset/Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #004d99; /* Darker blue */
  --secondary-blue: #007bff; /* Brighter blue for CTA */
  --text-dark: #333;
  --text-light: #f4f4f4;
  --grey-light: #f9f9f9;
  --border-color: #ddd;
  --footer-dark: #002e5b; /* Very dark blue for footer */
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header/Banner Styling (Simplified for form page) --- */
.banner {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3em;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* --- 2. Form Section --- */
.form-section {
  display: flex;
  gap: 40px;
  margin: 60px 0;
}

.intro-block {
  flex: 1;
}

.ready-text {
  font-weight: bold;
  color: var(--secondary-blue);
  margin-bottom: 5px;
}

.intro-block h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.support-text {
  margin-bottom: 40px;
}

/* Contact Cards */
.contact-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background-color: var(--grey-light);
  padding: 20px;
  border-left: 3px solid var(--primary-blue);
}

.card-icon {
  font-size: 1.5em;
  margin-bottom: 5px;
}

.contact-card h3 {
  margin-bottom: 5px;
}

/* Main Form Layout */
.main-form {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.main-form input,
.main-form select,
.main-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
}

.main-form textarea {
  grid-column: 1/-1; /* Spans both columns */
  resize: vertical;
}

.submit-btn {
  grid-column: 2/3; /* Aligns to the right */
  background-color: var(--primary-blue);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-btn .icon {
  margin-right: 8px;
}

/* --- 3. Mid-Page CTA --- */
.mid-cta-section {
  text-align: center;
  padding: 40px;
  margin: 60px 0;
  background-color: var(--grey-light);
  border-radius: 8px;
}

.mid-cta-section h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.phone-number {
  color: var(--primary-blue);
  font-weight: 700;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-blue);
  color: white;
  padding: 12px 30px;
  margin-top: 20px;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 1px;
}

.phone-large {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
}

/* --- Media Queries --- */
@media (max-width: 1000px) {
  .form-section {
    flex-direction: column;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-image-container {
    margin-top: 20px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-info-col,
  .footer-contact-col,
  .footer-agencies-col,
  .footer-links-col {
    min-width: 45%;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .main-form {
    grid-template-columns: 1fr; /* Stack form inputs */
  }
  .submit-btn {
    grid-column: 1/-1; /* Full width for button */
  }
  .footer-bottom {
    flex-direction: column;
  }
}
/* --- CSS for Clean Form Style --- */
.clean-form {
  max-width: 600px; /* Adjust as needed */
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row > input,
.form-row > textarea,
.form-row > select {
  /* Style for all input types in the form */
  flex: 1;
  width: 100%;
  padding: 15px 20px;
  /* Key Styling Features */
  border: 1px solid #e0e0e0; /* Light border */
  border-radius: 30px; /* Highly rounded corners */
  outline: none;
  font-size: 16px;
  font-family: inherit;
  color: #333;
  /* Subtle inner shadow to give the "embossed" look */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* Specific styles for full-width fields */
.form-row.full-width input,
.form-row.full-width textarea {
  flex: none; /* Override flex: 1 behavior */
  width: 100%;
}

/* Specific styling for the large textarea field */
.clean-form textarea {
  border-radius: 15px; /* Less rounded corners for the large box */
  resize: vertical;
}

/* Focus State (Optional but recommended) */
.clean-form input:focus,
.clean-form textarea:focus {
  border-color: #007bff; /* Highlight border on focus */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Placeholder color adjustments (Optional) */
.clean-form input::-moz-placeholder, .clean-form textarea::-moz-placeholder {
  color: #888;
}
.clean-form input::placeholder,
.clean-form textarea::placeholder {
  color: #888;
}

/* Media Query for Responsiveness */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column; /* Stack two-column fields on small screens */
    gap: 0;
  }
  .form-row > input {
    margin-bottom: 20px; /* Reintroduce spacing between stacked inputs */
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Typography and Headings --- */
.section-tag {
  font-size: 0.8em;
  font-weight: 700;
  color: #888;
  margin-bottom: 5px;
}

.section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
}

/* --- 1. Downloads Section --- */
.download-cards-container {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

.download-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background-color: var(--card-bg);
}

.card-icon-box {
  font-size: 2.5em;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.download-card h3 {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 25px;
}

.btn-download {
  display: inline-block;
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 10px 30px;
  border-radius: 25px; /* Fully rounded buttons */
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-download:hover {
  background-color: #0056b3;
}

/* --- 2. Spotlight On Reports Section (Carousel) --- */
/* Wrapper for the horizontal scroll effect */
.reports-carousel-wrapper {
  overflow-x: auto;
  /* Hide scrollbar visually but maintain scroll functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding-bottom: 20px; /* Add some padding for visual separation */
}

.reports-carousel-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.reports-carousel {
  display: flex;
  gap: 15px;
  padding-bottom: 10px;
}

.report-card {
  flex: 0 0 auto; /* Prevent cards from shrinking */
  width: 300px; /* Fixed width for each card */
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  color: var(--text-light);
  transition: transform 0.3s;
}

.report-card.image-bg {
  background-size: cover;
  background-position: center;
}

.report-card.blue-bg {
  background-color: var(--blue-card);
}

.report-card .tag {
  font-size: 0.8em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.report-card h2 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.read-more {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-blue);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 700;
}

.badge-new {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #ffc107; /* Yellow tag */
  color: var(--text-dark);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: 700;
}

/* Carousel Controls */
.carousel-controls {
  text-align: center;
  margin-top: 30px;
}

.control-btn {
  background: none;
  border: 1px solid #ccc;
  color: #666;
  padding: 8px 15px;
  margin: 0 5px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2em;
  transition: background-color 0.2s, color 0.2s;
}

.control-btn:hover {
  background-color: var(--primary-blue);
  color: var(--text-light);
  border-color: var(--primary-blue);
}

/* --- Media Queries --- */
@media (max-width: 768px) {
  .download-cards-container {
    flex-direction: column;
  }
  .section-title {
    font-size: 2em;
  }
  .reports-carousel-wrapper {
    margin: 0 -20px; /* Extend carousel to screen edges */
    padding: 0 20px 20px;
  }
  .report-card {
    width: 250px; /* Smaller width on mobile */
    height: 350px;
  }
}/*# sourceMappingURL=style.css.map */