/* UM4A Custom Theme Styles */

/* General Styles */
:root {
  --primary-color: #47560e;
  --secondary-color: #788c1e;
  --accent-color: #a7b846;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
}

/* Header Styles */
.main-header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Homepage Slider - Slick Version */
.homepage-slider {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

.slider-item {
  height: 100vh;
  min-height: 500px;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.slider-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  color: white;
}

.homepage-slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.6; /* Changed to 0.6 as requested */
}

/* Slick Slider Controls */
.slick-prev,
.slick-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  z-index: 20;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  background-color: var(--primary-color);
  opacity: 1;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.slick-prev i,
.slick-next i {
  color: white;
  font-size: 24px;
}

.slick-dots {
  bottom: 25px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: white;
  opacity: 0.5;
}

.slick-dots li.slick-active button:before {
  color: var(--primary-color);
  opacity: 1;
}

.slider-heading {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

.slider-text {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 25px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

/* Featured Project Section */
.featured-project-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.featured-project-image {
  position: relative;
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.featured-project-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.featured-project-image:hover img {
  transform: scale(1.05);
}

.project-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 15px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-project-content {
  padding: 20px;
}

.featured-project-content h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 2rem;
}

.project-location {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.project-location i {
  color: var(--primary-color);
  margin-right: 5px;
}

.project-highlights {
  padding-left: 20px;
  margin-bottom: 20px;
}

.project-highlights li {
  margin-bottom: 10px;
  position: relative;
}

.project-highlights li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.project-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 15px;
  flex: 1;
  min-width: 100px;
  border-right: 1px solid #eee;
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* Button Styles */
.btn-primary,
.btn-slider {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: white;
  padding: 12px 30px;
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.btn-primary:hover,
.btn-slider:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-light {
  background-color: var(--light-color);
  border: 2px solid var(--light-color);
  color: var(--primary-color);
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.btn-light:hover {
  background-color: white;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-section .img-wrap {
  position: relative;
  margin-bottom: 30px;
}

.about-section .img-wrap img {
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-vision-box {
  background-color: #f9f9f9;
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mission-vision-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission-vision-box h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Root Variables */
:root {
  --primary-color: #47560e;
  --secondary-color: #6c8c1c;
  --accent-color: #f2b705;
  --dark-color: #2c3e50;
  --light-color: #f5f5f5;
  --text-color: #333333;
  --text-light: #f8f9fa;
  --border-radius: 8px;
  --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Common Section Styles */
.section-heading {
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin-bottom: 30px;
}

section {
  padding: 80px 0;
}

/* Hero Carousel Section */
#hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: 80vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  margin-top: 30px;
}

.hero-buttons .btn {
  margin: 0 10px;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 15;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0.7;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-indicators {
  z-index: 15;
}

/* Impact Statistics Section */
.impact-section {
  background-color: white;
  padding: 60px 0;
}

.impact-counter-wrapper {
  margin-top: -100px;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--box-shadow);
}

.impact-counter {
  margin-bottom: 20px;
}

.counter-icon {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.counter-number {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.counter-text {
  font-size: 18px;
  color: var(--secondary-color);
}

/* About Section */
.about-section {
  background-color: var(--light-color);
}

.about-image {
  position: relative;
}

.floating-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  box-shadow: var(--box-shadow);
}

.about-content {
  padding: 20px 0;
}

.about-content .lead {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.mission-vision-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.mission-box, .vision-box {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-box h4, .vision-box h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.mission-box i, .vision-box i {
  margin-right: 10px;
}

.about-buttons .btn {
  margin-right: 15px;
}

/* Featured Project Section */
.featured-project-section {
  padding: 80px 0;
  background-color: white;
}

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

.project-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.featured-project-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.project-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: #777;
  font-size: 14px;
}

.project-meta i {
  margin-right: 5px;
  color: var(--secondary-color);
}

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

.project-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.project-highlights li {
  padding: 8px 0;
  position: relative;
  padding-left: 30px;
}

.project-highlights i {
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--secondary-color);
}

.project-progress {
  background: #f8f9fa;
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.progress {
  height: 10px;
  border-radius: 5px;
}

.progress-bar {
  background-color: var(--secondary-color);
}

.project-cta .btn {
  margin-right: 15px;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 80px 0;
  position: relative;
}

.services-section .section-title,
.services-section .section-subtitle {
  color: white;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 28px;
  color: white;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card ul {
  padding-left: 0;
  list-style-type: none;
}

.service-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.service-card ul li:before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  top: 0;
}

.service-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.service-link:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.service-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Partnership CTA Section */
.partnership-cta-section {
  padding: 100px 0;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.partnership-cta-section .dark-overlay {
  opacity: 0.7;
}

.cta-content {
  position: relative;
  z-index: 10;
  color: white;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-buttons .btn {
  margin: 0 10px;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--light-color);
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin: 0 auto;
  max-width: 900px;
}

.testimonial-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.testimonial-content:before {
  /*content: """;*/
  font-size: 80px;
  position: absolute;
  left: -20px;
  top: -20px;
  color: rgba(108, 140, 28, 0.1);
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h5 {
  margin-bottom: 5px;
  color: var(--dark-color);
}

.author-info p {
  margin: 0;
  color: var(--secondary-color);
  font-size: 14px;
}

#testimonials-carousel .carousel-indicators {
  bottom: -40px;
}

#testimonials-carousel .carousel-indicators li {
  background-color: var(--primary-color);
  opacity: 0.4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#testimonials-carousel .carousel-indicators li.active {
  opacity: 1;
}

#testimonials-carousel .carousel-control-prev,
#testimonials-carousel .carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  background: none;
  opacity: 0.5;
  width: 40px;
  height: 40px;
}

@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }

  .hero-slide {
    height: 70vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-buttons .btn {
    margin-bottom: 10px;
  }

  .impact-counter-wrapper {
    margin-top: -50px;
  }

  .impact-counter {
    margin-bottom: 30px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-content {
    font-size: 16px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-buttons .btn {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }

  .services-section,
  .impact-section,
  .heritage-content,
  .news-section {
    padding: 50px 0;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
}

.dark-overlay {
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Impact Section */
.impact-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.impact-counter .count-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.impact-counter .count-title {
  font-size: 1.1rem;
  color: #666;
}

/* Heritage Section */
.heritage-section {
  position: relative;
  overflow: hidden;
}

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

.heritage-image img {
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* News Section */
.news-section {
  background-color: var(--light-color);
  padding: 80px 0;
}

/* News cards using Bootstrap flex */
.news-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.news-col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 30px;
  display: flex;
}

@media (min-width: 768px) {
  .news-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .news-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  background-color: white;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-img {
  position: relative;
  overflow: hidden;
}

.news-img img {
  transition: transform 0.6s ease;
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.news-card:hover .news-img img {
  transform: scale(1.08);
}

.card-date-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 15px;
  font-size: 0.9rem;
  z-index: 2;
  border-top-right-radius: 8px;
}

.news-content {
  padding: 25px;
  background-color: white;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.25rem;
  line-height: 1.4;
}

.news-title a {
  color: var(--dark-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.news-title a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.news-summary {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.news-footer {
  margin-top: auto;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.read-more:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Fix for flickering in Chrome/Safari */
.carousel-inner {
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
}

.carousel-item {
  transition: transform .4s ease-in-out !important;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .slider-heading {
    font-size: 2rem;
  }

  .slider-text {
    font-size: 1rem;
  }

  .homepage-slider .carousel-item {
    height: 70vh;
  }

  .about-section,
  .services-section,
  .impact-section,
  .heritage-content,
  .news-section {
    padding: 50px 0;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
}

.dark-overlay {
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.6);
}
/* Custom CSS for Blog Cards with Hover Effects */
.post-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.post-card .img-block {
    overflow: hidden;
}

.post-card .img-block img {
    transition: transform 0.5s ease;
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.post-card:hover .img-block img {
    transform: scale(1.05);
}

.post-card .post-date {
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-top-left-radius: 5px;
}

.post-card .card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card:hover .card-title a {
    color: #0d4101;
}

.post-card .card-text {
    color: #666;
    font-size: 0.9rem;
}

.post-card .btn-outline-primary {
    transition: all 0.3s ease;
}

.post-card:hover .btn-outline-primary {
    background-color: #0d4101;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .post-card .img-block img {
        height: 200px;
    }
}

.btn-primary {
    background-color: #125e00 !important;
    border-color: #0d4101!important;
    color: white!important;
}
.btn-primary:hover {
    background-color: #23ab02 !important;
}

/* Modern Footer Styles */
.modern-footer {
  position: relative;
  background-color: #252525;
  color: #f5f5f5;
  margin-top: 80px;
  padding-bottom: 0;
}

.footer-top {
  padding: 70px 0 40px;
  position: relative;
}

.footer-bottom {
  background-color: #1a1a1a;
  padding: 20px 0;
  position: relative;
}

/* Footer Logo */
.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

/* Footer Widget Styles */
.footer-widget {
  margin-bottom: 30px;
}

.widget-title {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 10px;
  color: #fff;
}

.widget-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
  display: inline-block;
}

.footer-links li a:before {
  content: "\f105";
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--primary-color);
  padding-left: 20px;
}

.footer-links li a:hover:before {
  color: var(--primary-color);
  left: 5px;
}

/* Contact Info */
.contact-info {
  margin-top: 10px;
}

.contact-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.contact-item i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--secondary-color);
  font-size: 18px;
}

.contact-item p {
  margin: 0;
  color: #ccc;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Footer Bottom */
.copyright,
.credits {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}

.copyright a,
.credits a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

copyright a:hover,
.credits a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-top {
    padding: 50px 0 20px;
  }

  .footer-widget {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .modern-footer {
    margin-top: 50px;
  }

  .footer-bottom .text-md-end {
    text-align: left !important;
    margin-top: 10px;
  }

  .widget-title {
    margin-bottom: 15px;
  }

  .social-links {
    margin-bottom: 20px;
  }
}
.text-accent {
    color: var(--accent-color) !important;
}
