:root {
  --dark: #111;
  --gray: #666;
  --bubble: #19c200;
  --line: #e5e5e5;
  --transition: 0.3s ease;
  --orange: #ff6a00;
  --gold: #064e3b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ================= HEADER ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  /* padding: 18px 0; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.logo {
  width: 200px;
}

.contact-number {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}

/* ================= HERO BANNER ================= */

.hero-banner {
  min-height: 90vh;
  background-image: url("./assets/enlight image.jpg");
  background-size: cover;
  background-position: center right;
  position: relative;
}
@media (max-width: 768px) {
}
.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-inner {
  margin-top: 10%;
  display: flex;
  align-items: center;
}

.hero-left {
  max-width: 540px;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #111;
}

.hero-left p {
  font-size: 17px;
  color: #555;
  margin-bottom: 22px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.hero-stats {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 360px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
}

.hero-stat img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.hero-stats hr {
  border: none;
  height: 1px;
  background: #ddd;
  width: 100%;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .hero-banner {
    background-image: url("./assets/mobile-ban.jpg");
    background-position: center;
    background-size: cover;
    min-height: 100vh;
  }

  .hero-left {
    text-align: center;
    margin: auto;
  }

  .hero-left h1 {
    font-size: 30px;
  }
  .btn {
    font-size: 12px;
  }

  .hero-left p {
    font-size: 12px;
  }

  .hero-overlay {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero-stats {
    margin: 28px auto 0;
    align-items: center;
  }

  .hero-stat {
    justify-content: center;
    text-align: center;
  }
}

/* Bubble Messages */
.bubble {
  position: absolute;
  background: var(--bubble);
  color: #fff;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.bubble img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.bubble-1 {
  top: 26%;
  left: 8%;
}

.bubble-2 {
  top: 18%;
  right: 10%;
}

.bubble-3 {
  bottom: 14%;
  right: 6%;
}

/* Buttons */
.btn-group {
  margin: 25px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
}

.btn-outline {
  /* background: transparent; */
  border: 2px solid black;
  /* border: none; */
  /* color: #111; */
  /* transition: var(--transition) */
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  border: var(--gold);
}

/* Divider Line */
.stats-line {
  width: 75%;
  height: 1px;
  background: var(--line);
  margin: 38px auto 25px;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 55px;
  font-size: 17px;
  color: var(--dark);
  font-weight: 500;
}

.stats strong {
  font-weight: 700;
}

/* Mobile View */
@media (max-width: 768px) {
  .hero {
    padding: 75px 0 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }

  .bubble {
    font-size: 12px;
    padding: 6px 12px;
  }

  .bubble img {
    width: 30px;
    height: 30px;
  }

  .bubble-1 {
    top: 12%;
    left: 6%;
  }

  .bubble-2 {
    top: 12%;
    right: 6%;
  }

  .bubble-3 {
    bottom: 10%;
    right: 10%;
  }

  .stats {
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
  }
}

.features {
  padding: 70px 0;
}

.feature-card {
  border-radius: 32px;
  padding: 40px 32px 45px;
  position: relative;
  overflow: hidden;
  text-align: left;
  min-height: 430px;
  color: white;
}

.card-green {
  background: #1e88e5;
}

.card-coral {
  background: #6a1b9a;
}

.card-purple {
  background: #fb8c00;
}

.person {
  width: 210px;
  display: block;
  margin: 0 auto 22px auto;
  position: relative;
  z-index: 3;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--line);
  margin-bottom: 24px;
}

.feature-card .btn-primary {
  padding: 12px 28px;
  border-radius: 50px;
}

.swiper-pagination-bullet {
  background: var(--dark) !important;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .features {
    padding: 40px 0;
  }

  .feature-card {
    padding: 24px 20px 32px;
    min-height: auto;
    text-align: center;
  }

  .person {
    width: 150px;
    margin-bottom: 16px;
  }

  .feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .feature-card .btn-primary {
    padding: 10px 22px;
    font-size: 14px;
  }

  /* If using swiper, ensure one card per view */
  .swiper-slide {
    width: 100% !important;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .person {
    width: 130px;
  }

  .feature-card {
    padding: 20px 16px 28px;
  }

  .feature-card h3 {
    font-size: 17px;
  }

  .feature-card p {
    font-size: 13px;
  }
}

.featureSwiper .swiper-wrapper {
  align-items: stretch;
}

.featureSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card .btn-primary {
  margin-top: auto;
}

/* Companies Section */
.companies {
  padding: 50px 0 30px;
  text-align: center;
}

.company-title {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 18px;
}

.company-logos img {
  height: 30px;
  object-fit: contain;
  margin: 0 18px;
}

/* Ireland Box Section */
.ireland-box {
  padding: 60px 0;
}

.ireland-wrapper {
  background: linear-gradient(90deg, #00923f 50%, #ff8e00 50%);
  border-radius: 28px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ireland-left {
  width: 50%;
  color: #fff;
}

.ireland-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ireland-left h4 {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 600;
}

.ireland-left ul {
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 15px;
}

/* Button uses primary */
.ireland-left .btn-primary {
  background: var(--gold);
  border-radius: 50px;
  padding: 12px 26px;
  color: #fff;
}

.ireland-right {
  width: 50%;
  text-align: right;
}

.ireland-img {
  width: 330px;
  height: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .ireland-wrapper {
    flex-direction: column;
    text-align: center;
    background: #00923f;
  }

  .ireland-left,
  .ireland-right {
    width: 100%;
  }

  .ireland-right {
    margin-top: 25px;
  }
}

.university-partners {
  padding: 70px 0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--dark);
}

/* Scroll Container */
.scroll-row {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

/* Track Layout */
.scroll-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation-duration: 23s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Logo Style */
.scroll-track img {
  height: 70px;
  padding: 14px 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  object-fit: contain;
  transition: var(--transition);
}

.scroll-track img:hover {
  transform: scale(1.08);
}

/* Infinite Scroll Directions */
.scroll-left .scroll-track {
  animation-name: scroll-left;
}

.scroll-right .scroll-track {
  animation-name: scroll-right;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Fade Overlay Edges */
.scroll-row::before,
.scroll-row::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 160px;
  pointer-events: none;
  z-index: 3;
}

.scroll-row::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.scroll-row::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* MOBILE */
@media (max-width: 600px) {
  .scroll-track img {
    height: 50px;
    padding: 8px 16px;
  }

  .scroll-row::before,
  .scroll-row::after {
    width: 90px;
  }
}

.reasons-ireland {
  background: #d6ecea;
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 45px;
}

/* Layout */
.reasons-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT IMAGE BLOCK */
.reasons-left {
  flex: 1;
  min-width: 350px;
}

.reasons-img {
  width: 100%;
  border-radius: 28px;
  display: block;
  object-fit: cover;
}

/* RIGHT DETAILS */
.reasons-right {
  flex: 1;
  min-width: 350px;
  background: #f8f8f8;
  border-radius: 28px;
  padding: 40px 35px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 35px;
}

.reason-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.reason-box .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.reason-box .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reason-box h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.reason-box p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--gray);
}

/* BUTTON CENTER */
.center-btn {
  text-align: center;
  margin-top: 45px;
}

.center-btn .btn-primary {
  padding: 14px 38px;
  border-radius: 40px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .reasons-right {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
}

.programs-section {
  padding: 90px 0;
  text-align: center;
}

/* Heading */
.section-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

/* Description */
.program-desc {
  font-size: 17px;
  color: var(--gray);
  max-width: 750px;
  margin: 0 auto 45px;
  line-height: 1.6;
}

/* Tags Container */
.program-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Tag Pills */
.program-tags span {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
}

/* Hover effect */
.program-tags span:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .section-heading {
    font-size: 28px;
  }

  .program-desc {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .program-tags span {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* SECTION WRAPPER */
.stats-wrapper {
  display: flex;
  gap: 40px;
  padding: 70px 5%;
  background: #d6ecea;
}

/* SECTIONS */
.scholarship-section,
.placement-section {
  flex: 1;
  text-align: center;
}

/* HEADINGS */
.scholarship-section h2,
.placement-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 35px;
  line-height: 1.3;
}

/* TABLE */
.table-box {
  width: 100%;
}

.table-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-weight: 600;
  border-bottom: 2px solid #dcdcdc;
  padding-bottom: 12px;
}

/* SCROLL */
.scroll-box {
  height: 290px;
  overflow: hidden;
}

.scroll-content {
  display: flex;
  flex-direction: column;
  animation: scrollUp 10s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* ROW */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f2f2f2;
}

/* LOGOS */
.school {
  width: 80px;
  height: 32px;
  object-fit: contain;
  margin: auto;
}

/* STUDENT */
.student {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #eaeaea;
}

.student span {
  font-size: 16px;
  font-weight: 500;
}

/* AMOUNT */
.amount {
  font-size: 18px;
  font-weight: 700;
  color: #1ca05a;
}

/* BUTTON */
.callback-btn {
  margin-top: 30px;
  padding: 14px 38px;
  background: var(--gold);
  color: #fff;
  border-radius: 40px;
  border: none;
  font-size: 17px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 900px) {
  .stats-wrapper {
    flex-direction: column;
  }

  .scholarship-section h2,
  .placement-section h2 {
    font-size: 24px;
  }
}
.experts-section {
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  width: 90%;
  margin: auto;
}

.expert-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.expert-img {
  width: 100%;
  display: block;
  transition: 0.45s ease;
  filter: grayscale(100%);
}

.content-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 35px;
  z-index: 3;
  pointer-events: none;
}

.expert-name {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  pointer-events: auto;
}

.verified {
  color: #19c200;
}

.expert-card:hover .hover-info {
  opacity: 1;
}

/* Mobile */
@media (max-width: 600px) {
  .expert-name {
    font-size: 18px;
  }
}

.why-section {
  padding: 70px 0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--dark);
}

.why-grid {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  padding: 40px 28px;
  border: 1px solid #eee;
  border-radius: 22px;
  text-align: left;
  transition: 0.3s;
  background: #fff;
}

.why-card img {
  width: 78px;
  margin-bottom: 22px;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.55;
}

/* Hover */
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    text-align: center;
  }

  .why-card img {
    margin-left: auto;
    margin-right: auto;
  }
}

.site-footer {
  text-align: center;
  padding: 40px 0 60px;
  background: #fff;
  position: relative;
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 150px;
}

.footer-phone {
  color: #000;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}

.footer-copy {
  color: #444;
  font-size: 15px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;

  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s ease;
}

.call-btn {
  bottom: 90px;

  background-color: #ff9500;
}

.whatsapp-btn img {
  width: 60%;
  height: 60%;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

.call-btn {
  position: fixed;
  bottom: 90px;

  right: 20px;
  width: 55px;

  height: 55px;

  background-color: var(--gold);

  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: #f43f5e;

  z-index: 999;
  transition: transform 0.3s ease;
}

.call-btn img {
  width: 50%;

  height: 50%;
  filter: brightness(0) invert(1);
}

.call-btn:hover {
  transform: scale(1.08);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 0px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 15px;
}

/* Popup Box */
.popup-box {
  background: #fff;
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: popupFade 0.3s ease;
}

/* Heading */
.popup-box h3 {
  margin: 0 0 18px 0;
  font-size: 20px;
  text-align: center;
}

/* Input Fields */
.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

.popup-box select {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

/* Button */
.submit-btn {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

/* Animation */
@keyframes popupFade {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile Specific Adjustments */
@media (max-width: 480px) {
  .popup-box {
    padding: 18px 16px;
    border-radius: 10px;
  }

  .popup-box h3 {
    font-size: 18px;
  }

  .submit-btn {
    font-size: 15px;
    padding: 12px;
  }
}
.center-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.call-number {
  position: absolute;
  right: 70px; /* distance from button */
  bottom: 50%;
  transform: translateY(50%);
  background: #fff;
  border: 2px solid #00923f; /* red border like image */
  padding: 6px 14px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  border-radius: 4px;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

/* Speech bubble arrow */
.call-number::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #00923f;
}

/* Show on hover */
.call-btn:hover .call-number {
  opacity: 1;
  visibility: visible;
}
.whatsapp-number {
  position: absolute;
  right: 70px; /* distance from button */
  bottom: 50%;
  transform: translateY(50%);
  background: #fff;
  border: 2px solid #00923f; /* red border like image */
  padding: 6px 14px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  border-radius: 4px;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

/* Speech bubble arrow */
.whatsapp-number::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #00923f;
}

/* Show on hover */
.whatsapp-btn:hover .whatsapp-number {
  opacity: 1;
  visibility: visible;
}
.footer-copy a {
  text-decoration: none;
  color: var(--dark);
  transition: var(--transition);
}
