/* Main Styling for SGD Uganda Website */

:root {
  --primary-color: #0a2d40;
  --secondary-color: #e67e22;
  --tertiary-color: #3498db;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --white-color: #ffffff;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white-color);
}

.page-wrapper {
  padding-top: 40px; /* Add padding to account for the fixed contact bar */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--primary-color);
}

a {
  color: var(--tertiary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

/* Contact Bar Styles */
.contact-bar {
  background-color: #b8e056; /* lemon green color */
  padding: 8px 0;
  color: var(--primary-color);
  font-size: 14px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.contact-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-bar__info {
  display: flex;
  flex: 1;
}

.contact-bar__info-item {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.contact-bar__info-item p {
  margin: 0;
  font-weight: 500;
  color: var(--primary-color);
}

.contact-bar__links {
  display: flex;
  justify-content: flex-end;
}

.contact-bar__link-item {
  margin-left: 20px;
  position: relative;
}

.contact-bar__link-item a {
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.contact-bar__link-item a i {
  margin-right: 5px;
}

.contact-bar__link-item a:hover {
  color: var(--secondary-color);
}

.contact-bar__dropdown {
  min-width: 150px;
}

.contact-bar__dropdown li a {
  display: block;
  padding: 8px 15px;
  color: var(--primary-color);
}

.contact-bar__dropdown li a:hover {
  background-color: var(--light-color);
  color: var(--secondary-color);
}

/* Header Styles */
.main-header-two {
  background-color: var(--white-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 99;
}

.main-menu-two__logo img {
  max-height: 100px;
  width: auto;
  margin-left: -20px;
}

.main-menu-two__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Adjustments for logo and menu positioning */
.main-menu-two__left {
  margin-right: 30px;
}

.main-menu-two__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main-menu-two__main-menu-box {
  display: flex;
  align-items: center;
}

.main-menu__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
}

.main-menu__list > li {
  position: relative;
  margin-right: 20px;
}

.main-menu__list > li > a {
  font-size: 18px;
  display: block;
  padding: 25px 15px;
  color: var(--primary-color);
  font-weight: 600;
}

.main-menu__list > li > a:hover {
  color: var(--secondary-color);
}

.main-menu__list li.dropdown ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 220px;
  background-color: var(--white-color);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
  list-style: none;
  padding: 10px 0;
}

.main-menu__list li.dropdown:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-menu__list li.dropdown ul li a {
  display: block;
  padding: 10px 15px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.main-menu__list li.dropdown ul li a:hover {
  background-color: var(--light-color);
  color: var(--secondary-color);
}

/* Mobile Nav */
.mobile-nav__toggler {
  display: none;
  font-size: 24px;
  color: var(--primary-color);
}

/* Preloader */
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader__image {
  animation: preloader 1.5s linear infinite;
  width: 50px;
  height: 50px;
  border: 3px solid var(--light-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
}

@keyframes preloader {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Footer Styles */
.site-footer {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding-top: 80px;
}

.site-footer__top {
  padding-bottom: 60px;
}

.site-footer__bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
}

.footer-widget__title {
  color: var(--white-color);
  font-size: 20px;
  margin-bottom: 30px;
  position: relative;
}

.footer-widget__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-widget__about-text {
  margin-top: 20px;
}

.footer-widget__links-list li {
  margin-bottom: 10px;
}

.footer-widget__links-list li a {
  color: var(--light-color);
}

.footer-widget__links-list li a:hover {
  color: var(--secondary-color);
}

.footer-widget__contact-list li {
  display: flex;
  margin-bottom: 15px;
}

.footer-widget__contact-list .icon {
  margin-right: 15px;
  color: var(--secondary-color);
}

.footer-widget__social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-widget__social a:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.site-footer__bottom-text {
  margin: 0;
}

.site-footer__bottom-text a {
  color: var(--secondary-color);
}

/* Responsive styles moved to mobile.css */

/* Program Areas Image Styles */
.service-one__img {
  height: 240px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-one__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Page Specific Styles */
.page-header {
  background-color: var(--primary-color);
  padding: 80px 0;
  text-align: center;
  color: var(--white-color);
}

.page-header h1 {
  color: var(--white-color);
  margin-bottom: 0;
}

.page-content {
  padding: 80px 0;
}

/* Project Styles */
.project-card {
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.project-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.project-card__image {
  height: 200px;
  background-color: var(--light-color);
  background-size: cover;
  background-position: center;
}

.project-card__content {
  padding: 20px;
}

.project-card__title {
  margin-bottom: 10px;
  font-size: 20px;
}

.project-card__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
  color: #777;
}

.project-card__description {
  margin-bottom: 20px;
}

.project-card__link {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--tertiary-color);
  color: var(--white-color);
  border-radius: 3px;
  font-weight: 600;
}

.project-card__link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

/* Report Styles */
.report-table {
  width: 100%;
  border-collapse: collapse;
}

.report-table th, 
.report-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.report-table th {
  background-color: var(--light-color);
  font-weight: 600;
}

.report-table tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Admin Dashboard Specific Styles */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 250px;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 20px 0;
}

.admin-sidebar__logo {
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.admin-sidebar__logo img {
  max-width: 100%;
}

.admin-sidebar__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-sidebar__menu li {
  margin-bottom: 5px;
}

.admin-sidebar__menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--light-color);
  transition: all 0.3s ease;
}

.admin-sidebar__menu li a:hover,
.admin-sidebar__menu li a.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
}

.admin-sidebar__menu li a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.admin-content {
  flex: 1;
  padding: 20px;
  background-color: #f9f9f9;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.admin-header h1 {
  margin: 0;
  font-size: 24px;
}

.admin-card {
  background-color: var(--white-color);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 20px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--white-color);
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--tertiary-color);
  outline: 0;
}

/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: var(--white-color);
}

.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.btn-secondary:hover {
  background-color: #d35400;
  border-color: #d35400;
}

.btn-danger {
  background-color: #e74c3c;
  border-color: #e74c3c;
  color: var(--white-color);
}

.btn-danger:hover {
  background-color: #c0392b;
  border-color: #c0392b;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 14px;
}

/* Main Slider */
.main-slider {
  position: relative;
  overflow: hidden;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 7000ms ease;
  background-color: rgba(0, 0, 0, 0.65);
  background-blend-mode: overlay;
}

.swiper-slide-active .image-layer {
  transform: scale(1.15);
}

.main-slider-shape-1,
.main-slider-shape-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.main-slider__content {
  position: relative;
  z-index: 10;
  padding: 250px 0 200px;
  text-align: left;
  color: var(--white-color);
}

.main-slider__sub-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(120px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}

.main-slider__title {
  font-size: 38px; /* Reduced as requested */
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--white-color);
  opacity: 0;
  transform: translateY(120px);
  transition: transform 2000ms ease, opacity 2000ms ease;
}

.main-slider__title span {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.main-slider__btn-box {
  opacity: 0;
  transform: translateY(120px);
  transition: transform 2500ms ease, opacity 2500ms ease;
}

.thm-btn {
  display: inline-block;
  background-color: var(--tertiary-color);
  color: var(--white-color);
  padding: 15px 40px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.thm-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.swiper-slide-active .main-slider__sub-title,
.swiper-slide-active .main-slider__title,
.swiper-slide-active .main-slider__btn-box {
  opacity: 1;
  transform: translateY(0);
}

.main-slider__nav {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 100;
  display: flex;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  color: var(--white-color);
  transition: all 0.3s ease;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev i {
  transform: rotate(180deg);
}

/* Main Slider Two */
.main-slider-two {
  position: relative;
  overflow: hidden;
}

.main-slider-two .image-layer-two {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 7000ms ease;
  background-color: rgba(0, 0, 0, 0.45);
  background-blend-mode: overlay;
}

.swiper-slide-active .image-layer-two {
  transform: scale(1.15);
}

.main-slider-two__content {
  position: relative;
  z-index: 10;
  padding: 250px 0 200px;
  text-align: left;
  color: var(--white-color);
}

.main-slider-two__sub-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(120px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}

.main-slider-two__title {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--white-color);
  opacity: 0;
  transform: translateY(120px);
  transition: transform 2000ms ease, opacity 2000ms ease;
}

.main-slider-two__title span {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.swiper-slide-active .main-slider-two__sub-title,
.swiper-slide-active .main-slider-two__title {
  opacity: 1;
  transform: translateY(0);
}

/* About Two Section */
.about-two {
  position: relative;
  padding: 120px 0 90px;
  background-color: var(--white-color);
}

.about-two__img-box {
  position: relative;
  margin-bottom: 30px;
}

.about-two__img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.about-two__img img {
  width: 100%;
  border-radius: 10px;
}

.about-two__experience {
  position: absolute;
  right: 30px;
  bottom: 30px;
  background-color: var(--white-color);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-two__experience-count-box h3 {
  font-size: 60px;
  line-height: 1;
  color: var(--secondary-color);
  margin: 0;
}

.about-two__experience-text {
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0 0;
}

.about-two__text-two {
  margin-bottom: 40px;
}

.about-two__btn-box .about-two__btn {
  padding: 15px 50px;
}

/* Featured Campaigns Section */
.featured-campaigns {
  position: relative;
  padding: 120px 0 90px;
  background-color: var(--primary-color);
  overflow: hidden;
}

.featured-campaigns .section-title__title {
  color: var(--white-color);
}

.featured-campaigns__single {
  position: relative;
  margin-bottom: 30px;
}

.featured-campaigns__img-box {
  position: relative;
}

.featured-campaigns__img {
  border-radius: 10px;
  overflow: hidden;
}

.featured-campaigns__img img {
  width: 100%;
  border-radius: 10px;
}

.featured-campaigns__content {
  position: relative;
  padding: 30px;
  color: var(--white-color);
}

.featured-campaigns__title {
  font-size: 36px;
  line-height: 1.2;
  color: var(--white-color);
  margin-bottom: 20px;
}

.featured-campaigns__text {
  margin-bottom: 30px;
}

/* Counter One Section */
.counter-one {
  position: relative;
  padding: 120px 0 90px;
  background-color: var(--light-color);
}

.counter-one__single {
  text-align: center;
  margin-bottom: 30px;
}

.counter-one__icon-box {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.counter-one__icon {
  width: 80px;
  height: 80px;
  background-color: var(--tertiary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  font-size: 30px;
  transition: all 0.3s ease;
}

.counter-one__single:hover .counter-one__icon {
  background-color: var(--secondary-color);
}

.counter-one__single-2 .counter-one__icon {
  background-color: var(--secondary-color);
}

.counter-one__single-2:hover .counter-one__icon {
  background-color: var(--tertiary-color);
}

.counter-one__single-3 .counter-one__icon {
  background-color: var(--primary-color);
}

.counter-one__single-3:hover .counter-one__icon {
  background-color: var(--secondary-color);
}

.counter-one__count-box h3 {
  font-size: 50px;
  line-height: 1;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.counter-one__text {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* About Section */
.about-one {
  position: relative;
  padding: 120px 0 90px;
}

.about-one__img-box {
  position: relative;
  margin-bottom: 30px;
}

.about-one__img {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

.about-one__img img {
  width: 100%;
  border-radius: 10px;
}

.about-one__img-two {
  position: absolute;
  right: -90px;
  bottom: -90px;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

.about-one__img-two img {
  width: 100%;
  border-radius: 10px;
}

.about-one__border {
  position: absolute;
  top: -30px;
  left: -30px;
  right: 140px;
  bottom: 140px;
  border: 2px solid var(--tertiary-color);
  border-radius: 10px;
}

.about-one__right {
  position: relative;
  margin-left: 70px;
  margin-top: 30px;
}

.section-title {
  margin-bottom: 50px;
}

.section-sub-title-box {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-sub-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title-shape-1 {
  position: absolute;
  bottom: -7px;
  right: -10px;
}

.section-title__title {
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

.about-one__text {
  margin-top: 40px;
  margin-bottom: 35px;
}

.about-one__point-box {
  margin-bottom: 40px;
}

.about-one__point-one {
  margin-bottom: 30px;
}

.about-one__point-one,
.about-one__point-two {
  display: flex;
}

.about-one__point-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--tertiary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.about-one__point-one:hover .about-one__point-icon,
.about-one__point-two:hover .about-one__point-icon {
  background-color: var(--secondary-color);
}

.about-one__point-content {
  margin-left: 20px;
}

.about-one__point-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.about-one__point-content p {
  margin: 0;
}

/* Services Section */
.services-one {
  position: relative;
  padding: 120px 0 90px;
  background-color: var(--light-color);
  overflow: hidden;
}

.services-one-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes float-bob-x {
  0% { transform: translateX(-50px); }
  50% { transform: translateX(0); }
  100% { transform: translateX(-50px); }
}

.services-one__single {
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.services-one__single:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-one__img img {
  width: 100%;
}

.service-one__content {
  position: relative;
  padding: 50px 40px 50px;
}

.services-one__icon {
  height: 80px;
  width: 80px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: var(--tertiary-color);
  position: absolute;
  top: -40px;
  left: 40px;
  transition: all 0.3s ease;
}

.services-one__single:hover .services-one__icon {
  background-color: var(--tertiary-color);
  color: var(--white-color);
}

.service-one__title {
  font-size: 24px;
  margin-bottom: 20px;
}

.service-one__title a {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.service-one__title a:hover {
  color: var(--tertiary-color);
}

.service-one__text {
  margin: 0;
}

/* Get Involved Section */
.we-make {
  position: relative;
  padding: 150px 0;
  z-index: 1;
}

.we-make-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.we-make-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 45, 64, 0.8);
  z-index: -1;
}

.we-make__left {
  position: relative;
}

.we-make__left .section-title__title,
.we-make__left .section-sub-title {
  color: var(--white-color);
}

.we-make__points-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 50px;
}

.we-make__points {
  display: flex;
  margin-bottom: 30px;
}

.we-make__points-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.we-make__points:hover .we-make__points-icon {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.we-make__points-content {
  margin-left: 20px;
  color: var(--white-color);
}

.we-make__points-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--white-color);
}

.we-make__points-content p {
  margin: 0;
}

.we-make__btn-box {
  margin-top: 30px;
}

.we-make__btn {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.we-make__btn:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

/* Fix for Swiper */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.icon-right-arrow::before {
  content: "\f30b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-verification::before,
.icon-checking::before,
.icon-protection::before,
.icon-consulting::before,
.icon-website::before,
.icon-creative::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-verification::before {
  content: "\f00c";
}

.icon-checking::before {
  content: "\f058";
}

.icon-protection::before {
  content: "\f505";
}

.icon-consulting::before {
  content: "\f0c0";
}

.icon-website::before {
  content: "\f19c";
}

.icon-creative::before {
  content: "\f19d";
}

.icon-email::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-pin::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* Main Slider Two */
.main-slider-two {
  position: relative;
  overflow: hidden;
}

.main-slider-two .image-layer-two {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 7000ms ease;
  background-color: rgba(0, 0, 0, 0.45);
  background-blend-mode: overlay;
}

.swiper-slide-active .image-layer-two {
  transform: scale(1.15);
}

.main-slider-two__content {
  position: relative;
  z-index: 10;
  padding: 250px 0 200px;
  text-align: left;
  color: var(--white-color);
}

.main-slider-two__sub-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(120px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}

.main-slider-two__title {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--white-color);
  opacity: 0;
  transform: translateY(120px);
  transition: transform 2000ms ease, opacity 2000ms ease;
}

.main-slider-two__title span {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.swiper-slide-active .main-slider-two__sub-title,
.swiper-slide-active .main-slider-two__title {
  opacity: 1;
  transform: translateY(0);
}

/* About Two Section */
.about-two {
  position: relative;
  padding: 120px 0 90px;
  background-color: var(--white-color);
}

.about-two__img-box {
  position: relative;
  margin-bottom: 30px;
}

.about-two__img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.about-two__img img {
  width: 100%;
  border-radius: 10px;
}

.about-two__experience {
  position: absolute;
  right: 30px;
  bottom: 30px;
  background-color: var(--white-color);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-two__experience-count-box h3 {
  font-size: 60px;
  line-height: 1;
  color: var(--secondary-color);
  margin: 0;
}

.about-two__experience-text {
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0 0;
}

.about-two__text-two {
  margin-bottom: 40px;
}

.about-two__btn-box .about-two__btn {
  padding: 15px 50px;
}

/* Featured Campaigns Section */
.featured-campaigns {
  position: relative;
  padding: 120px 0 90px;
  background-color: var(--primary-color);
  overflow: hidden;
}

.featured-campaigns .section-title__title {
  color: var(--white-color);
}

.featured-campaigns__single {
  position: relative;
  margin-bottom: 30px;
}

.featured-campaigns__img-box {
  position: relative;
}

.featured-campaigns__img {
  border-radius: 10px;
  overflow: hidden;
}

.featured-campaigns__img img {
  width: 100%;
  border-radius: 10px;
}

.featured-campaigns__content {
  position: relative;
  padding: 30px;
  color: var(--white-color);
}

.featured-campaigns__title {
  font-size: 36px;
  line-height: 1.2;
  color: var(--white-color);
  margin-bottom: 20px;
}

.featured-campaigns__text {
  margin-bottom: 30px;
}

/* Counter One Section */
.counter-one {
  position: relative;
  padding: 120px 0 90px;
  background-color: var(--light-color);
}

.counter-one__single {
  text-align: center;
  margin-bottom: 30px;
}

.counter-one__icon-box {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.counter-one__icon {
  width: 80px;
  height: 80px;
  background-color: var(--tertiary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  font-size: 30px;
  transition: all 0.3s ease;
}

.counter-one__single:hover .counter-one__icon {
  background-color: var(--secondary-color);
}

.counter-one__single-2 .counter-one__icon {
  background-color: var(--secondary-color);
}

.counter-one__single-2:hover .counter-one__icon {
  background-color: var(--tertiary-color);
}

.counter-one__single-3 .counter-one__icon {
  background-color: var(--primary-color);
}

.counter-one__single-3:hover .counter-one__icon {
  background-color: var(--secondary-color);
}

.counter-one__count-box h3 {
  font-size: 50px;
  line-height: 1;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.counter-one__text {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Contact Bar Links */
.contact-bar__links {
  display: flex;
  margin-right: 20px;
}

.contact-bar__link-item {
  margin-left: 20px;
  position: relative;
}

.contact-bar__link-item a {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.contact-bar__link-item a i {
  margin-right: 5px;
}

.contact-bar__link-item a:hover {
  color: var(--white-color);
}

.contact-bar__dropdown {
  min-width: 180px;
  padding: 10px 0;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.contact-bar__dropdown li a {
  display: block;
  padding: 8px 15px;
  font-size: 14px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.contact-bar__dropdown li a:hover {
  background-color: var(--light-color);
  color: var(--secondary-color);
}

/* Logo adjustments */
.main-menu-two__logo img {
  max-height: 80px;
  width: auto;
  margin-left: -20px;
}

@media (max-width: 767px) {
  .contact-bar__inner {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-bar__info, 
  .contact-bar__links, 
  .contact-bar__social {
    margin-bottom: 10px;
  }
  
  .main-menu-two__logo img {
    max-height: 60px;
  }
}

/* Video styling */
.about-two__video-box {
  position: relative;
  margin-bottom: 30px;
}

.about-two__video-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-two__video {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.about-two__video-box .about-two__experience {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 10;
}

/* Ongoing Programs styling */
.ongoing-programs {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.ongoing-programs__left {
  position: relative;
  display: block;
  margin-right: 70px;
  margin-top: 10px;
}

.ongoing-programs__text {
  margin: 0;
  padding-bottom: 30px;
}

.ongoing-programs__btn-box {
  margin-top: 15px;
}

.ongoing-programs__btn {
  padding: 13px 50px;
}

.ongoing-programs__right {
  position: relative;
  display: block;
}

.ongoing-programs__video-box {
  position: relative;
  margin-bottom: 30px;
}

.ongoing-programs__video-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.ongoing-programs__video {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* SNEI Logo styling */
.ongoing-programs__logo {
  margin-bottom: 25px;
  max-width: 400px;
}

.ongoing-programs__logo img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer logo size adjustment */
.footer-widget__logo img {
  max-width: 150px;
  height: auto;
}

/* Partners Section Styles */
.partners-section {
  background-color: #f8f9fa;
  padding: 40px 0;
}

.partners-slider {
  padding: 20px 0;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 15px;
  transition: transform 0.3s ease;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(50%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Image Scroller Section Styles */
.image-scroller-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.image-scroller-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 220px;
  margin-bottom: 20px;
}

.gallery-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: all 0.5s ease;
}

.image-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.image-card:hover .gallery-image {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.image-card:hover .image-overlay {
  transform: translateY(0);
}

.image-title {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
