/* ===== Basic Theme Styles ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  scroll-behavior: smooth;
  background: #f5f9ff; /* very light blue background optional */
}

/* ===== Slider - Swiper ===== */

/* Slider wrapper with relative position and background */
/* Slider wrapper */
/* Slider wrapper */
.slider-wrapper {
  position: relative;
  /*background: #00CAFF; /* Use #0a3d62 for blue background */
  overflow: visible;
}

/* Swiper container */
.swiper {
  width: 100%;
  height: 600px;
  overflow: visible;
   background: #00CAFF; /* Use #0a3d62 for blue background */
}

/* Default slide image – small curved bottom */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  display: block;

  clip-path: polygon(
    0 0,
    100% 0,
    100% 90%,
    80% 98%,
    20% 98%,
    0 90%
  );

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform-origin: center;
  transition:
    clip-path 1s ease,
    transform 1s ease,
    opacity 1s ease;
}

/* Active slide – small S-curve */
.swiper-slide-active img {
  clip-path: polygon(
    0 0,
    100% 0,
    100% 85%,
    85% 92%,
    60% 87%,
    50% 94%,
    40% 97%,
    15% 92%,
    0 85%
  );

  transform: scale(1.03);
  z-index: 2;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}


/* Smooth scaling on active slide */
.swiper-slide-active img {
  transform: scale(1.1);
  opacity: 1;
}
.swiper-slide-prev img,
  .swiper-slide-next img {
    transform: scale(0.9) translateX(-30px);
    opacity: 0.7;
  }

  .swiper-fade-block .swiper-slide {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
  }

  .swiper-fade-block .swiper-slide-active {
    opacity: 1;
  }
/* SVG curve below slider */
.slider-curve {
  display: block;
  width: 100%;
  height: 150px; /* Adjust height to better reveal wave */
  margin-top: -55px; /* Overlap slider slightly */
  fill: #0a3d62; /* Should match slider's bottom bg color */
  /*transform: rotate(180deg); /* Optional if you want it upside down */
}

/* slider caption and button */
/* Slide caption overlay container */
.slide-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}
.swiper-slide-active .slide-caption {
  opacity: 1;
}

/* Contact Button */
.slide-button {
  background-color: #ffffff;
  color: #0a3d62;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.slide-button:hover {
  background-color: #0a3d62;
  color: #ffffff;
}

/* Ensure slide captions stay on active slides */
.swiper-slide {
  position: relative;
}


/* Smaller slider height on mobile */
@media (max-width: 768px) {
  .swiper {
    height: 250px;
  }
}/*


/* ===== Header Styles ===== */
/* ===== Header Styles ===== */
.site-header {
  background: linear-gradient(to right, #04294f, #0a3d62); /* blue gradient */
  padding: 12px 30px;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 3px 8px rgba(0, 0, 50, 0.5);
  transition: all 0.3s ease;
}

/* Sticky effect on scroll */
.sticky-header.scrolled {
  background: linear-gradient(to right, #031d36, #062c56);
  padding: 8px 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

/* Flex container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo and Title */
.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo {
  height: 45px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 0 5px #fff3;
}

.site-title {
  color: #e6f2ff;
  font-size: 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.site-logo-title {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

/* Toggle (Mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #e6f2ff;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.menu-toggle:hover {
  transform: rotate(90deg);
}

/* Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 40, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Nav */
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.main-navigation .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nav Links */
.main-navigation .menu li a {
  padding: 12px 18px;
  color: #e6f2ff;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
  border-radius: 4px;
}

.main-navigation .menu li a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 20%;
  width: 60%;
  height: 2px;
  background: #00acee;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.main-navigation .menu li a:hover {
  color: #ffffff;
  background-color: rgba(0, 172, 238, 0.1);
}

.main-navigation .menu li a:hover::after {
  transform: scaleX(1);
}

/* ===== Mobile Styles ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1001;
  }

  .main-navigation {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background: #0a3d62;
    padding: 1.5rem;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto; /* allow scroll if menu exceeds height */
    align-items: flex-start; /* align to top */
  }

  .main-navigation.active {
    display: flex;
    right: 0;
  }

  .main-navigation .menu {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .main-navigation .menu li {
    width: 100%;
  }

  .main-navigation .menu li a {
    display: block;
    padding: 12px 16px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid #004080;
    border-radius: 4px;
    color: #e6f2ff;
    background: transparent;
    transition: background 0.3s ease;
  }

  .main-navigation .menu li a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0; /* Align to the start of text */
  width: 100%; /* Full width of link */
  height: 2px;
  background: #00acee;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

  .main-navigation .menu li a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .site-title {
  display:none;
  
}
}

/* ===== Desktop Only ===== */
@media (min-width: 769px) {
  .menu-toggle,
  .menu-overlay {
    display: none !important;
  }

  .main-navigation {
    display: flex !important;
    position: static;
    height: auto;
    padding: 0;
  }

  .main-navigation .menu {
    flex-direction: row;
    gap: 20px;
  }

  .main-navigation .menu li a {
    border: none;
  }
}

/* INTRO-Start */
.feature-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 20px;
  background: #0a3d62;
  position: relative;
  z-index: 20;
}

.feature-box {
  background: linear-gradient(135deg, #1c4c75, #10395a);
  color: #ffffff;
  width: 360px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #245b85, #16476b);
}

.feature-content {
  padding: 24px 20px 10px;
  text-align: center;
}

.feature-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #ffffff;
}

.feature-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
}

.feature-image {
  text-align: center;
  padding: 10px 20px 25px;
}

.feature-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-section {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 95%;
  }

  .feature-image img {
    max-width: 80%;
  }

  .feature-box h3 {
    font-size: 22px;
  }

  .feature-box p {
    font-size: 15px;
  }
}
/* INTRO-End */

/* video */
/* Images on video */
/* ==== Video Section Styles ====
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
 */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7; /* match video ratio */
  overflow: hidden;
}


.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  z-index: 50;
  padding: 0 20px;
  max-width: 90%;
  overflow: visible; /* allow button to be visible */
}

.video-wrapper {
  overflow: visible;
}


.overlay h1 {
  font-size: clamp(2.5rem, 5vw, 5rem); /* bigger responsive font */
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  animation: fadeInDown 1s ease-out;
}

/* Highlighted date/style */
.overlay p.highlight-date {
  display: inline-block;
  background: rgba(255, 223, 0, 0.8); /* yellow highlighter with transparency */
  color: #0a3d62; /* navy text on yellow */
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem); /* bigger responsive font */
  padding: 6px 12px;
  border-radius: 8px;
  text-shadow: none; /* remove text shadow for readability */
  margin: 10px 0;
}

/* Regular overlay paragraph */
.overlay p:not(.highlight-date) {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #e0f4ff;
  font-weight: 500;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

/* Optional fade-in animation */
@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* logo in the video  */
/* Top-left logo */
.video-top-logo {
  position: absolute;
  top: 20px; /* distance from top */
  left: 20px; /* distance from left */
  max-width: 100px; /* adjust size */
  height: auto;
  z-index: 2; /* above video but below overlay */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/*live stream */
/* Live Stream Button */
/* Base live button styles */
.live-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(255, 65, 108, 0.4);
  transition: all 0.3s ease;
  animation: pulseGlow 2s infinite ease-in-out;
  text-align: center;
}

/* Hover effect (desktop only) */
@media (hover: hover) {
  .live-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 65, 108, 0.7);
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
  }
}

/* Mobile optimization */
@media (max-width: 600px) {
  .live-btn {
    display: block;
    width: 80%;
    margin: 20px auto;
    font-size: 1rem; /* ensure readability */
    padding: 14px 0;
    border-radius: 40px;
  }
}

/* Pulse glow animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(255, 65, 108, 0.5); }
  50% { box-shadow: 0 0 25px rgba(255, 65, 108, 0.9); }
  100% { box-shadow: 0 0 10px rgba(255, 65, 108, 0.5); }
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .overlay {
    padding: 40px 15px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .overlay h1 {
    font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    color: #004080;
  }

  .overlay p.highlight-date {
    font-size: clamp(0.5rem, 2.1vw, 1.6rem);
    margin: 2px 0;
  }

  .overlay p:not(.highlight-date) {
    font-size: clamp(0.7rem, 1.9vw, 1.2rem);
    line-height: 1.1;
  }

  .video-top-logo {
    max-width: 70px;
    top: 10px;
    left: 10px;
  }

  .live-btn {
    display: block;
    width: 45%;
    margin: 1px auto 0;
    font-size: 0.5rem;
    padding: 5px 0;
    border-radius: 30px;
    box-shadow: 0 0 14px rgba(255, 65, 108, 0.6);
  }
}




/* About in HOME page */
/* ==== About Section ==== */
.about-section {
  padding: 80px 0;
  background: #f5f9ff;
  color: #0a3d62;
}

.about-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0a3d62;
}

.about-text p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.btn-blue {
  display: inline-block;
  background: #0a3d62;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-blue:hover {
  background: #062e4f;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section .container {
    flex-direction: column;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    flex: 1 1 100%;
  }
}

/* Footer */
.site-footer {
  position: relative;
  background-color: #0a3d62; /* Navy blue */
  color: #fff;
  padding-top: 25px; /* Space for curve */
  padding-bottom: 30px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.footer-curve {
  display: block;
  width: 100%;
  height: 150px;
  margin-bottom: -1px; /* overlaps the footer top */
  fill: #0a3d62; /* Navy blue */
}

.footer-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}

.footer-columns {
  display: flex;
  gap: 70px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1 1 300px;
  min-width: 280px;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #cce5ff; /* lighter blue */
}

.footer-col p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.footer-col.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col.links ul li {
  margin-bottom: 10px;
}

.footer-col.links ul li a {
  color: #a8c7ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col.links ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Newsletter form */
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1 1 auto;
  padding: 10px 15px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  background-color: #ffffff;
  color: #0a3d62;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #083055;
  color: #cce5ff;
}

/* Footer bottom copyright */
.footer-bottom {
  text-align: center;
  font-size: 1.0rem;
  color: white;
  border-top: 8px solid #16476b;
  padding-top: 15px;
  font-weight: 600;
}

/* Responsive - Mobile Optimization */
@media (max-width: 900px) {
  .footer-columns {
    gap: 10px; /* Reduce vertical gap */
  }

  .footer-col {
    margin-bottom: 0;
    padding: 5px 0;
  }

  .footer-col h3 {
    margin: 0 0 8px 0; /* Tighten spacing below headings */
    font-size: 1.25rem;
  }

  .footer-col p,
  .footer-col ul,
  .newsletter-form {
    margin: 0;
    padding: 0;
  }

  .newsletter-form {
    gap: 6px;
    margin-top: 5px;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    padding: 10px;
    font-size: 1rem;
  }
}

/* EVENT SECTION */
.events-section {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 15px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #0a3d62; /* Navy Blue */
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #00acee; /* Bright Blue accent */
  margin: 12px auto 0;
  border-radius: 2px;
}

.events-grid {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.event-card {
  background: #e6f2ff; /* very light blue */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.15); /* navy blue shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(10, 61, 98, 0.3);
}

.event-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #00acee; /* subtle bright blue accent */
}

.event-info {
  padding: 15px;
  text-align: center;
}

.event-date {
  display: inline-block;
  background: #0a3d62; /* navy blue */
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.event-title {
  font-size: 20px;
  color: #0a3d62; /* navy blue */
  margin: 10px 0 0;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.event-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.event-title a:hover {
  color: #00acee; /* bright blue hover */
}

/* Pagination Styling */
.pagination {
  text-align: center;
  margin-top: 30px;
}

.pagination a, .pagination span {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 5px;
  background-color: #0a3d62; /* dark blue */
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.pagination a:hover {
  background-color: #00acee; /* bright blue on hover */
}

.pagination .current {
  background-color: #00acee; /* Highlight current page */
  color: white;
}

/* about */
/* ==== About Section ==== */
.about-section {
  padding: 80px 20px;
  background: #f5f9ff; /* Light blue background, matching the body */
  color: #0a3d62; /* Navy blue text color */
  font-family: Arial, sans-serif;
}

/* Container for content in About Section */
.about-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* About content: Text and image section */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

/* BRANCHES SECTION */
/* BRANCHES SECTION */
.branches-section {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 15px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Box shape same as events */
.branch-card {
  background: #e6f2ff; /* very light blue */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(10, 61, 98, 0.3);
}

.branch-info {
  padding: 20px;
  text-align: center;
}

.branch-title {
  font-size: 20px;
  color: #0a3d62;
  margin: 10px 0;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.branch-card p {
  font-size: 16px;
  color: #333;
  margin: 5px 0;
}

.contact-info {
  color: #00acee;
  text-decoration: none;
  font-weight: 600;
}

.contact-info:hover {
  text-decoration: underline;
}


/* ABOUT page SECTION */
/* ABOUT SECTION */
.about-section {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  color: #0a3d62;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  align-items: stretch;
}

/* Box Card */
.about-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #e6f2ff;
  border-radius: 12px;
  padding: 25px;
  text-align: justify;
  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(10, 61, 98, 0.3);
}

/* Logo */
.about-logo {
  text-align: center;
  margin-bottom: 20px;
}

.about-logo img {
  max-width: 150px;
  max-height: 120px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-logo img:hover {
  transform: scale(1.05);
}

/* Title and Text */
.about-card-title {
  text-align: center;
  font-size: 22px;
  color: #0a3d62;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 16px;
  color: #333;
  margin: 8px 0;
  line-height: 1.6;
  flex-grow: 1;
}

/* Quote */
.about-card blockquote {
  background: #f0f8ff;
  border-left: 4px solid #00acee;
  padding: 10px 15px;
  margin: 15px 0;
  font-style: italic;
  color: #0a3d62;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-card {
    padding: 20px;
    height: auto;
  }

  .about-card-title {
    font-size: 20px;
  }

  .about-card p {
    font-size: 14px;
  }
}


/* CONTACT SECTION */
.contact-section {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  color: #0a3d62; /* Navy Blue */
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Contact Card */
.contact-card {
  background: #e6f2ff; /* Light Blue */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(10, 61, 98, 0.3);
}

.contact-card-title {
  font-size: 22px;
  color: #0a3d62;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.contact-card p {
  font-size: 16px;
  color: #333;
  margin: 5px 0;
}

.contact-card a {
  color: #00acee; /* Bright Blue */
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    padding: 20px;
  }

  .contact-card-title {
    font-size: 20px;
  }

  .contact-card p {
    font-size: 14px;
  }
}

/* PROGRAM SECTION */
.program-section {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  color: #0a3d62; /* Navy Blue */
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Program Card */
.program-card {
  background: #e6f2ff; /* Light Blue */
  border-radius: 12px;
  padding: 25px;
  text-align: justify;
  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(10, 61, 98, 0.3);
}

.program-card-title {
  font-size: 22px;
  color: #0a3d62;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.program-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.program-card strong {
  color: #00acee; /* Bright Blue accent */
}

/* Responsive */
@media (max-width: 768px) {
  .program-card {
    padding: 20px;
  }

  .program-card-title {
    font-size: 20px;
  }

  .program-card p {
    font-size: 14px;
  }
}

/* TEAM / TRAINERS SECTION */
.team-section {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  color: #0a3d62; /* Navy Blue */
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

/* Grid layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Team Card */
.team-card {
  background: #e6f2ff; /* Light Blue */
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(10, 61, 98, 0.3);
}

.team-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #00acee; /* bright blue accent */
}

.team-name {
  font-size: 20px;
  color: #0a3d62;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-role {
  font-size: 16px;
  color: #145DA0; /* dark bright blue */
  margin-bottom: 15px;
}

.team-bio {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .team-card {
    padding: 15px;
  }

  .team-name {
    font-size: 18px;
    text-align: center;

  }

  .team-role {
    font-size: 14px;
    text-align: center;

  }

  .team-bio {
    font-size: 14px;
    text-align: center;

  }
}

/*conference*/
/* ===== Registration Page ===== */
.registration-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.2em;
  color: #004080;
  font-weight: 700;
}

.section-subtitle {
  color: #0066cc;
  font-size: 1.1em;
}

.registration-info {
  background: #f7fbff;
  border-left: 4px solid #007bff;
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 30px;
}

/* Table */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

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

.fee-table th {
  background: #004080;
  color: white;
}

.fee-table tr:nth-child(even) {
  background: #f2f8ff;
}


/*payment*/

.payment-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background: #f8faff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.2em;
  color: #0a3d62;
  margin-bottom: 8px;
}

.section-subtitle {
  color: #555;
  font-size: 1.1em;
}

.payment-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.payment-card-title {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #0a3d62;
}

.payment-details {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

.payment-details th,
.payment-details td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.payment-details th {
  width: 35%;
  text-align: left;
  color: #0a3d62;
}

.payment-details td {
  color: #333;
}

.note {
  margin-top: 20px;
  background: #eef7ff;
  padding: 15px;
  border-left: 4px solid #00acee;
  border-radius: 6px;
}

.email-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.email-link:hover {
  text-decoration: underline;
}


.footer-note {
  text-align: center;
  margin-top: 30px;
  font-size: 1em;
  color: #555;
}

/* submission */

.submission-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background: #f9fbff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.2em;
  color: #0a3d62;
  margin-bottom: 8px;
}

.section-subtitle {
  color: #555;
  font-size: 1.1em;
}

.submission-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.submission-card-title {
  font-size: 1.5em;
  color: #0a3d62;
  margin-bottom: 20px;
}

.submission-card p {
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.guideline-box {
  background: #eef7ff;
  border-left: 4px solid #00acee;
  padding: 20px;
  border-radius: 8px;
  margin: 25px 0;
}

.guideline-box h3 {
  color: #0a3d62;
  margin-bottom: 10px;
}

.guideline-box ul {
  list-style: disc;
  margin: 10px 0 15px 25px;
  color: #333;
}

.pdf-link {
  display: inline-block;
  background: #0a3d62;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.pdf-link:hover {
  background: #007bff;
}

.submission-link-box {
  text-align: center;
  background: #f5faff;
  border-radius: 8px;
  padding: 25px;
  margin-top: 30px;
  border: 1px solid #e0e6ef;
}

.submission-link-box h3 {
  color: #0a3d62;
  margin-bottom: 10px;
}

.submission-btn {
  display: inline-block;
  background: #00acee;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.submission-btn:hover {
  background: #007bff;
}

.footer-note {
  text-align: center;
  margin-top: 35px;
  font-size: 1em;
  color: #555;
}

.email-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.email-link:hover {
  text-decoration: underline;
}

/* main page - Time */
.countdown-section {
  padding: 80px 15px;
  background: #0a3d62; /* Navy Blue */
  color: #fff;
  text-align: center;
}

.countdown-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.time-box {
  background: #00acee;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  min-width: 100px;
}

.time-box span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 5px;
}

.time-box p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .countdown-timer {
    gap: 15px;
  }
  
  .time-box span {
    font-size: 2rem;
  }
  
  .time-box p {
    font-size: 0.9rem;
  }
}

/*conf home browche and flyer */
.flyer-brochure-section {
  padding: 60px 0;
  background: #ffffff;
  text-align: center;
}

.flyer-brochure-section .section-title {
  font-size: 36px;
  color: #0a3d62;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

.image-grid {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1400px; /* Increase max-width */
  margin: 0 auto;     /* Center the grid */
}

.image-box {
  flex: 1; /* Each image takes equal width */
  position: relative;
}

.image-box img {
  width: 100%;       /* Full width of the box */
  height: auto;      /* Keep aspect ratio */
  display: block;
  border-radius: 10px;
  object-fit: contain;  /* Shows full image, no cropping */
  max-height: none;     /* Remove height restriction if needed */
}

.image-box p {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: rgb(44, 5, 238);
  font-size: 20px;
  font-weight: 600;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .image-grid {
    flex-direction: column;
  }

  .image-box p {
    font-size: 18px;
  }
}

/* conf important dates */
/* Important Dates Timeline CSS */
/* Horizontal Timeline CSS */
.important-dates-horizontal {
  padding: 60px 20px;
  background: #f9f9f9;
}

.important-dates-horizontal .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #333;
}

.timeline-horizontal {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-horizontal::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 4px;
  background: #007bff;
  z-index: 1;
}

.timeline-item-horizontal {
  position: relative;
  text-align: center;
  width: 18%; /* Adjust width to fit more/less items */
  z-index: 2;
}

.timeline-item-horizontal .timeline-circle {
  width: 20px;
  height: 20px;
  background: #007bff;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  top: -12px;
}

.timeline-item-horizontal .timeline-date {
  font-weight: bold;
  margin-top: 10px;
  color: #333;
}

.timeline-item-horizontal .timeline-event {
  margin-top: 5px;
  color: #555;
}

/* Responsive: stack items on small screens */
@media (max-width: 768px) {
  .timeline-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-horizontal::before {
    left: 10px;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 100%;
  }

  .timeline-item-horizontal {
    width: 100%;
    margin-bottom: 40px;
    padding-left: 40px;
    text-align: left;
  }

  .timeline-item-horizontal .timeline-circle {
    top: 0;
  }
}

/* Keynote Speakers Section */
.keynote-speakers {
  padding: 60px 20px;
  background: #f0f8ff;
}

.keynote-speakers .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #333;
}

.speakers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.speaker-box {
  text-align: center;
  max-width: 300px;
}

.speaker-box img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%; /* Makes image round */
  border: 4px solid #007bff; /* optional border */
  margin-bottom: 20px;
}

.speaker-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.speaker-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .speakers-grid {
    flex-direction: column;
    align-items: center;
  }

  .speaker-box img {
    width: 180px;
    height: 180px;
  }
}

/* Dialogue Session Section */
.dialogue-session {
  padding: 60px 20px;
  background: #ffffff;
}

.dialogue-session .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #333;
}

.dialogue-session .speakers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.dialogue-session .speaker-box {
  text-align: center;
  max-width: 250px;
}

.dialogue-session .speaker-box img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%; /* round images */
  border: 3px solid #28a745; /* optional border color */
  margin-bottom: 15px;
}

.dialogue-session .speaker-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #333;
}

.dialogue-session .speaker-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .dialogue-session .speakers-grid {
    flex-direction: column;
    align-items: center;
  }

  .dialogue-session .speaker-box img {
    width: 130px;
    height: 130px;
  }
}

/* ================= Sponsorship Section ================= */
.sponsors-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f0f8ff 0%, #eaf4ff 100%);
  text-align: center;
}

.sponsors-section .section-title {
  font-size: 2.3rem;
  color: #0a3d62;
  font-weight: 800;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.sponsors-section .section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  display: block;
  margin: 15px auto 0;
  border-radius: 3px;
}

/* Sponsors Row — like speakers-grid */
.sponsors-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* ✅ centers horizontally */
  align-items: center;       /* ✅ centers vertically */
  gap: 35px;
  margin-bottom: 50px;
}

/* Sponsor Box */
.sponsor {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  width: 160px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.sponsor img {
  width: 100%;
  max-width: 130px;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* Hover Effects */
.sponsor:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sponsor:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Highlighted Sponsor (Gold Glow) */
.sponsor.highlight {
  background: linear-gradient(135deg, #fff9e6, #ffe6b3);
  border: 3px solid #ffd700;
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.5);
  transform: scale(1.07);
}

.sponsor.highlight img {
  max-width: 140px;
  filter: brightness(1.1);
}

/* Divider Between Rows */
.sponsor-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.sponsor-divider span {
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border-radius: 2px;
  animation: shimmer 2.5s infinite ease-in-out;
}

@keyframes shimmer {
  0% { opacity: 0.4; transform: scaleX(0.9); }
  50% { opacity: 1; transform: scaleX(1.05); }
  100% { opacity: 0.4; transform: scaleX(0.9); }
}

/* Responsive */
@media (max-width: 768px) {
  .sponsor {
    width: 130px;
    height: 100px;
    padding: 15px;
  }

  .sponsor img {
    max-width: 100px;
  }

  .sponsor-divider span {
    width: 80%;
  }
}

/* ==========================
   TRInCo 2025 - Live Stream Page
   ========================== */

.live-section {
  padding: 60px 20px;
  background: #f8faff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #0a3d62;
}

/* --- Section Header --- */
.live-section .section-header {
  margin-bottom: 40px;
}
.live-section .section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #0a3d62;
  font-weight: 700;
}
.live-section .section-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: #00acee;
  margin-top: 5px;
}

/* --- Video Wrapper --- */
.live-section .video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.live-section .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* --- Overlay & Button (Scoped to Live Page Only) --- */
.live-section .overlay {
  position: absolute;
  bottom: 20px; /* keeps button near bottom */
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 100;
}

.live-section .live-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(255, 65, 108, 0.4);
  transition: all 0.3s ease;
  animation: pulseGlow 2s infinite ease-in-out;
}

.live-section .live-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255, 65, 108, 0.7);
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
}

/* --- Glow Animation --- */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(255, 65, 108, 0.5); }
  50% { box-shadow: 0 0 25px rgba(255, 65, 108, 0.9); }
  100% { box-shadow: 0 0 10px rgba(255, 65, 108, 0.5); }
}

/* --- Info Section --- */
.live-section .live-info {
  max-width: 800px;
  margin: 0 auto 40px auto;
  background: #e6f2ff;
  padding: 30px 20px;
  border-left: 5px solid #00acee;
  border-radius: 10px;
  text-align: justify;
  line-height: 1.7;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.live-section .live-info h2 {
  text-align: center;
  color: #0a3d62;
  margin-bottom: 15px;
}

/* --- Footer Note --- */
.live-section .footer-note {
  font-size: 1rem;
  color: #0a3d62;
  margin-top: 20px;
  text-align: center;
  opacity: 0.9;
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
  .live-section .video-wrapper {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }

  .live-section .overlay {
    bottom: 15px;
  }

  .live-section .live-btn {
    font-size: 1rem;
    padding: 10px 24px;
  }

  .live-section .live-info {
    padding: 20px 15px;
  }
}

/* Optional Floating Button on Mobile */
@media (max-width: 600px) {
  .live-section .live-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    border-radius: 40px;
    padding: 14px 24px;
  }
}

/* press meet ----------------------*/
/* press meet ----------------------*/
.press-meet-section {
  padding: 80px 20px;
  background: #f7f9fc;
  color: #0a3d62;
}

.press-meet-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.press-meet-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.press-meet-image {
  flex: 1 1 45%;
  text-align: center;
}

.press-meet-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.press-meet-image img:hover {
  transform: scale(1.03);
}

.press-meet-text {
  flex: 1 1 50%;
}

/* ===== Text size adjusted ===== */
.press-meet-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 20px;
  color: #0a3d62;
  text-align: center;
  line-height: 1.3;
}

.press-meet-text p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
  color: #333;
}

/* ===== Mobile adjustments ===== */
@media (max-width: 768px) {
  .press-meet-section {
    padding: 50px 15px;
  }

  .press-meet-section .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .press-meet-content {
    flex-direction: column;
    text-align: center;
  }

  .press-meet-image img {
    max-width: 90%;
  }

  .press-meet-text h3 {
    font-size: 1.6rem;
  }

  .press-meet-text p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

