/*  Google Fonts for new navbar style */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Arimo:wght@400;500&display=swap');

/* ========== GLOBAL STYLES ========== */
html,body {
  position: relative;
  color: #0f0505;
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-top: 0.5rem;
  overflow-x: hidden;
  scroll-behavior: smooth;
  /* this scrolls to the specific service */
  scroll-padding-top: 100px;
}

h1, h2,h3,h4,h5,h6{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #000000;
}

p, a, span, li, button {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  color: #000000;
}
.container {
  flex: 1;
}
.brand-text {
  font-family: 'Arimo', sans-serif;
  font-size: 1rem;
  color: white;
}

/* whatsapp logo */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ============================
   NAVBAR (MERGED STYLES)
============================ */

/* Navbar base */
.custom-navbar {
  background-color: #15376D; /* RealMindX navy blue */
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  /* padding: 0.5rem 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

/* Left logo section */
.navbar-logo-section {
  background-color: #ffffff; /* White background behind logo */
  height: 80px;
  display: flex;
  align-items: center;
}

/* Logo image */
.logo-img {
  height: 65px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

/* Navbar links */
.navbar-nav .nav-link {
  color: #ffffff !important;
  margin: 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffcc01 !important; /* gold hover */
}

/* Dropdown menu */
.dropdown-menu {
  background-color: #15376D;
  border: none;
}

.dropdown-item {
  color: white;
  font-family: 'Arimo', sans-serif;
}

.dropdown-item:hover {
  background-color: #1d4a9a;
  color: #ffcc01;
}

/* Donate button (right-aligned, larger, horizontal) */
.btn-donate {
  background-color: #ffcc01;
  color: #000;
  font-weight: 700;
  border-radius: 25px;
  padding: 0.2rem 0.5rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.5rem;
  transition: all 0.3s ease;
  writing-mode: vertical-rl; 
  text-orientation: upright;
  display: inline-block;
  margin-left: 10px; 
  letter-spacing: 0.5px; 
  line-height: 1;
}

.btn-donate:hover {
  background-color: #e6b800;
  color: #000;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    padding: 0.5rem;
  }

  .btn-donate {
    display: block;
    margin: 1rem auto;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }
}


/* Mobile view: make Donate horizontal */
@media (max-width: 768px) {
  .btn-donate {
    display: inline-block;
    margin: 1rem auto;      /* centers it horizontally */
    writing-mode: horizontal-tb;  /* ensures normal text direction */
    text-orientation: mixed;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

.dropdown-menu {
  background-color: #15376D;
  border: none;
}

.dropdown-item {
  color: white;
  font-family: 'Arimo', sans-serif;
}

.dropdown-item:hover {
  background-color: #1d4a9a;
  color: #ffcc01;
}

/* Number count & Portfolio Highlight */
.highlight-section {
  text-align: center;
  padding: 80px 20px;
}

.highlight-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 2.3rem; /* slightly smaller */
  margin-bottom: 60px;
  text-transform: uppercase;
}

.highlight-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 4rem; /* reduced from 6rem */
  line-height: 1.1; /* slight breathing space */
  color: #000000; 
}

.highlight-text {
  font-family: 'Arimo', sans-serif;
  font-weight: 500;
  font-size: 1.1rem; /* slightly smaller for balance */
  margin-top: 10px;
  color: #000000;
}

/* =========================
   HOMEPAGE SERVICES SECTION
   ========================= */

.services-section {
  background-color: #fff;
  margin: 80px auto;
  padding: 60px 40px;
  max-width: 1200px;
  border-radius: 4px;
  text-align: center;
}

/* Title */
.services-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 60px;
  text-transform: uppercase;
}

/* Equal height columns */
.services-section .row {
  display: flex;
  align-items: stretch; /* ensures equal height */
  flex-wrap: wrap; /* keeps layout responsive */
}

.services-section .col-lg-5,
.services-section .col-lg-7 {
  display: flex;
  flex-direction: column;
}

/* Image styling */
.services-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Learn More button */
.learn-more-btn {
  background-color: #ffcc01;
  color: #000;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  border: none;
  border-radius: 40px;
  padding: 15px 45px;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.learn-more-btn:hover {
  background-color: #ffdd33;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .services-section {
    padding: 40px 20px;
  }

  .services-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .service-item {
    font-size: 1.1rem;
  }

  .learn-more-btn {
    font-size: 1rem;
    padding: 12px 35px;
  }
}


/* Legacy navbar colors for consistency */
.bg-steel {
  background-color: #143670 !important;
}

/* Optional: remove old navbar color if you use .custom-navbar instead */
.navbar-brand {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 23px;
  font-weight: bold;
  color: rgb(233, 236, 243);
  letter-spacing: 1px;
}

/* ========== GENERAL CONTENT STYLES ========== */
.logo-container { text-align: center; }
.logo-text { font-size: 28px; font-weight: bold; color: #002F6C; }
.logo-subtext { font-size: 14px; color: #002F6C; letter-spacing: 1px; }
.logo-icon { width: 80px; }

/* Carousel */
.object-fit-cover {
  object-fit: cover;
}
.carousel-item img {
  height: 100vh;
}
.btn-warning {
  font-family: 'Montserrat', sans-serif;
  background-color:  #ffcc01;
  border: none;
  color: #000;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-warning:hover {
  background-color:  #ffcc01;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
/* News images */
.news_img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

/* Services */
.services {
    background-color: #143670;
    color: #ffffff;
  }

  .services h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #000000ff;
    text-align: center;
    margin-bottom: 40px;
  }

 /* ===== Service list items ===== */
.service-item {
  display: flex;
  align-items: center;       /* vertically center icon and text */
  gap: 10px;                 /* spacing between icon and text */
  margin-bottom: 25px;       /* spacing between items */
  text-align: left;
  font-size: 1.25rem;
}

/* Adjust icon to match text height nicely */
.service-item i {
  color: #0b2c67;            /* icon color */
  font-size: 1.4rem;         /* aligns visually with text */
  line-height: 1;            /* removes extra vertical space */
  vertical-align: middle;
  transform: translateY(5px);
  flex-shrink: 0;            /* prevents icon from shrinking */
}

.service-item i::before {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .service-item i {
    transform: translateY(6px);
  }
}



/* Text styling */
.service-item a {
  text-decoration: none;
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hover effect */
.service-item a:hover,
.service-item i:hover {
  color: #ffcc01;            /* gold hover for both text and icon */
}

  .learn-more-btn {
    background-color: #ffcc01;
    color: #000;
    font-family: 'Arimo', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .learn-more-btn:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
  }

  /* =======================
   Testimonials Section
======================= */
.testimonials-section {
  background-color: #ffcc01; /* gold background */
  color: #000;
  font-family: 'Arimo', sans-serif;
  text-align: center;
  padding: 80px 0;
}

.testimonials-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 3rem;
}

/* =======================
   Testimonial Wrapper
======================= */
.testimonial-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* =======================
   Testimonial Card
======================= */
.testimonial-box {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 80%;
  max-width: 900px;     /* large card width */
  min-width: 320px;     /* keeps card from shrinking on mobile */
  text-align: center;
  padding: 2rem;
}

.testimonial-box:hover {
  transform: translateY(-5px);
}

/* =======================
   Text & Author Styling
======================= */
.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  margin-top: 10px;
  font-family: 'Arimo', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #0d6efd; /* blue accent */
}

/* =======================
   Carousel Alignment
======================= */
.testimonials-section .carousel-inner {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .testimonial-box {
    width: 90%;
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .testimonial-author {
    font-size: 1rem;
  }
}
.testimonial-slider {
  overflow: hidden;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 1s ease-in-out;
}

.testimonial-box {
  flex: 0 0 50%; /* two cards visible */
  padding: 20px;
  box-sizing: border-box;
  background: #fff9e6;
  margin: 0 10px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  min-height: 180px;
}

/* Mobile view: show only 1 card */
@media (max-width: 768px) {
  .testimonial-box {
    flex: 0 0 100%;
  }
}


/* Services cards */
.services-section {
  font-family: 'Arimo', sans-serif;
  color: #000;
  text-align: left;
}

.services-section h2 {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  color: #000;
}
.services-section h4 {
  font-family: 'Montserrat', sans-serif;
  text-align: left;
  color: #000;
}

.services-section p,
.services-section ul,
.services-section li {
  font-size: 1rem;
  text-align: left;
  line-height: 1.7;
}

.services-section a.btn,
.services-section a {
  display: inline-block; /* Keeps buttons neat and prevents full-width */
  text-align: left;
  margin-top: 0.8rem;
}

.services-section ul {
  padding-left: 20px;
}

.services-section img {
  border-radius: 10px;
  object-fit: cover;
}

.services-section .btn-warning {
  background-color: #ffcc01;
  color: #000;
  border: none;
  transition: all 0.3s ease;
}

.services-section .btn-warning:hover {
  background-color: #e6b800;
  color: #fff;
}
/* changing unordered list to numberic */
.services-section ul {
  list-style: none;
  counter-reset: num;
  padding-left: 1.5rem;
}

.services-section ul li {
  counter-increment: num;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
}

.services-section ul li::before {
  content: counter(num) ".";
  position: absolute;
  left: 0;
  color: #000;
  font-weight: bold;
}


/* Contact section */
.bottom {
  background-color: #0C2E60;
  color: #ffffff;
}

label, button { font-size: 20px; }
/* Bookshop */
h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
  }
  p, a, span, button {
    font-family: 'Arimo', sans-serif;
  }

  .bookshop-btn {
    background-color: #ffcc01;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .bookshop-btn:hover {
    background-color: #ffcc01;
    transform: translateY(-2px);
  }

  .bookshop-btn i {
    margin-left: 8px;
  }
/* Footer Section */
.footer-section {
  background-color: #0b2c67;  /* Dark navy blue */
  font-family: 'Arimo', sans-serif;
  color: #ffffff;
  padding-top: 2rem;          /* reduced from 5rem */
  padding-bottom: 1.5rem;     /* reduced from 4rem */
}

.footer-section .row {
  row-gap: 1rem !important;   /* reduce spacing between columns */
}

/* Footer Titles */
.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #ffcc01;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;     /* tighter title spacing */
  letter-spacing: 0.5px;
}

/* Footer Links */
.footer-link {
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.3rem;      /* reduced spacing */
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #FFD700;
}

/* Footer Text */
.footer-section p,
.footer-section small,
.footer-section li,
.footer-section a {
  font-family: 'Arimo', sans-serif;
  color: #dcdcdc;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.3rem !important;
}

/* Remove list spacing */
.footer-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;      /* centers them on smaller screens */
  flex-wrap: wrap;
  gap: 4px;                     /* tight spacing between icons */
}

/* Social Icons */
.social-icons a {
  color: white;
  font-size: 1.2rem;
  margin-right: 0px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #ffcc01;
  transform: translateY(-3px);
}

/* MOBILE: remove spacing completely */
@media (max-width: 576px) {
  .social-icons {
    gap: 0 !important;        /* removes all spacing */
    justify-content: center;  /* keep icons centered */
  }

  .social-icons a {
    margin: 0 !important;
  }

  .social-icons i {
    font-size: 20px; /* optional: slightly larger on phones */
  }
}

/* footer align */
/* MOBILE VIEW: Left-align text */
@media (max-width: 576px) {
  .footer-section .text-center,
  .footer-section [class*="text-md-start"] {
    text-align: left !important;
  }

  .footer-section .social-icons {
    justify-content: flex-start !important; /* align icons left */
  }
}

/* Contact Us Button */
.footer-section .btn {
  margin-top: 1rem;
}

/* Contact Us Button */
.btn-warning {
  background-color: #ffcc01 !important;
  color: #000000 !important;
  border: none !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Add a hover effect */
.btn-warning:hover {
  background-color: #e6b800 !important; /* slightly darker gold */
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Layout */
@media (max-width: 992px) {
  .footer-section {
    text-align: center;
  }
  .footer-title {
    margin-top: 20px;
  }
  .social-icons a {
    margin: 0 8px;
  }
  .btn-warning {
    margin-top: 10px;
  }
}

/* hamburger togglers */

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===============================
   ABOUT PAGE CAROUSEL (HERO SLIDESHOW)
=============================== */
#about-carousel {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

#about-carousel .carousel-inner {
  border-radius: 0;
  overflow: hidden;
}

#about-carousel img.hero-slide {
  width: 100%;
  height: 500px; /* default for desktops */
  object-fit: cover;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  #about-carousel img.hero-slide {
    height: 325px; /* tablets */
  }
}

@media (max-width: 768px) {
  #about-carousel img.hero-slide {
    height: 225px; /* smaller mobile screens */
  }
}

/* ===============================
   INFO SECTION
=============================== */
.info-section {
  padding: 60px 0;
  font-family: 'Arimo', sans-serif;
}

.info-block {
  text-align: left;
  margin-bottom: 55px;
}

/* Icon above heading */
.info-header {
  display: flex;
  flex-direction: column;    /* stack image above heading */
  align-items: flex-start;   /* left-align everything */
  margin-bottom: 8px;        /* space between header and paragraph */
}

.info-header img {
  width: 100px;               /* image size (adjust as you like) */
  margin-bottom: 0;          /* no gap between image and heading */
  display: block;
}

.info-header h4 {
  margin: 0;                 /* remove all default gaps */
  font-size: 1.6rem;
  font-weight: 700;
  color: #0b2c67;
  text-transform: uppercase;
}

/* Paragraph and list styles */
.info-text p,
.info-text ol {
  font-size: 1.13rem;
  line-height: 1.65;
  color: #222;
  margin: 0;
  text-align: justify;
}

.info-text ol li {
  margin-bottom: 6px;
}

/* ===============================
   MOBILE FIXES
=============================== */
@media (max-width: 768px) {
  .info-section {
    padding: 40px 0;
  }

  .info-block {
    margin-bottom: 40px;
  }

  .info-header {
    align-items: flex-start;   /* left-aligned for mobile too */
  }

  .info-header img {
    width: 80px;               /* smaller icon for mobile */
    margin-bottom: 0;          /* no space between image and heading */
  }

  .info-header h4 {
    font-size: 1.35rem;
  }

  .info-text p,
  .info-text ol {
    font-size: 1rem;
    text-align: left;
  }
}


/* Donation */
/* ===============================
   Donation Page Styles
   =============================== */

/* Full-width donation carousel */
#donation-carousel {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

#donation-carousel .carousel-inner {
  border-radius: 0; /* Removes rounded corners for a full-width look */
  overflow: hidden;
}

#donation-carousel img {
  width: 100%;
  height: 500px; /* Adjust as needed */
  object-fit: cover; /* Ensures image fills area without distortion */
}

/* Section headings and text */
section h2 {
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
}

section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

/* Optional: Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  #donation-carousel img {
    height: 300px;
  }

  section p {
    font-size: 1rem;
  }
}



/* Sidebar */
#sidebar {
  width: 250px;
  height: calc(100vh - 70px);
  background-color: #ffffff;
  overflow-y: auto;
  border-right: 1px solid #dee2e6;
  padding: 1rem;
  position: sticky;
  top: 70px;
  z-index: 1;
}

/* Sidebar toggle */
#sidebarToggle {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1050;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
}

/* Sidebar text */
#sidebar h6 {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #6c757d;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

#sidebar .nav-link {
  font-size: 0.95rem;
  padding-left: 0.25rem;
  color: #000;
}

#sidebar .nav-link:hover { color: #0d6efd; }

/* Responsive sidebar adjustments */
@media (min-width: 768px) {
  #sidebarToggle { display: none; }
  #mainContent { margin-left: 250px; margin-top: 80px; }
  #sidebar .mobile-only { display: none !important; }
}

@media (max-width: 767.98px) {
  #sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    z-index: 1040;
    height: 100vh;
    transition: left 0.3s ease;
  }

  #sidebar.visible { left: 0; }
  #mainContent { margin-top: 80px; }
}

/* Responsive Design */
.logo-icon {
  width: 60px;
  max-width: 100%;
}

@media (max-width: 768px) {
  .row { gap: 5px; }
  .logo-icon { width: 50px; }
}

/* Small screen adjustments */
@media (max-width: 576px) {
  .navbar .container-fluid {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-brand { text-align: right; margin-left: auto; }
  .navbar-toggler { margin-right: auto; }

  .card-body { text-align: center; }
  .admin-dashboard-one, .admin-dashboard-two { text-align: center; margin: auto; }
  .list-group, footer .row { text-align: center; }
  footer .col-md-4 { margin-bottom: 1.5rem; }
}

/* Carousel caption scaling */
@media (max-width: 768px) {
  .carousel-caption-wrapper h1 { font-size: 1.3rem; }
  .carousel-caption-wrapper p { font-size: 0.95rem; }
  .carousel-caption-wrapper {
    top: 60% !important;
    transform: translate(-50%, -50%) !important;
  }
}

/* HERO SECTION STYLING */
#educationCarousel .carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* replaces .bg-dark.opacity-50 for more control */
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 90%;
  max-width: 850px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffcc01;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-buttons a {
  background-color: #ffcc01;
  color: #000;
  font-weight: 700;
  border-radius: 40px;
  padding: 12px 32px;
  transition: 0.3s ease;
}

.hero-buttons a:hover {
  background-color: #ffd633;
  transform: translateY(-2px);
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content h2 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-buttons a {
    display: block;
    width: 80%;
    margin: 0.5rem auto;
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .hero-content {
    width: 95%;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content h2 {
    font-size: 1.3rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
}


/* Footer adjustments on smaller screens */
/* @media (max-width: 768px) {
  footer .row > div { margin-bottom: 1.5rem; }
  footer .text-center { margin-top: 1rem; }
  footer .fa-brands, footer span {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
  }
  footer { text-align: center; }
} */
