* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
  background-color: rgba(230,230,250,1) !important;
}
#breadcrumb-main-page,
#breadcrumb-page,
.d-flex.align-items-center span1 {
  font-size: clamp(16px, 2vw, 22px); /* Responsive between 16px–22px */
  color: white;                      /* Ensure white text */
  font-weight: 600;
   white-space: nowrap;
}

@media (max-width: 576px) {
  #breadcrumb-main-page,
  #breadcrumb-page,
  .d-flex.align-items-center span1 {
    font-size: 16px;
  }
}


.about-header {
  position: relative;
  height: 80vh;
  background: url('/images/contact-cover.jpg') no-repeat center center/cover;
  color: white;
  overflow: hidden;
}

/* Gradient overlay */
.about-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 100%);
  transform: translateX(-100%);
  pointer-events: none; /* don’t block clicks */
}

@keyframes slideGradient {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}


@media (max-width: 991.98px) {
  .breadcrumbs {
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
  }
}



/* Responsive Styles */

/* Tablet View */
@media (max-width: 991px) {
  .about-header {
    height: 80vh;
  }

  .about-overlay {
    padding: 50px 30px;
  }

  .about-overlay h1 {
    font-size: 36px;
  }

  .about-overlay p {
    font-size: 20px;
  }

  .breadcrumbs {
    padding-right: 100px;
    font-size: 18px;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .about-header {
    height: 70vh;
  }

  .about-overlay {
    padding: 30px 20px;
  }

  .about-overlay h1 {
    font-size: 28px;
  }

  .about-overlay p {
    font-size: 16px;
  }

 
}


/* Overlay Text */
.about-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 10px;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;

  /* Animation */
  opacity: 0;
  transform: translate(-50%, -60%);
  animation: fadeSlideUp 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

.about-overlay h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;

  /* Optional: stagger effect for text */
  opacity: 0;
  animation: fadeInText 1s ease-out forwards;
  animation-delay: 1s;
}

.about-overlay p {
  font-size: 23px;
  line-height: 1.6;

  /* Optional: stagger effect for paragraph */
  opacity: 0;
  animation: fadeInText 1s ease-out forwards;
  animation-delay: 1.5s;
}

/* Tablet View */
@media (max-width: 991px) {
  .about-overlay {
    padding: 50px 30px;
  }

  .about-overlay h1 { font-size: 36px; }
  .about-overlay p { font-size: 20px; }
}

/* Mobile View */
@media (max-width: 576px) {
  .about-overlay {
    padding: 50px 20px;
  }

  .about-overlay h1 { font-size: 28px; }
  .about-overlay p { font-size: 16px; }
}

/* Animations */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -40%);
  }
}

@keyframes fadeInText {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}





/*****************************************************/

.circle {
    width: 90px;
    height: 90px;
    transition: all 0.3s ease;
   
    
    
  }
  .circle:hover .icon-img {
    transform: scale(1.5);
  }
  .circle:hover .label {
    display: none;
  }
  .icon-img {
   
    transition: transform 0.3s ease;
  }
  .wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
  }
  .featured-title {
    position: relative;
    z-index: 1;
  }
  @media (max-width: 768px) {
  .circle {
    width: 90px;
    height: 90px;
  }

  .icon-img {
    width: 20px;
    height: 20px;
  }

  .label {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .circle {
    width: 80px;
    height: 80px;
  }

  .icon-img {
    width: 10px;
    height: 10px;
  }

  .label {
    font-size: 0.5rem;
  }
}







/**********************************************/
.services-section {
    max-width: 1500px;
    margin: auto;
    text-align: center;
    background: linear-gradient(145deg, #f5f7fa, #e8ebf1);
    padding: 60px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #111;
    font-weight: 800;
    letter-spacing: 1px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
}

.service-cards {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 25px 20px;
    text-align: center;
    height: 350px;
    width: 280px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-cards::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -50%;
    left: -50%;
    background: rgba(255, 230, 50, 0.2);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.service-cards:hover::before {
    width: 200%;
    height: 400%;
}

.service-cards:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-cards img {
    width: 100px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.service-cards:hover img {
    transform: scale(1.1) rotate(5deg);
}

.service-cards h3 {
    font-size: 28px;
    color: #111;
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-cards:hover h3 {
    color: #fcee0a;
}

.service-cards p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-cards {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .service-cards {
        width: 100%;
        padding: 20px;
    }

    .services-section h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .service-cards h3 {
        font-size: 22px;
    }

    .service-cards p {
        font-size: 14px;
    }
}



  /************************************/
    .services-section1 {
  padding: 60px 20px;
  text-align: center;
  background-color: #e8e6fc;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  max-width: 1500px;
  margin: 0 auto;
}


.service-card {
  position: relative;
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px 15px;
  background: rgb(255, 255, 255);
  border-radius: 8px;
  text-align: center;
}

.card-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  transition: top 0.4s ease;
  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  text-align: center;
  overflow: hidden;
}
.card-content h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: rgb(0, 0, 0); /* Set text color to white */
}


.service-card:hover .card-content {
  top: 0;
}

/* Hide list & button initially */
.card-content ul,
.card-content .read-more {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Show only h3 on hover initially */
.service-card:hover .card-content h3 ~ ul,
.service-card:hover .card-content h3 ~ .read-more {
  opacity: 1;
  transform: translateY(0);
}

/* Add border to each list item */
.card-content ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  width: 100%;
}

.card-content ul li {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
}


.read-more {
  padding: 10px 20px;
  
  font-weight: bold;
  color: rgb(22, 25, 214);
  border: none;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
   text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}





.load-more-container {
  text-align: center;
  margin-top: 30px;
}





.load-more-button {
  background-color: rgba(65,75,210,1);
  color: white; 
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
   transition: background-color 0.3s ease; 
}
.load-more-button:hover{
  background: linear-gradient(90deg,rgba(65, 75, 210, 1) 0%, rgba(9, 9, 121, 1) 45%, rgba(0, 212, 255, 1) 100%);
  color: white;
}



/* Large devices (desktops, ≥1200px) */
@media (min-width: 1200px) {
  .services-grid {
    gap: 60px;
  }
}

/* Medium devices (tablets, 768px - 1199px) */
@media (max-width: 1199px) {
  .section-title {
    font-size: 2rem;
  }

  .service-card {
    width: 100%; /* let it fill available space */
    height: 380px;
  }

  .card-content h3 {
    font-size: 1.3rem;
  }

  .read-more {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Small devices (mobile, <768px) */
@media (max-width: 767px) {
  .services-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .service-card {
    width: 100%;
    height: auto;
    min-height: 350px;
  }

  .card-title {
    font-size: 1.2rem;
    padding: 8px 12px;
  }

  .card-content {
    padding: 15px;
  }

  .card-content ul li {
    font-size: 0.9rem;
    padding: 8px;
  }

  .read-more {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .load-more-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}






 /***************************************************/
 .contact-banner {
  position: relative;
  background-image: url('/images/about-footer.jpg');
  background-size: cover;
  background-position: center;
  height: 250px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px;
  overflow: hidden;
}

.contact-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.overlay-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.overlay-text h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 0;
}

.overlay-text p a {
  font-size: 24px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.overlay-text p a:hover {
  color: #ddd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-banner {
    height: 180px;
    margin: 30px;
  }

  .overlay-text h2 {
    font-size: 28px;
  }

  .overlay-text p a {
    font-size: 18px;
  }
}





/* iPad Mini (768px and below) */
@media screen and (max-width: 768px) {
  .services-section h2,
  .section-title {
    font-size: 26px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card-title {
    font-size: 1.2rem;
    padding: 8px 12px;
  }

  .card-content h3 {
    font-size: 1.2rem;
  }

  .read-more {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

/* iPad Air & Pro (Medium Tablets 820px – 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .services-grid,
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .service-cards img {
    width: 90px;
  }

  .card-content h3 {
    font-size: 1.4rem;
  }
}

/* Optional: very small mobile fallback */
@media screen and (max-width: 480px) {
  .services-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .services-section h2,
  .section-title {
    font-size: 22px;
  }

  .card-content ul li {
    font-size: 14px;
  }
}



/***********footer**********************************/
.footer {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 40px 60px;
  font-size: 18px;
}

.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 23px;
}

.newsletter h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.newsletter p {
  color: #8f90a6;
}

.newsletter-form {
  display: flex;
  max-width: 450px;
  width: 450px;
}

.newsletter-form input {
  padding: 16px 16px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 17px;
  width: 100%;
  outline: none;
}

.newsletter-form button {
  padding: 14px 20px;
  border: none;
  background-color: #fcee0a;
  border-radius: 0 8px 8px 0;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}

.footer-social-icons i {
  font-size: 22px;
  color: #fff;
  background: #1a1a1a;
  padding: 10px;
  border-radius: 6px;
}

.footer hr {
  margin: 30px 0;
  border-color: #2a2a2a;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-brand img {
  width: 120px;
  height: 100px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
}

.footer-brand p {
  color: #cfcfcf;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #8f90a6;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  color: #fff;
  display: flex;
  align-items: center;
}

.badges {
  font-size: 10px;
  background: #e6e6e6;
  color: #000;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 8px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 15px;
  color: white;
}

@media (max-width: 768px) {
  .newsletter, .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social-icons {
    justify-content: center;
    margin-top: 10px;
  }

  .newsletter-form {
    width: 100%;
  }

  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }
}



.pagination-wrapper {
  margin-top: 20px;
  text-align: center;
}

.service-card img.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* image fills the card */
    display: block;
}


.card-content {
  background-color: rgba(0, 0, 0, 0.3); 

  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: top 0.4s ease;
  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  text-align: center;
  overflow: hidden;
}


.service-card {
  position: relative;
  overflow: hidden;
}

.service-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Overlay content over the image */
.card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* avoid blocking */
}

/* White box title always visible */
.card-content h3 {
  background: rgb(255, 255, 255);
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
  margin: 0;
  z-index: 2;
}


/* Hover: only show button, title stays */
.service-card:hover .read-more {
  opacity: 1;
  transform: translateY(0);
}
.mission-vision-section {
  display: flex;
  align-items: center;       /* vertically center */
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px 20px;
  border-radius: 10px;
  background-color: rgba(230,230,250,1);
  max-width: 1300px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-size: 20px;
}

.text-content {
  flex: 1;
  min-width: 280px;          /* prevents squishing too small */
}

.text-content h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.mission-title {
  color: blue;
  font-size: 30px;
}

.text-content p {
  font-size: 20px;
  line-height: 1.6;
  color: black;
  margin-bottom: 20px;
}

.image-side {
  perspective: 1000px; /* gives depth for 3D effect */
  display: inline-block;
}

.image-side img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  
  border-radius: 30px; /* rounded corners */
  box-shadow: 0 20px 40px rgba(0,0,0,0.3); /* depth shadow */
  
  /* 3D tilt effect */
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-side img:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.05); /* straighten and zoom on hover */
  box-shadow: 0 30px 50px rgba(0,0,0,0.4);
}


/* ✅ Tablet adjustments */
@media (max-width: 992px) {
  .mission-vision-section {
    flex-direction: column;   /* stack text and image */
    text-align: center;
  }
  .image-side img {
    width: 60%;
    max-width: 300px;
  }
}

/* ✅ Mobile adjustments */
@media (max-width: 576px) {
  .text-content p {
    font-size: 16px;
  }
  .mission-title {
    font-size: 24px;
  }
  .image-side img {
    width: 90%;
    max-width: 250px;
  }
}


/* Stronger selector overrides Bootstrap */
.see-more-btn:hover,
.see-more-btn:focus,
.see-more-btn:active {
    background-color: #f1e60f !important; 
    border-color: #f1e60f !important;
    color: #000 !important; 
}
.see-more-btn {
    padding: 0.50rem 1.5rem; /* bigger hit area */
    font-size: 1.1rem;       /* slightly larger text */
    font-weight: 600;        /* bold for emphasis */
}
/* Full-screen overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* page background while loading */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loader container */
.square-loader {
  display: flex;
  gap: 10px;
}

.square-loader div {
  width: 30px;
  height: 60px;
  background-color: #0d6efd; /* blue squares */
  animation: squareAnim 1.2s infinite ease-in-out;
}

/* Staggered animation for each square */
.square-loader div:nth-child(1) { animation-delay: 0s; }
.square-loader div:nth-child(2) { animation-delay: 0.2s; }
.square-loader div:nth-child(3) { animation-delay: 0.4s; }
square-loader div:nth-child(4) { animation-delay: 0.6s; }

/* Keyframes: scale up and down */
@keyframes squareAnim {
  0%, 100% { transform: scale(0); opacity: 0.3; }
  50% { transform: scale(1); opacity: 1; }
}

.events-cover {
    height: 300px;
    background: url('/images/istockphoto.jpg') center/cover no-repeat;
    border-radius: 0;
}

@media (max-width: 768px) {
    .events-cover {
        height: 200px;
    }
}

/* Event Card */
.event-card {
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;                  /* Always visible */
    transform: translateY(0);    /* No offset */
}


.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Event card image fixed height */
.event-card .card-img-top {
    height: 200px !important;   /* force height to 200px */
    width: 100%;                /* make it span full card width */
    object-fit: cover;          /* maintain aspect ratio and cover the area */
    display: block;
}


.event-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

/* Buttons */
.see-more-btn {
    background: none;
    color: #007bff;          /* Bootstrap blue */
    font-weight: bold;
    border: none;
    padding: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.see-more-btn:hover {
    color: #0056b3;          /* Darker blue on hover */
    text-decoration: underline;
}

/* Pagination */


.page-item {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-link {
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    transform: scale(1.1);
}

.page-item.active .page-link {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.page-item.disabled .page-link {
    color: #aaa;
    background-color: #e9ecef;
    border-color: #ddd;
    cursor: not-allowed;
}

.page-link span {
    font-size: 18px;
}

/* Animation */
@keyframes fadeSlideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.services-sectio1 h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #111;
    font-weight: 800;
    letter-spacing: 1px;
}


.event-card .card-body {
    text-align: left;          /* force text to align left */
    display: flex;
    flex-direction: column;
    align-items: flex-start;   /* align items to left */
    justify-content: flex-start; /* content starts at top */
}

.event-card .see-more-btn {
    align-self: flex-start;    /* keep button on left */
}
.event-card .card-title,
.event-card .card-text {
    margin-left: 0;   /* remove any center spacing */
    text-align: left;
}
.event-card .card-title {
    position: relative;
    padding-bottom: 0; /* space for underline */
    margin-bottom: 0; /* gap between title and description */
}

.event-card .card-title::after {
    content: "";
    display: block;
    width: 500px;             /* underline width */
    height: 3px;             /* underline thickness */
    background-color: #007bff; /* underline color */
    margin-top: 5px;
    border-radius: 2px;      /* rounded edges of underline */
}
/* Normal state */
.request-btn {
    background-color: rgba(65,75,210,1) !important; 
    color: #fff !important;
    font-weight: bold;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.request-btn:hover {
  background: linear-gradient(
    90deg,
    rgba(65, 75, 210, 1) 0%,
    rgba(9, 9, 121, 1) 45%,
    rgba(0, 212, 255, 1) 100%
  );
  color: #ffffff !important;
}

/* ===== SERVICE PAGE MOBILE HEADER FIX ===== */
@media (max-width: 576px) {
  .about-header {
    height: 50vh !important;
    margin-top: 80px !important;
  }
  
  .about-overlay {
    max-width: 320px !important;
    width: 90% !important;
    padding: 30px 20px !important;
  }
  
  .about-overlay h1 {
    font-size: 28px !important;
  }
  
  .about-overlay p {
    font-size: 16px !important;
  }
}