/* ===========================
   Reset / Base
=========================== */
/* Target all sections except hero */
:root {
  --primary-color: #00468f;
  /* Example: Dodger Blue */
  --secondary-color: #ee7c00;
  /* Example: Coral Red */
  --college-banner: url('/images/college.jpg');
  --school-banner: url('/images/school.webp');
  --corporate-banner: url('/images/corporate.jpg');
  --event-banner: url('/images/event.jpg');
  --about-banner: url('/images/about-background.jpg');
  --gallery-banner: url('/images/gallery.webp');


}

@font-face {
  font-family: 'Whyte';
  src: url('/fonts/Whyte-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

body {
  font-family: 'Whyte', sans-serif;
}




  .contact-form{
    font-family: 'Whyte', sans-serif;
  }
.btn {
 font-family: 'Whyte', sans-serif;
}
 
  /* Input and Textarea Styling */
.contact-form input,
.contact-form textarea {
  
 font-family: 'Whyte', sans-serif;
 
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f56c07;
  box-shadow: 0 0 8px rgba(245, 108, 7, 0.3);
}

/* Placeholder Font Style */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
  font-style: italic;
   font-family: 'Whyte', sans-serif;
}


section:not(.hero, .clients) {
  padding-left: 150px;
  /* adjust as needed */
  padding-right: 150px;
  /* adjust as needed */
  box-sizing: border-box;
  /* ensure padding doesn’t break width */
}




/* header section */




/* Optional: make responsive for smaller screens */
@media (max-width: 768px) {
  section:not(.hero) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* ===========================
   Navbar + Topbar Styles
=========================== */

/* General Header */
.main-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: 'Whyte', sans-serif;
  /* custom font */
}

/* Topbar */
.topbar {
  background-color: #8b4513;
  /* brown */
  padding: 8px 0;
  font-size: 14px;
  color: #fff;
}

.topbar .contact-item i {
  margin-right: 6px;
}

.topbar .contact-item a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.topbar .contact-item a:hover {
  color: #f0f0f0;
}

.topbar .social-icons a {
  margin-left: 10px;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.topbar .social-icons a:hover {
  color: #ddd;
}

/* Container layout helpers */
.d-flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.me-3 {
  margin-right: 1rem;
}

/* Main Nav */
.navbar {
  padding: 12px 0;
  background: #fff;
}

.navbar-brand img {
  height: 50px;
}

/* Menu */
.nav-menu-wrapper {
  margin-left: auto;
}

.navbar-nav {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  display: block;
  transition: color 0.3s;
}

.navbar-nav .nav-item.active>.nav-link,
.navbar-nav .nav-link:hover {
  color: #ee7c00;
  /* highlight color */
}

/* Dropdown */
.submenu ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  background: #fff;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 0;
  z-index: 999;
}

.submenu ul li {
  width: 100%;
}

.submenu ul li a {
  padding: 10px 15px;
  color: #333;
  display: block;
}

.submenu ul li a:hover {
  background: #8b4513;
  color: #fff;
}

.submenu:hover>ul {
  display: flex;
}

/* Get in Touch Button */
.btn-contact {
  padding: 10px 20px;
  background: #0e0d0d;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  margin-left: 2rem;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #ee7c00;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
  }

  .navbar-nav.show {
    display: flex;
  }

  .btn-contact {
    margin-left: 0;
    margin-top: 10px;
  }
}







/* ===========================
   Mobile Menu (Hamburger)
=========================== */
.menu-toggle {
  display: block;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #333;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 1.2rem;
    padding: 1rem 0;
    display: none;
    /* hidden by default */
  }

  .nav-links.active {
    display: flex;
    /* show when toggled */
  }

  .menu-toggle {
    display: block;
  }
}


.hero {
  position: relative;
  height: 200vh;
  width: 100%;
  overflow: hidden;
}

/* 🌊 Bottom wave border */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #fff;
  /* next section color */
  z-index: 2;
  clip-path: path("M0,224L60,208C120,192,240,160,360,170.7C480,181,600,235,720,245.3C840,256,960,224,1080,202.7C1200,181,1320,171,1380,165.3L1440,160L1440,320L0,320Z"
    );
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* semi-transparent dark overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      /* fully transparent at top */
      rgba(0, 0, 0, 0.4) 65%,
      /* medium in middle */
      rgba(0, 70, 143, 1) 100%
      /* #00468f at bottom */
    );
  z-index: 1;
}

.hero-content {
  position: absolute;
  /* absolute to place at bottom within hero section */
  bottom: 10%;
  /* adjust this to move it up/down (e.g. 5%, 15%) */
  left: 50%;
  /* center horizontally */
  transform: translateX(-50%);
  /* perfectly center horizontally */
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* centers content horizontally */
  text-align: center;
  color: #fff;
  font-family: 'Whyte';
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  /* space between buttons */
  justify-content: center;
}

.hero-buttons a {
  text-decoration: none;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

/* Primary button */
.btn-primary {
  background: transparent;
  color: white;
  border: 2px solid #fff;
}

.btn-primary:hover {
  background: white;
  color: var(--primary-color);
}


/* Secondary button */
.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: white;
}

/* Responsive */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
  .hero-content {
    width: 80%;
    padding-left: 1.5rem;
  }

  .hero-content h1 {
    font-size: 3.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}

/* Tablets / medium screens */
@media (max-width: 768px) {
  .hero-content {
    width: 90%;
    padding-left: 1rem;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons a {
    padding: 5px 22px;
    font-size: 0.95rem;
  }
}

/* -------------------- MOBILE RESPONSIVE (<=480px) -------------------- */
@media (max-width: 480px) {
  .hero-content {
    width: 90%;
    align-items: center;
    /* center text & buttons */
    text-align: center;
    padding-left: 0;
    margin-top: 120px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-top: 8px;
  }

  .hero-buttons {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-left: 2rem;
    padding: auto;
  }

  .hero-buttons a {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

/* -------------------- TABLET RESPONSIVE (481px - 991px) -------------------- */
@media (min-width: 481px) and (max-width: 991px) {
  .hero-content {
    padding-left: 5rem;
    text-align: left;
    margin-top: 200px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}


/* Footer Base */
.footer {
  background-color: #012954;
  color: #fff;
  padding: 3rem 5%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Columns */
.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #ee7c00;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

/* Footer Social Icons */
.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #012954;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.footer-socials a:hover {
  background: #ee7c00;
  color: #fff;
}


/* Footer Bottom */
.footer-bottom {
  /* text-align: center; */
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.left {

  flex-basis: 50%;
}

.right {
  flex-basis: 50%;
  text-align: right;
}

.hyperlink {
  color: #fff;
  text-decoration: none;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-container {
    justify-content: flex-start;
  }

}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    text-align: left;
  }

  .footer-col {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 3%;
  }

  .footer-col h3 {
    font-size: 1.1rem;
  }

  .footer-col p,
  .footer-bottom {
    font-size: 0.85rem;
  }

  .footer-col {
    flex: none;
  }

  .social-icons a {
    width: 28px;
    height: 28px;
  }
}

/* Hero Section with Dynamic Background and Transparency */
/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  background: url('/images/1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  transition: all 0.5s ease;
}

/* Overlay for transparency effect */
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  /* default transparent */
  transition: background-color 0.5s ease;
  z-index: 1;
}

/* Content above overlay */
.hero-section .content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* Scroll effect: darken overlay */
.hero-section.scrolled .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  /* darker on scroll */
}

.about-image-home{
   flex: 1 1 450px;
  text-align: center;
  animation: fadeInRight 1.2s ease forwards;

}
.about-image-home img{
  max-width: 100%;
  height: 300px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  
}


/* About Section Styling */
.about {
  padding: 100px 0;
  background: linear-gradient(120deg, #f9f9f9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative shapes for modern design */
.about::before,
.about::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.about::before {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: -100px;
  left: -150px;
}

.about::after {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  bottom: -80px;
  right: -100px;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.about-text {
  flex: 1 1 500px;
  max-width: 600px;
  animation: fadeInUp 1s ease forwards;
}

.about-text .section-title {
  font-size: 40px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.about-text .section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: var(--secondary-color);
  margin-top: 15px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.about-text .section-title:hover::after {
  width: 100px;
}

.about-text p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 400;
}

.about-btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--primary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.about-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* About Image Styling */
.about-image {
  flex: 1 1 450px;
  text-align: center;
  animation: fadeInRight 1.2s ease forwards;
}


.about-image img {
  max-width: 100%;
  height: 400px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  /* position: relative;
  z-index: 1; */
}

.about-image img:hover {
  transform: translateY(-10px) scale(1.05) rotate(-1deg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .about-container {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text,
  .about-image {
    max-width: 100%;
  }

  .about-text .section-title {
    font-size: 36px;
  }

  .about-btn {
    padding: 12px 28px;
  }
}

@media (max-width: 768px) {
  .about-text .section-title {
    font-size: 32px;
  }

  .about-text p {
    font-size: 15px;
  }

  .about-btn {
    font-size: 15px;
    padding: 10px 25px;
  }
}


/* Our Imapct */
.our-impact {
  padding: 6rem 0;
  background: linear-gradient(rgba(238, 124, 0, 0.8),
      /* solid near top */
      rgba(203, 88, 1, 0.986)
      /* more transparent near bottom */
    );
  color: white;
  text-align: center;

}



.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  padding-top: 15px;
  color: var(--primary-color);
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  font-weight: 700;
  color: #f39c12;
}

.impact-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.impact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-radius: 15px;
  flex: 1 1 200px;
  max-width: 250px;
  transition: transform 0.3s, background 0.3s;
}

.impact-card:hover {
  transform: translateY(-10px);
  background: rgba(243, 156, 18, 0.1);
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.impact-number::after {
  content: "+";
  /* adds + after number */
}

.impact-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 768px) {
  .impact-cards {
    gap: 1rem;
  }
}



:root {
  --primary-color: #00468f;
  --secondary-color: #ee7c00;
}

.highlight-events {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f6f9fc, #eef1f6);

}

/* Container */
.events-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

/* Section Heading */
.events-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.events-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 70%;
  height: 4px;
  background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
  transform: translateX(-50%);
  border-radius: 10px;
}

/* Events Row */
.events-row {
  display: flex;
  gap: 1.5rem;
  height: 420px;
  transition: all 0.4s ease;
}

/* Event Box */
.event-box {
  flex: 0.5;
  /* default small */
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  transition: all 0.6s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  filter: brightness(0.7);
}

/* Default first card expanded */
.event-box:first-child {
  flex: 3;
  filter: brightness(1);
}

/* Event Image */
.event-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.8s ease, filter 0.6s ease;
}

/* Event Info Overlay */
.event-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.80), rgba(34, 33, 33, 0.03));
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

/* Show info on first card by default */
.event-box:first-child .event-info {
  opacity: 1;
  transform: translateY(0);
}

/* Event Title */
.event-info h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Event Description */
.event-info p {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* Hover Effects: expand hovered card */
.events-row:hover .event-box:hover {
  flex: 3;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  filter: brightness(1);
}

/* Hover image zoom */
.events-row:hover .event-box:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

/* Hover info visible */
.events-row:hover .event-box:hover .event-info {
  opacity: 1;
  transform: translateY(0);
}

/* Shrink other cards when one is hovered */
.events-row:hover .event-box:not(:hover) {
  flex: 0.5;
  /* shrink more */
  filter: brightness(0.3);
}

/* Hide info on non-hovered cards when hovering */
.events-row:hover .event-box:not(:hover) .event-info {
  opacity: 0;
  transform: translateY(40px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .events-row {
    flex-direction: column;
    height: auto;
  }

  .event-box {
    flex: unset;
    height: 280px;
  }
}

@media (max-width: 600px) {
  .events-heading {
    font-size: 2.2rem;
  }

  .event-info h3 {
    font-size: 1.4rem;
  }

  .event-info p {
    font-size: 0.95rem;
  }
}



.blogs {
  padding: 4rem 2rem;
  background: #f5f5f5;
  color: #222;

}

.blogs .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  /* bold */
  margin-bottom: 3rem;
  color: #00468f;
}



/* Grid Layout */
.blog-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Modern Blog Card with Advanced Animation */
.blog-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px 5px 25px 5px;
  /* asymmetric edges for style */
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  position: relative;
  padding-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-clip: padding-box;
}

/* Hover Effects */
.blog-card:hover {
  transform: translateY(-20px) rotateZ(1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Image with Double Gradient Overlay */
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  margin-bottom: 1rem;
  position: relative;
  transition: transform 0.5s ease;
}

.blog-card img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 70, 143, 0.5), rgba(238, 124, 0, 0.5));
  mix-blend-mode: overlay;
  pointer-events: none;
}

.blog-card:hover img {
  transform: scale(1.1) rotateZ(1deg);
  filter: brightness(1.1);
}

/* Blog Text */
.blog-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #00468f;
  transition: color 0.3s ease;
}

.blog-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

/* View More */
.view-more {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: #00468f;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.view-more .arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.view-more:hover {
  color: #ee7c00;
}

.view-more:hover .arrow {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
  .blog-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .blog-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-row {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    height: 200px;
  }
}

/* Extra Animation: Floating Cards */
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.blog-card {
  animation: floatCard 6s ease-in-out infinite;
}

.blog-card:hover {
  animation-play-state: paused;
  /* stop float on hover */
}



/* Services Circle Section */
.services-circle {
  text-align: center;
  /* padding: 2rem 0 6rem; */
  background-color: #f8f9fa;
  overflow: hidden;
  height: 600px;

  /* margin-bottom: 20px; */

}


.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 15px; */
}

.main-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #004d99 30%, #00264d 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

/* Circle container */
.circle-container {
  position: relative;
  /* width: 90vw;
    max-width: 600px; */
  height: 40vw;
  max-height: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Central image */
.center-image-circle {
  position: absolute;
  width: 25%;
  height: 40%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 10;
}

.center-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


:root {
  --bg1: #020617;
  --bg2: #0b1938;

  --card-w: 150px;
  --card-h: 150px;
  --radius: 230px;
  --center-w: 140px;

  --orbit-glow: rgba(0, 180, 216, 0.3);
  --orbit-shadow: 0 0 25px rgba(0, 180, 216, 0.4);
}

.it-services-hub {
  background: var(--bg1);
  padding: 80px 20px;
  text-align: center;
  color: #333;
}

.it-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  color: #fff;
}

.it-subtitle {
  color: #aaa;
  margin-bottom: 50px;
  font-size: 1rem;
}

.it-circle-wrap {
  position: relative;
  width: 550px;
  height: 550px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

/* --- Center Image --- */
.it-center-hex {
  position: absolute;
  width: var(--center-w);
  height: var(--center-w);
  z-index: 10;
  background: var(--node-color, #0b1938);
  border-radius: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  color: #fff;
}

.it-center-hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Orbit and Nodes --- */
.it-orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: orbit-spin 35s linear infinite;
}

@keyframes orbit-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes counter-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

/* Dashed orbit line */
.it-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 460px;
  height: 460px;
  border: 2px dashed var(--orbit-glow);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--orbit-shadow);
}

/* Orbit Nodes */
.it-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--card-w);
  height: var(--card-h);
  transform-origin: center;
  margin: calc(-1 * var(--card-w) / 2);
  transform: rotate(var(--angle)) translateX(var(--radius));
  transition: transform 0.3s ease, z-index 0.3s ease;
  z-index: 5;
}

/* Pause orbit & counter rotation when hovering ANY node */
.it-circle-wrap:hover .it-orbit {
  animation-play-state: paused;
}

.it-circle-wrap:hover .it-card-inner {
  animation-play-state: paused;
}

/* Orbiting Cards */
.it-card {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--node-color, #0b1938);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.it-card-inner {
  animation: counter-spin 35s linear infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.it-icon-wrapper {
  transform: rotate(calc(-1 * var(--angle)));
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.it-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.it-card span {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  /* line-height: 1.1; */
  /* padding: 0 2px; */
  max-width: 100px;
}

.it-card i:hover {
  color: var(--secondary-color);
}

/* Change icon & text color when card is hovered */
.it-card:hover i,
.it-card:hover span {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

/* === Advanced Hover Animation === */
.it-card:hover {
  transform: scale(1.25);
  box-shadow: 0 0 25px rgba(238, 124, 0, 0.9), 0 0 50px rgba(238, 124, 0, 0.4);

  /* background: radial-gradient(circle at center, #00b4d8, #003366); */
  z-index: 15;
  animation: pulseGlow 1.5s infinite ease-in-out;
  color: #EE7C00;

}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(238, 124, 0, 0.5), 0 0 25px rgba(238, 124, 0, 0.2);
  }

  50% {
    box-shadow: 0 0 30px rgba(238, 124, 0, 0.9), 0 0 60px rgba(238, 124, 0, 0.6);
  }

  100% {
    box-shadow: 0 0 15px rgba(238, 124, 0, 0.5), 0 0 25px rgba(238, 124, 0, 0.2);
  }
}

/* --- Color Variants --- */
.purple,
.pink,
.green,
.yellow,
.blue,
.orange {
  --node-color: #0b1938;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 10px;
  backdrop-filter: blur(3px);
}

/* Show modal */
.modal-overlay.active {
  display: flex;
}

/* Modal Content */
.modal-content {
  position: relative;
  width: 80%;
  max-width: 1000px;
  background: #383333;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(69, 66, 66, 0.7);
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}


/* Modal Body (16:9 video) */
.modal-body {
  position: relative;
  padding-top: 56.25%;
}

.modal-body iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
}


/* Hide mobile section on desktop */
.it-services-hub-mobile {
  display: none;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .it-services-hub {
    display: none;
    /* Hide orbit on mobile */
  }

  .it-services-hub-mobile {
    display: block;
    background: linear-gradient(to bottom, #0b1938, #020617);
    color: #fff;
    padding: 40px 16px;
  }

  /* Heading Card */
  .center-card {
    text-align: center;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .center-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #00b4d8;
    margin-bottom: 6px;
  }

  .center-card p {
    font-size: 1rem;
    color: #ffffffcc;
  }

  /* Grid Layout */
  .mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .mobile-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .mobile-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
  }

  .mobile-card i {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
  }

  .mobile-card span {
    font-size: 14px;
    display: block;
    font-weight: 500;
  }

  /* Accent Colors */
  .mobile-card.green i {
    color: #ee7c00;
  }

  .mobile-card.orange i {
    color: #ee7c00;
  }

  .mobile-card.blue i {
    color: #ee7c00;
  }

  .mobile-card.purple i {
    color: #ee7c00;
  }

  .mobile-card.pink i {
    color: #ee7c00;
  }

  .mobile-card.yellow i {
    color: #ee7c00;
  }
}

/* Our Product Section */
.our-product {
  padding: 5rem 0;
  background: linear-gradient(rgba(238, 124, 0, 0.8),
      /* solid near top */
      rgba(203, 88, 1, 0.986)
      /* more transparent near bottom */
    );
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.product-heading {
  font-size: 2.5rem;
  font-weight: 700;
  font: bold;
  margin-bottom: 3rem;
  color: white;
  position: relative;
}

.product-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card {
  flex: 1 1 45%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-content {
  padding: 1.5rem;
  text-align: left;
}

.product-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #00468f;
}

.product-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.2rem;
}

.btn-read {
  display: inline-block;
  padding: 10px 18px;
  background: #00468f;
  color: #fff;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-read:hover {
  background: #ee7c00;
}

.product-content h3 i {
  color: #ee7c00;
  /* orange icon */
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    flex: 1 1 100%;
  }
}

/* Clients Section */
.clients {
  /* padding: 80px 0; */
  background: #f8f9fa;
  text-align: center;
  overflow: hidden;
  width: 100%;
  height: 300px;
  margin-top: 100px;
  background-color: white;
}

/* Remove container width limit for full screen */
.clients-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  /* margin-top: 200; */
}


.section-clienttitle {
  font-size: 2.2rem;
  font-weight: 700;
  font: bold;
  color: var(--primary-color);
  margin-top: 10px;
  margin-bottom: 50px;
}

/* Slider Container */
.client-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* full width */
  margin: 0 auto;
}

/* Track (scrolling logos) */
.client-track {
  display: flex;
  width: max-content;
  /* auto width for smooth infinite scroll */
  animation: scroll 40s linear infinite;
  transition: all 0.3s ease;
}

.client-track:hover {
  animation-play-state: paused;
}

/* Each Logo Card */
.client-card {
  flex: 0 0 auto;
  margin: 0;
  /* no side gaps for perfect edge alignment */
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-card img {
  height: 90px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
  padding: 0 40px;
  /* spacing between logos */
}

.client-card img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Optional: Make responsive for smaller devices */
@media (max-width: 768px) {
  .client-card img {
    height: 70px;
    padding: 0 25px;
  }
}



/* Advanced Contact Section */
.contact {
  padding: 4rem 0;
  background: linear-gradient(to right, #f9f9f9, #fff);
}

.contact .section-title {
  text-align: center;
  font: bold;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact .section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 3rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}


textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'whyte';
  /* main textarea font */
  font-size: 1rem;
  resize: vertical;
}

/* Style the placeholder text */
textarea::placeholder {
  font-family: 'whyte';
  /* main textarea font */
  font-size: 0.95rem;
  color: #999;
  /* lighter gray for placeholder */
  letter-spacing: 0.3px;
}


/* Left Info */
.contact-info {
  flex: 1 1 40%;
  background: var(--primary-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  /* Space between icon and text */
  margin-bottom: 1.5rem;
}

.contact-info .icon {
  font-size: 1.5rem;
  /* Icon size */
  color: white;
  /* Icon color */
  margin-top: 5px;
  /* Align with text */
}

.contact-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: white;
  /* Title color */
}

.contact-info p {
  font-size: 0.95rem;
  color: white;
  /* Text color */
  margin: 0;
}

/* Optional: make map rounded */
.contact-info .map {
  margin-top: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
}

/* Right Form */
.contact-form {
  flex: 1 1 55%;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: gray;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form .two-col {
  display: flex;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(243, 156, 18, 0.3);
}

.contact-form .btn {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form .btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    flex-direction: column;
  }
}


/* ---------------- Feedback Section ---------------- */
.feedback {
  padding: 4rem 2rem;
  background: #f1f5f9;
}

/* Section Title */
.section-title {
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--primary-color, #00468f);
}

/* Slider Container */
.feedback-slider {
  overflow: hidden;
  position: relative;
}

/* Feedback Cards Wrapper */
.feedback-cards {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
  align-items: stretch;
}

/* Individual Feedback Card */
.feedback-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  min-width: 22%;
  /* ~4 cards visible on desktop */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* bottom align h3/h4 */
  text-align: center;
  height: 360px;
  /* fixed height for all cards */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.feedback-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Feedback Text */
.feedback-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  flex-grow: 1;
  /* occupies space above bottom section */
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1rem;
}

/* Optional: scroll long text on hover */
.feedback-card:hover p {
  overflow-y: auto;
}

/* Name and Program / Role */
.feedback-card h3,
.feedback-card h4 {
  margin: 0;
  padding: 0.2rem 0;
}

/* Name */
.feedback-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color, #00468f);
}

/* Program / Role */
.feedback-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color, #888);
  border-top: 1px solid #eee;
  padding-top: 0.5rem;
}

/* ---------------- Responsive ---------------- */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
  .feedback-card {
    min-width: 32%;
    /* show ~3 cards */
  }
}

/* Tablets / medium screens */
@media (max-width: 768px) {
  .feedback-card {
    min-width: 48%;
    /* show 2 cards per row */
    margin: 0 5px;
    height: auto;
    /* dynamic height */
  }

  .feedback-card p {
    height: auto;
  }
}

/* Mobile / small screens */
@media (max-width: 480px) {
  .feedback-card {
    min-width: 90%;
    /* show 1 card per row */
    margin: 0 auto 1rem auto;
    height: auto;
  }

  .feedback-card p {
    height: auto;
  }

  .section-title {
    font-size: 1.8rem;
  }
}




/* About Hero Section */
.about-hero {
  position: relative;
  height: 35vh;
  background: url('{{ asset("images/about-hero.jpg") }}') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.about-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.2rem;
  font-weight: 400;
}

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: auto;
  flex-direction: row-reverse;
  /* Image on right, content on left */
  position: relative;
  z-index: 1;
}

/* Decorative Floating Shapes */
.about-section::before,
.about-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}

.about-section::before {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: -100px;
  left: -150px;
  animation: float 10s ease-in-out infinite alternate;
}

.about-section::after {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  bottom: -80px;
  right: -100px;
  animation: float 12s ease-in-out infinite alternate-reverse;
}

@media (max-width: 768px) {

  .about-section::before,
  .about-section::after {
    display: none;
  }
}

/* About Image */
.about-image {
  flex: 1 1 50%;
  position: relative;
  text-align: center;
}

.about-image img {
  width: 80%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  z-index: 1;
}

.about-image img:hover {
  transform: translateY(-10px) scale(1.05) rotate(-1deg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

/* About Content */
.about-content {
  flex: 1 1 50%;
  z-index: 2;
}

.card-title i {
  font-size: 1rem;
  /* smaller icon */
  color: var(--secondary-color);
  /* icon color */
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  position: relative;
}

.about-content h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin-top: 10px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.about-content h2:hover::after {
  width: 120px;
}

.about-content p {
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size: 16px;
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 2rem;
  justify-content: flex-start;
}

.card {
  flex: 1 1 calc(33% - 1.8rem);
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 100%;
  top: -100%;
  left: -10%;
  background: linear-gradient(45deg, rgba(238, 124, 0, 0.15), rgba(238, 124, 0, 0.05));
  transform: rotate(25deg);
  transition: all 0.6s ease;
}

.card:hover::before {
  top: 0;
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.card h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.card p {
  color: #555;
  font-size: 14.5px;
  line-height: 1.7;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(10px) rotate(5deg);
  }

  /* Halfway point for smoother float */
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  /* Return to start */
}

/* Fade-in animation (subtle) */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  /* Reduced from 40px */
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .cards {
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-image,
  .about-content {
    max-width: 100%;
  }

  .cards {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 15px;
  }
}


/* Team Section */
.team {
  padding: 5rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.team h2,
.team .section-title {
  font-size: 2.5rem;
  font: bold;
  margin-bottom: 3rem;
  color: var(--secondary-color);
  font-weight: 700;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns per row */
  gap: 2rem;
  justify-items: center;
}

.team-card {
  width: 100%;
  max-width: 300px;
  /* optional: limit width */
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-info h4 {
  margin: 0.5rem 0;
  color: #EE7C00;
}

.team-info p {
  margin: 0 0 0.5rem;
  color: #fff;
}

.social-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.social-links a {
  color: #fff;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #EE7C00;
}

/* Responsive */
@media (max-width: 992px) {
  .team-members {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .team-members {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
  }
}

/* CTA Section */
.cta-container {
  background: linear-gradient(rgba(238, 124, 0, 0.8),
      /* solid near top */
      rgba(203, 88, 1, 0.986)
      /* more transparent near bottom */
    );
  color: white;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 20px;
}

.cta-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}

.cta-content p {
  font-size: 1.2rem;
  margin: 10px 0 30px 0;
}

.cta-button {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--secondary-color);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .about-section {
    flex-direction: column-reverse;
    padding-top: 100px;
  }

  .about-image img {
    width: 70%;
    margin: auto;
  }

  .cards {
    flex-wrap: wrap;
  }

  .team-members {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column-reverse;
    padding-top: 80px;
    gap: 1.5rem;
  }

  .about-image img {
    width: 100%;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .cards {
    flex-direction: column;
    gap: 1rem;
  }

  .team-members {
    flex-direction: column;
    gap: 2rem;
  }

  .cta-content h1 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding-top: 60px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }

  .cta-content h1 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 0.9rem;
  }
}


/* Gallery section */
/* Hero Section */
.page-hero.gallery-hero {
  position: relative;
  background-image: var(--gallery-banner);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 20px;
  text-align: center;
  color: #00468f;

}

/* Transparent overlay */
.page-hero.gallery-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Adjust transparency here */
  z-index: 1;
}

.page-hero.gallery-hero .hero-content {
  position: relative;
  z-index: 2;
  /* Makes sure content is above overlay */
  padding-top: 10%;
  color: var(--primary-color);
}

.gallery-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #EE7C00;
}

.gallery-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
  color: black;
}

/* Gallery Grid */
.gallery-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay h4 {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 0 1rem;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  overflow: auto;
  flex-direction: column;
  padding: 20px;
}

.lightbox-content {
  width: 90%;
  max-width: 900px;
  max-height: 50%;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: contain;
  /* border-radius: 2%; */
}

#lightbox-caption {
  color: #fff;
  text-align: center;
  max-width: 900px;
}

#lightbox-caption h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

#lightbox-caption p {
  font-size: 1rem;
  color: #ddd;
  margin-top: 0;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #ccc;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-hero h1 {
    font-size: 2rem;
  }

  .gallery-hero p {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------- */
/* Banner / Hero Section       */
/* -------------------------- */
.page-hero {
  position: relative;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  padding-top: 10%;
}

.page-hero.school-hero {
  position: relative;
  background-color: var(--secondary-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 130px 20px;
  text-align: start;
  color: #00468f;

}

/* Transparent overlay */
.page-hero.school-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.4); Adjust transparency here */
  z-index: 1;
}

.page-hero.school-hero .hero-content {
  position: relative;
  z-index: 2;
  /* Makes sure content is above overlay */
  padding-top: 10%;
  text-align: center;
  margin-left: 10px;
  color: var(--primary-color);
}

.page-hero.college-hero {
  position: relative;
  background-color: var(--secondary-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 130px 20px;
  text-align: center;
  color: #00468f;

}

/* Transparent overlay */
.page-hero.college-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.4); Adjust transparency here */
  z-index: 1;
}

.page-hero.college-hero .hero-content {
  position: relative;
  z-index: 2;
  /* Makes sure content is above overlay */
  padding-top: 10%;
  margin-left: 10px;
  color: var(--primary-color);
}

.page-hero.corporate-hero {
  position: relative;
  background-color: var(--secondary-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 130px 20px;
  text-align: center;
  color: #00468f;

}

/* Transparent overlay */
.page-hero.corporate-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.4); Adjust transparency here */
  z-index: 1;
}

.page-hero.corporate-hero .hero-content {
  position: relative;
  z-index: 2;
  /* Makes sure content is above overlay */
  padding-top: 10%;
  margin-left: 10px;
  color: var(--primary-color);
}

.page-hero.about-hero {
  position: relative;
  /* background-image: var(--about-banner); */
  background-color: var(--secondary-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 130px 20px;
  text-align: center;
  /* color: #00468f; */

}

/* Transparent overlay */
.page-hero.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.4);  */
  z-index: 1;
}

.page-hero.about-hero .hero-content {
  position: relative;
  z-index: 2;
  /* Makes sure content is above overlay */
  padding-top: 10%;
  margin-left: 10px;
  color: var(--primary-color);
}


.page-hero.event-hero {
  position: relative;
  background-color: var(--secondary-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 130px 20px;
  text-align: center;
  color: #00468f;
}

/* Transparent overlay */
.page-hero.event-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}




.page-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* full screen height */
  display: flex;
  justify-content: center;
  /* center horizontally */
  align-items: center;
  /* center vertically */
  text-align: center;
  /* center text */
  color: #fff;
  overflow: hidden;
}

.page-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.page-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .page-hero p {
    font-size: 1rem;
  }
}



/* -------------------------- */
/* Ser


.page-hero {
  position: relative;
  height: 250px;
  background: url('/images/hero-bg.webp') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
}

/* ----------- Cards ------------- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 0 2rem 4rem 2rem;
  padding-top: 5%;
}

.service-card {
  flex: 1 1 calc(25% - 2rem);
  max-width: calc(25% - 2rem);
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  position: relative;
}

/* Hover Effect with Gradient Overlay */
.service-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

/* Overlay Effect on Hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 15px;
}

.service-card:hover::after {
  opacity: 1;
}

/* Card Content */
.card-content {
  padding: 1.5rem 1.2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.marquee-text {
  display: inline-block;
  overflow: hidden;
  max-width: 350px; /* container width */
  white-space: nowrap;
  vertical-align: bottom;
}

.marquee-inner {
  display: inline-block;
  padding-right: 50px;

}


.service-card:hover .marquee-inner {
  animation: scroll-left 7s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(40%);
    /* start off-screen right */
  }

  100% {
    transform: translateX(-80%);
    /* move completely left */
  }
}





/* -------------------------------------- */

.card-content h3 {
  font-size: 1.3rem;
  color: #00468f;
  margin-bottom: 0.3rem;
  font-weight: 700;
  transition: color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-content h3:hover {
  /* color: #f56c07; */
}

/* Event Label */
.event {
  font-size: 0.95rem;
  color: var(--secondary-color);
  font-weight: 800;
}

/* Extra Info Section */
.extra-info {
  margin-top: 0.8rem;
  border-top: 1px solid #eee;
  padding-top: 0.8rem;
  font-size: 0.95rem;
  color: #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.extra-info p {
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .service-card {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }

  .service-card img {
    height: 180px;
  }

  .card-content h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 600px) {
  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .card-content h3 {
    font-size: 1.1rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }

  .extra-info {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}


/* -------------------------- */
/* Student Contact Section     */
/* -------------------------- */
.student-contact {
  background: #f8f9fa;
  /* light background */
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 3rem auto;
  max-width: 900px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.student-contact h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #222;
}

.student-contact p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
  width: 107%;

}



.student-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--primary-color);
  /* blue button */
  color: #fff;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.student-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Responsive */
@media(max-width: 768px) {
  .student-contact h2 {
    font-size: 1.8rem;
  }

  .student-contact p {
    font-size: 1rem;
  }

  .student-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
}

.page-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary-color);
  background-size: cover;
  background-position: center;
  padding-top: 10%;
}




.college-programs {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.college-programs .program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* exactly 3 columns */
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.college-programs .program-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.college-programs .program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.college-programs .program-card h3 {
  color: #00468f;
  margin-bottom: 1rem;
}

.college-programs .program-card p {
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .college-programs .program-cards {
    grid-template-columns: 1fr;
  }
}

.corporate-programs {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.corporate-programs .program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* exactly 3 columns */
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.corporate-programs .program-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.corporate-programs .program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.corporate-programs .program-card h3 {
  color: #00468f;
  margin-bottom: 1rem;
}

.corporate-programs .program-card p {
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .corporate-programs .program-cards {
    grid-template-columns: 1fr;
  }
}


.events-programs {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.events-programs .program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* exactly 3 columns */
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.events-programs .program-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.events-programs .program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.events-programs .program-card h3 {
  color: #00468f;
  margin-bottom: 1rem;
}

.events-programs .program-card p {
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .events-programs .program-cards {
    grid-template-columns: 1fr;
  }
}

/* School Programs Section */
.school-programs {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.school-programs h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* exactly 3 columns */
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.program-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.program-card h3 {
  font-size: 1.2rem;
  color: #00468f;
  margin-bottom: 0.5rem;
  text-align: center;
}

.program-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .program-cards {
    grid-template-columns: 1fr;
    /* stack into 1 column */
  }
}