.codizious-students-life {
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.codizious-students-life:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  text-decoration: none;
}

.codizious-icon-size {
  margin-bottom: 15px;
}

.codizious-icon {
  color: #08915e;
}


.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.highlight {
  background-color: #e6f4f1;
  border-radius: 1rem;
}

.icon-box {
  font-size: 2rem;
  color: #08915E;
}

.form-control:focus {
  border-color: #08915E !important;
  box-shadow: 0 0 0 0.25rem rgba(8, 145, 94, 0.25);
}

.form-select:focus {
  border-color: #08915E !important;
  box-shadow: 0 0 0 0.25rem rgba(8, 145, 94, 0.25);
}

.form {
  background-color: #f8f9fa;
}

.form2 {
  margin-top: -100px;
  z-index: 10;
  position: relative;
}

body {
  background-color: #f9f9f9;
}

.content-area {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.left-content {
  flex: 1;
  min-width: 280px;
}

.right-content {
  min-width: 200px;
  padding-left: 20px;
}

.btn-group .btn {
  margin-right: 10px;
  margin-bottom: 10px;
}

.download-btn {
  position: sticky;
  top: 20px;
}

.card {
  border-radius: 15px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
}


/* =============================== */
/* Gallery base styles */
/* =============================== */


.gallery-fixed {
  width: 100%;
  height: 300px;
  /* Same height for all */
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.gallery-img:hover .gallery-fixed {
  transform: scale(1.05);
}

.gallery-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgb(13 112 39);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.gallery-img {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
}

.students-life-gallery {
  padding: 40px 0;
  margin: 50px;
}

.students-life-gallery .section-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.students-life-gallery .section-header p {
  font-size: 1rem;
  color: #555;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Dark overlay background on active */
.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  /* Light black */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 10px;
}

.gallery-item.active::before {
  opacity: 1;
}

/* Overlay text centered */
.gallery-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  z-index: 2;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.gallery-item.active .gallery-overlay {
  transform: translate(-50%, -50%) scale(1);
}

/* Responsive grid spacing */
.students-life-gallery .row>div {
  padding: 10px;
}

/* Responsive text sizes */
@media (max-width: 767px) {
  .students-life-gallery .section-header h3 {
    font-size: 1.5rem;
  }

  .gallery-overlay {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .students-life-gallery {
    padding: 20px 0;
  }

  .gallery-overlay {
    font-size: 0.85rem;
  }
}

:root {
  --primary: #08915E;
  --dark: #0c0c0d;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fefefe;
  color: #333;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 1rem auto;
}

.codizious-feature-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
}

.codizious-feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #08915E;
  box-shadow: 0 12px 30px rgba(8, 145, 94, 0.15);
}

.codizious-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #08915E, #06c29e);
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  transition: transform 0.4s ease;
}

.codizious-feature-card:hover .codizious-feature-icon {
  transform: rotate(10deg) scale(1.1);
}

.codizious-section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
}


.codizious-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin-top: 10px;
}

.codizious-project-img {
  border-radius: 1rem;
  max-height: 400px;
  object-fit: cover;
}

.review-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-control,
.form-select {
  border-radius: 0.5rem;
  border: #08915E;
}

.bg {
  background-color: rgba(96, 198, 161, 0.79);
}

.form-control:focus {
  border-color: #08915E !important;
  box-shadow: 0 0 0 0.25rem rgba(8, 145, 94, 0.25);
}

:root {
  --primary: rgba(8, 145, 95, 0.91);
  --primary-dark: #056845;
  --background: #f9f9f9;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: #333;
}

.codizious-inquiry-section {
  padding: 60px 20px;
}

.codizious-card-custom {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
}

.codizious-left-pane {
  background-color: var(--primary);
  color: #fff;
  padding: 40px 30px;
}

.codizious-left-pane h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

.codizious-contact-item {
  margin-bottom: 20px;
}

.codizious-contact-item i {
  font-size: 20px;
  margin-right: 10px;
}

.codizious-social-icons a {
  font-size: 18px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  margin-right: 10px;
  padding: 8px 10px;
  transition: 0.3s;
  display: inline-block;
}

.codizious-social-icons a:hover {
  background-color: #fff;
  color: var(--primary-dark);
}

.codizious-form-pane {
  padding: 40px 30px;
  background: #fff;
}

.form-label {
  font-weight: 600;
}

.form-control {
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}


@media (max-width: 767.98px) {

  .left-pane,
  .form-pane {
    padding: 30px 20px;
    text-align: center;
  }

  .left-pane {
    border-bottom: 1px solid #eee;
  }

  .form-pane {
    border-top: 1px solid #eee;
  }

  .contact-item {
    justify-content: center;
  }
}

:root {
  --color-primary: #08915E;
  --color-primary-dark: #066848;
  --color-light-bg: #f9f9f9;
  --color-white: #ffffff;
  --color-text: #222222;
  --color-muted: #555555;
  --color-shadow: rgba(0, 0, 0, 0.08);
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family);
  /* background-color: #4da18ba8; */
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;

}

.codizious-img-fluid {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
  transform-origin: center;
}

.codizious-img-fluid:hover {
  animation: zoomRotate 1s infinite alternate ease-in-out;
}

@keyframes zoomRotate {
  0% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.08) rotate(8deg);
  }

  100% {
    transform: scale(1.05) rotate(-8deg);
  }
}

.student-life-gallery .gallery-img {
  position: relative;
  width: 100%;
  height: 250px;
  /* Fixed height for uniform look */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.student-life-gallery .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures images fill space without distortion */
  display: block;
}

.student-life-gallery .gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .student-life-gallery .gallery-img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .student-life-gallery .gallery-img {
    height: 180px;
  }
}


/* ================================== */
/* Header */
/* ================================== */


header.site-header {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 1.5rem 0;
}

header.site-header h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

/* Company Description */
section.company-desc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--color-white);
  padding: 2rem 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--color-shadow);
  max-width: 900px;
  margin: 2rem auto 3rem;
}

.company-desc__logo {
  flex: 0 0 120px;
  margin-right: 2rem;
}

.company-desc__logo img {
  max-width: 100%;
  border-radius: 10px;
}

.company-desc__content {
  flex: 1 1 280px;
}

.company-desc__content h2 {
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.company-desc__content p {
  font-size: 1.125rem;
  color: var(--color-muted);
}


/* ===================================== */
/* Intro Section */
/* ===================================== */

section.intro {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 3px 10px var(--color-shadow);
  max-width: 700px;
  margin: 0 auto 3rem;
}

section.intro p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-muted);
}


/* ================================ */
/* Why Choose Us - placement */
/* ================================ */


section.why-choose {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 3rem 1rem;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto 3rem;
}

section.why-choose h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

section.why-choose ul {
  list-style: disc;
  max-width: 700px;
  margin: 0 auto 2rem;
  padding-left: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

section.why-choose p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #d1f2de;
}

/* Placement Stats */
section.codizious-stats {
  background-color: var(--color-white);
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 2rem 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 14px var(--color-shadow);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}


@media (max-width: 480px) {
  section.why-choose ul {
    padding-left: 1rem;
  }

  section.stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.codizious-rounded-circle {
  border-radius: 50%;
  max-width: 400px;
  width: 100%;
  aspect-ratio: 1;
  background-color: #fff;
}

.codizious-shadow-lg {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.44);
}

.swiper {
  padding-bottom: 2rem;
}

.swiper-slide img {
  width: 100%;
  height: 160px;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.swiper-slide img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
  border-radius: 100%;
}

/* ================================ */
/* header */
/* ================================ */


/* Base styles for mega menu */
.codizious-mega-menu-area {
  width: 580%;
  padding: 1rem;
  background: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: none;
  /* hide initially */
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  height: 320px;
  line-height: 2.0;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
  .navmenu li.dropdown:hover>.codizious-mega-menu-area {
    display: block;
  }

  .codizious-mega-menu-area .row {
    display: flex;
  }
}

/* Mobile view - stacked columns */
@media (max-width: 991px) {
  .navmenu ul {
    flex-direction: column;
  }

  .navmenu li.dropdown>.codizious-mega-menu-area {
    position: relative;
    display: none;
  }

  .navmenu li.dropdown.open>.codizious-mega-menu-area {
    display: block;
  }

  .codizious-mega-menu-area .row {
    display: flex;
    flex-direction: column;
  }

  .codizious-mega-menu-area .col-lg-4 {
    padding: 0.5rem 0;
  }

  .navmenu .dropdown-menu {
    box-shadow: none;
    padding: 0.5rem;
  }
}

/* Styling list inside mega menu */
.codizious-mega-menu-area ul {
  list-style: none;
  padding-left: 0;
}

.codizious-mega-menu-area li a {
  display: block;
  padding: 0.5rem 0;
  color: #333;
  text-decoration: none;
}

.codizious-mega-menu-area li a:hover {
  color: #08915E;
}

.codizious-logo-image {
  width: 130px;
  height: auto;
}

.codizious-mega-menu a {
  display: block;
  padding: 5px 0;
  color: #333;
  text-decoration: none;
}

.codizious-mega-menu a:hover {
  color: #47a14dff;
}

@media (max-width: 768px) {
  .codizious-mega-menu {
    min-width: 100% !important;
    margin: 0 !important;
    max-height: 70vh;
    overflow-y: auto;
  }

  .codizious-mega-menu .row {
    flex-direction: column;
  }

  .codizious-mega-menu .border-end {
    border: none !important;
  }
}


/* ===================== */
/* footer */
/* ===================== */


.footer {
  background-color: #2D3436;
}

footer .btn {
  background-color: transparent;
  color: #fff;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

/* Smooth transition for all elements */
.codizious-btn,
.codizious-btn:hover,
.text-white,
.text-white:hover,
.bi {
  transition: all 0.3s ease-in-out;

}

/* Hover effect for location link */
.codizious-btn:hover {
  color: #08915E !important;
  text-decoration: underline;
}

/* Hover effect for phone and email links */
a.text-white:hover {
  color: #08915E !important;
  text-decoration: none;
  transform: scale(1.2);
}

/* Icon hover effect */
.d-flex .bi:hover {
  color: #08915E !important;
  transform: scale(1.2);
}

footer .btn:hover {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .footer-services .links {
    flex-direction: column;
    align-items: center;
  }
}

.grid-2cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* 2 equal columns */
}

.gap-2 {
  gap: 0.5rem;
}

.footer-links a,
.footer-about a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-about a:hover {
  color: #ffffff;
}

img.logo-invert {
  filter: brightness(0) invert(1);
}

.codiizois-logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.transition-btn {
  transition: all 0.3s ease;
}

.transition-btn:hover {
  background-color: #002147;
  /* Codizious green */
  color: #fff;
  box-shadow: 0 4px 15px rgba(8, 145, 94, 0.5);
  transform: translateY(-2px) scale(1.05);
  transition: padding-left 0.5s;
}


/* ===================== */
/* student life  */
/* ===================== */


.lg {
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: center;
  justify-items: right;
  list-style: none;
}

.codizious-section-header h2 {
  color: #08915E;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.codizious-section-header p {
  color: #4a4a4a;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.nav-tabs .nav-link {
  color: #08915E;
  font-weight: 600;
}

.nav-tabs .nav-link.active {
  background-color: #08915E;
  color: #fff;
  border-radius: 0.375rem;
}

.codizious-support-card .icon {
  width: 50px;
  height: 50px;
  background-color: #e9f7ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.codzious-support-card .icon.text-primary {
  background-color: #d1e7fd;
  color: #0d6efd;
}

.codizious-support-card .icon.text-success {
  background-color: #d1e7dd;
  color: #198754;
}

.codizious-support-card .icon.text-warning {
  background-color: #fff3cd;
  color: #ffc107;
}

.codizious-support-card .icon.text-danger {
  background-color: #f8d7da;
  color: #dc3545;
}

.codizious-students-life-gallery img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.codizious-students-life-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.hover-scale {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-scale:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* ===================== */
/* About Us */
/* ===================== */


.timeline {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #08915E;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -312px;
}

.timeline-step {
  padding: 20px 30px;
  position: relative;
  background: white;
  border-radius: 10px;
  width: 45%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideUp 1s ease-in-out;
}

.timeline-step.left {
  left: 0;
}

.timeline-step.right {
  left: 55%;
}

.timeline-step::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #08915E;
  border: 4px solid white;
  top: 20px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-step.right::before {
  left: -10px;
}

.timeline-step h4 {
  color: #08915E;
  margin-top: 0;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-step {
    width: 100%;
    left: 0;
    padding-left: 60px;
    margin-bottom: 20px;
  }

  .timeline-step.right {
    left: 0;
  }

  .timeline-step::before {
    left: 20px;
  }
}


/* ===================== */
/* journey */
/* ===================== */


.codizious-timeline-section {
  background: #f9f9f9;
  position: relative;
  z-index: 1;
}

.codizious-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #08915e;
}

.codizious-subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
  padding-bottom: 50px;
}

.codizious-timeline {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
  max-width: 900px;
}

.codizious-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #08915e;
  transform: translateX(-50%);
  z-index: 0;
}

.codizious-timeline-step1 {
  position: relative;
  width: 50%;
  padding: 20px 30px;
  box-sizing: border-box;
}

.codizious-content {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.codizious-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: #eafff3;
}

.codizious-left1 {
  left: 0;
  text-align: right;
}

.codizious-right1 {
  left: 50%;
  text-align: left;
}

.codizious-left1::before,
.codizious-right1::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: #08915e;
  border-radius: 50%;
  z-index: 2;
}

.codizious-left1::before {
  right: -10px;
}

.codizious-right1::before {
  left: -10px;
}

@media (max-width: 767px) {
  .codizious-timeline::before {
    left: 8px;
  }

  .codizious-timeline-step1 {
    width: 100%;
    padding-left: 40px;
    margin-bottom: 30px;
  }

  .codizious-left1,
  .codizious-right1 {
    left: 0 !important;
    text-align: left !important;
  }

  .codizious-left1::before,
  .codizious-right1::before {
    left: 0 !important;
  }
}


/* ===================== */
/* Pop Up Demo Form   */
/* ===================== */


/* Modal Overlay */
.codizious-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.6s ease forwards;
}

/* Modal Container */
.codizious-modal-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 35px;
  max-width: 480px;
  width: 90%;
  margin: 80px auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-40px);
  opacity: 0;
  animation: slideDown 0.7s ease-out forwards;
}

.codizious-modal-title {
  color: #08915e;
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

.codizious-modal-content p {
  text-align: center;
  color: #555;
  margin-bottom: 25px;
  font-size: 15px;
}

/* Close Button */
.close {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #000;
  transform: rotate(90deg);
}

/* Form Styles */
form input,
form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fff;
}

form input:focus,
form select:focus {
  border-color: #08915e;
  box-shadow: 0 0 8px #08915e33;
  outline: none;
}

.submit-btn {
  background: linear-gradient(135deg, #08915e, #06734b);
  color: white;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(8, 145, 94, 0.4);
}

/* Animations */
@keyframes slideDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    background-color: rgba(0, 0, 0, 0);
  }

  to {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .modal-content {
    padding: 25px;
    margin: 60px auto;
  }

  .modal-title {
    font-size: 20px;
  }
}

/* Welcome Box */
#welcomeBox {
  display: none;
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #6c757de6;
  color: white;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  animation: floatIn 1s ease;
  max-width: 300px;
  font-family: 'Segoe UI', sans-serif;
}

.codizious-welcome-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.codizious-welcome-text .close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: white;
  color: #08915E;
  border-radius: 50%;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.codizious-demo-button {
  background: #fff;
  color: #08915E;
  border: none;
  padding: 10px 14px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.codizious-demo-button:hover {
  background: #f0f0f0;
}


/* ===================== */
/* floating icon button */
/* ===================== */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Floating Icon Button */
#codizious-icon {
  position: fixed;
  bottom: 100px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #08915e, #05c17a);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

#codizious-icon:hover {
  transform: scale(1.1) rotate(10deg);
}

#codizious-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(100);
}

/* Popup Plugin */
#codizious-popup {
  display: none;
  position: fixed;
  bottom: 170px;
  left: 20px;
  width: 320px;
  background: rgba(255, 255, 255, 0.486);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 25px;
  z-index: 999;
  animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#codizious-popup .popup-content {
  text-align: center;
}

#codizious-popup h3 {
  color: #08915e;
  font-weight: 600;
  margin-bottom: 10px;
}

#codizious-popup p {
  font-size: 15px;
  color: #333;
  margin-bottom: 15px;
}

.popup-content a.btn {
  display: inline-block;
  background: linear-gradient(135deg, #08915e, #05c17a);
  padding: 10px 22px;
  color: white;
  font-weight: 500;
  border: none;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(8, 145, 94, 0.4);
  transition: all 0.3s ease;
}

.popup-content a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 145, 94, 0.6);
}

/* Close Button */
#codizious-popup .close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 22px;
  color: #000000;
  cursor: pointer;
  transition: color 0.3s ease;
}

#codizious-popup .close-btn:hover {
  color: #333;
}

@media (max-width: 400px) {
  #codizious-popup {
    width: 90%;
    right: 5%;
    bottom: 80px;
  }
}


/* ===================== */
/* Codizious loader  */
/* ===================== */



:root {
  --bg1: #152135;
  /* deep space */
  --bg2: #002147;
  /* dark blue */
  --brand: #08915F;
  /* Codizious green */
  --brand-2: #002147;
  /* accent dark blue */
  --brand-3: #086c47;
  /* soft greenish tone */
  --text: #dbe4ea;
  --muted: #7b8a95;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  margin: 0
}

/* ===== Loader Overlay ===== */
#codiziousLoader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  /* 👇 Background simplified - no partition/particles */
  background: linear-gradient(135deg, #182541, #202733, #0f1a2a);
  overflow: hidden;
  color: var(--text);
  isolation: isolate;
}

/* ❌ Remove nebula noise */
#codiziousLoader::before {
  content: none;
}


@keyframes drift {
  to {
    transform: translate3d(-20px, 12px, 0) scale(1.04) rotate(.2deg)
  }
}

/* Floating bokeh dots */
.bokeh {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bokeh span {
  position: absolute;
  width: 22vmin;
  height: 22vmin;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0) 60%);
  filter: blur(6px);
  animation: float 16s ease-in-out infinite;
  mix-blend-mode: screen;
}

.bokeh span:nth-child(1) {
  left: 5%;
  top: 10%;
  animation-duration: 19s
}

.bokeh span:nth-child(2) {
  left: 70%;
  top: 20%;
  animation-duration: 22s
}

.bokeh span:nth-child(3) {
  left: 15%;
  bottom: 10%;
  animation-duration: 18s
}

.bokeh span:nth-child(4) {
  right: 10%;
  bottom: 8%;
  animation-duration: 21s
}

.bokeh span:nth-child(5) {
  left: 40%;
  top: 65%;
  animation-duration: 26s
}

@keyframes float {
  50% {
    transform: translateY(-20px) translateX(10px) scale(1.06)
  }

  100% {
    transform: translateY(0)
  }
}

/* ===== Loader Core ===== */
.loader-wrap {
  width: min(560px, 92vw);
  aspect-ratio: 1.6/1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Halo glow */
.halo {
  width: clamp(220px, 42vmin, 420px);
  height: clamp(220px, 42vmin, 420px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(8, 145, 94, .25), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(52, 211, 153, .18), transparent 70%),
    radial-gradient(circle at 50% 50%, rgba(134, 239, 172, .12), transparent 85%);
  filter: drop-shadow(0 30px 80px rgba(8, 145, 94, .28));
  display: grid;
  place-items: center;
  position: relative;
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  50% {
    transform: scale(1.02)
  }

  100% {
    transform: scale(1)
  }
}

/* Orbit ring */
.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0turn, rgba(8, 145, 94, .0) 0 70%, rgba(8, 145, 94, .7) 87%, rgba(8, 145, 94, .0) 100%);
  mask: radial-gradient(circle, transparent 58%, #000 59%);
  animation: spin 3.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* Orbiting beads */
.bead {
  position: absolute;
  inset: 0;
  animation: spin 5s linear infinite reverse
}

.bead::before {
  content: "";
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(8, 145, 94, .15), 0 0 24px 6px rgba(8, 145, 94, .45);
}

/* ===== Graduation Cap SVG ===== */
.cap-wrap {
  position: relative;
  width: clamp(160px, 28vmin, 300px);
  cursor: pointer;
}

.cap {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .45));
  animation: floatY 3.8s ease-in-out infinite;
  transform-origin: 50% 80%;
}

@keyframes floatY {
  50% {
    transform: translateY(-6px) rotate(-.6deg)
  }

  100% {
    transform: none
  }
}

/* tassel swing */
.tassel {
  transform-origin: 75% 8%;
  animation: swing 2.6s ease-in-out infinite
}

@keyframes swing {
  50% {
    transform: rotate(10deg)
  }

  100% {
    transform: rotate(0)
  }
}

/* Hover delight */
.cap-wrap:hover .cap {
  transform: translateY(-8px) rotate(-4deg) scale(1.02)
}

.cap-wrap:hover~.ring {
  animation-duration: 2.2s
}

.cap-wrap:hover~.bead {
  animation-duration: 2.2s
}

/* Brand text */
.title {
  font: 700 clamp(20px, 3.6vmin, 34px)/1.15 system-ui, Segoe UI, Roboto, Ubuntu, Arial;
  letter-spacing: .4px;
  text-align: center;
  color: var(--text);
  margin-left: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title img {
  max-width: 250px;
  height: auto;
  margin-left: -130px;
}

.title .accent {
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3s linear infinite;
  background-size: 200% 100%;
}

.tagline {
  color: #edfef7;
  font-size: 1.2rem;
  margin-top: 20px;
  margin-left: -130px;
  line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .title img {
    max-width: 180px;
  }

  .tagline {
    font-size: 1.3rem;
  }
}


@keyframes shimmer {
  to {
    background-position: 200% 0
  }
}

/* Progress line */
.progress {
  width: min(520px, 90vw);
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .06));
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .4), 0 6px 28px rgba(8, 145, 94, .18);
}

.bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(8, 145, 94, .15), rgba(8, 145, 94, .5)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .16) 0 10px, rgba(255, 255, 255, 0) 10px 20px);
  animation: load 3.4s ease-in-out infinite;
}

@keyframes load {
  0% {
    width: 6%
  }

  50% {
    width: 88%
  }

  100% {
    width: 6%
  }
}

/* Skip / Close */
.skip {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(16, 24, 32, .35);
  color: var(--text);
  font: 600 13px/1 system-ui;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease;
}

.skip:hover {
  transform: translateY(-1px)
}

/* Confetti pieces */
.confetti {
  position: absolute;
  width: 8px;
  height: 12px;
  border-radius: 2px;
  opacity: 0;
  will-change: transform, opacity
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {

  .halo,
  .ring,
  .bead,
  .cap,
  .tassel,
  .bokeh span,
  .bar {
    animation: none
  }
}

/* Dots Loading Animation */
.dots::after {
  content: '';
  display: inline-block;
  animation: dotsAnim 1.2s steps(4, end) infinite;
}

@keyframes dotsAnim {
  0% {
    content: '';
  }

  25% {
    content: '.';
  }

  50% {
    content: '..';
  }

  75% {
    content: '...';
  }

  100% {
    content: '';
  }
}


/* ======================================================= */
/* Codizious WhatsApp Chat Styles */
/* Codizious Base styles for WhatsApp chat */
/* ======================================================= */


/* Codizious WhatsApp Chat Container */
.codizious-whatsapp-container {
  position: fixed;
  bottom: 160px;
  right: 20px;
  z-index: 9999;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Chat Popup Window */
.codizious-chat-popup {
  width: 280px;              /* reduced from 340px */
  max-height: 480px;         /* reduced from 600px */
  background: #f0f0f0;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: fadeInUp 0.4s ease-out;
  transition: all 0.3s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.codizious-chat-header {
  background: linear-gradient(to right, #25D366, #128C7E);
  color: white;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.codizious-chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.codizious-chat-logo {
  width: 50px;
  height: 50px;
  border-radius: 60px;
  object-fit: cover;
}

.codizious-chat-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.codizious-chat-subtitle {
  font-size: 0.90rem;
  color: #e0e0e0;
  font-style: italic;
  margin-top: 2px;
}

.codizious-chat-subtitle::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 6px auto 0;
  background: linear-gradient(90deg, #ffffff, #b9f4df, #ffffff);
  border-radius: 2px;
  animation: glow-bar 2s infinite ease-in-out;
}

@keyframes glow-bar {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleX(1);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.4);
  }
}

/* Chat Body */
.codizious-chat-body {
  background: url('https://www.transparenttextures.com/patterns/white-wall.png') no-repeat center center;
  background-size: cover;
  background-repeat: repeat;
  /* flex-grow: 1; */
  /* padding: 14px; */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  /* max-height: 350px; */
  flex-grow: 1;
  padding: 12px;
  gap: 8px;
  max-height: 190px;    /* smaller */
  font-size: 13px;  /* smaller text */
}

/* Chat Bubbles */
.chat-bubble {
  background-color: #ffffff;
  display: inline-block;
  /* padding: 10px 14px; */
  /* border-radius: 20px; */
  /* font-size: 14px; */
  line-height: 1.5;
  word-wrap: break-word;
  animation: fadeInBubble 0.3s ease forwards;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  /* max-width: 70%; */
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 13px;
  max-width: 90%;       
}


.chat-bubble:hover {
  transform: translateY(-2px);
}

@keyframes fadeInBubble {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

 .chat-bubble {
    font-size: 13px;
    font-weight: 700;
    padding: 7px 11px;
  }

.chat-bubble.user {
  align-self: flex-end;
  background: linear-gradient(to right, #dcf8c6, #c8e6b8);
  color: #2c2c2c;
}

.chat-bubble.bot {
  align-self: flex-start;
  background: linear-gradient(to right, #f1f1f1, #e0e0e0);
  color: #333;
}

/* Input Area */
.codizious-chat-input-area {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-top: 1px solid #ddd;
  background: #f9f9f9;
  flex-shrink: 0;
}

.codizious-chat-input-area input {
  flex: 1;
  border: 1px solid #ccc;
  padding: 10px 14px;
  border-radius: 22px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.codizious-chat-input-area input:focus {
  border-color: #25D366;
  box-shadow: 0 0 4px rgba(37, 211, 102, 0.4);
}

.codizious-send-btn {
  background: #25D366;
  border: none;
  color: white;
  /* font-size: 18px; */
  padding: 10px;
  margin-left: 10px;
  border-radius: 50%;
  cursor: pointer;
  width: 36px;
  height: 36px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s;
}

.codizious-send-btn:hover {
  background: #1ebd5a;
  transform: scale(1.1);
}

/* WhatsApp Floating Icon */
.codizious-whatsapp-icon-wrapper {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.codizious-whatsapp-icon-wrapper:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.codizious-whatsapp-icon {
  width: 34px;
  height: 34px;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Mobile Responsive */
@media screen and (max-width: 576px) {
  .codizious-chat-popup {
    width: 90vw;            /* responsive width */
    max-height: 420px;      /* smaller height */
    bottom: 70px;
    right: 10px;
  }

  .codizious-whatsapp-icon-wrapper {
    width: 48px;
    height: 48px;
    right: 12px;
    bottom: 60px;
  }

  .codizious-whatsapp-icon {
    width: 26px;
    height: 26px;
  }

  .codizious-chat-input-area input {
    font-size: 12px;
    padding: 8px 12px;
  }
}

.codizious-social-icon.ai {
  background-color: #202f40;
  /* Deep Purple */
  color: #fff;
  animation: pulseAI 1.5s infinite;
}

.codizious-social-icon.ai:hover {
  background-color: #202f40;
  transform: scale(1.2);
}

@keyframes pulseAI {
  0% {
    box-shadow: 0 0 0 0 rgba(75, 0, 130, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(75, 0, 130, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(75, 0, 130, 0);
  }
}



/* ===================== */
/* Codizious Social Bar Styles */
/* Codizious social bar */
/* ===================== */


/* ==== Vertical Social Bar ==== */
.codizious-vertical-social-bar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 9999;
}

/* ==== Social Icon Styles ==== */
.codizious-social-icon {
  width: 50px;
  height: 50px;
  font-size: 1.6rem;
  color: #fff;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.codizious-social-icon::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: conic-gradient(#ffffff50 0deg, transparent 360deg);
  animation: spinBorder 2.5s linear infinite;
  z-index: 0;
  opacity: 0;
  transition: 0.4s ease;
  border-radius: 50%;
}

.codizious-social-icon i {
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease;
}

.codizious-social-icon:hover::before {
  opacity: 1;
}

.codizious-social-icon:hover i {
  transform: rotate(360deg);
  color: #fff !important;
}

/* Brand Colors */
.linkedin {
  background-color: #0077b5;
}

.facebook {
  background-color: #1877f2;
}

.instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

.twitter {
  background-color: #0a0909;
}

.email {
  background-color: #444;
}

@keyframes spinBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .codizious-vertical-social-bar {
    display: none;
  }
}


/* ===================== */
/* discover coures */
/* ===================== */



body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}

.course-image-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.course-image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-link:hover .course-image-card {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.course-link:hover img {
  transform: scale(1.05);
}

h2.title {
  text-align: center;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 40px;
  color: #08915E;
}


/* ===================== */
/* placemnet style */
/* ===================== */



/* Swiper Slide Style */
.swiper-slide {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.swiper-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.course-icon img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  background-color: #f0f0f0;
  padding: 12px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.swiper-slide:hover .course-icon img {
  transform: scale(1.1);
}

/* Course Title */
.course-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.swiper-slide:hover .course-title {
  color: #08915E;
  /* your brand green */
}

/* Responsive Fix */
@media (max-width: 768px) {
  .swiper-slide {
    padding: 20px 10px;
  }

  .course-title {
    font-size: 14px;
  }

  .course-icon img {
    width: 70px;
    height: 70px;
  }
}



/* ================== */
/* Header */
/* ================== */


/* Mobile Dropdown Support */
@media (max-width: 991px) {
  .navmenu ul {
    flex-direction: column;
    width: 100%;
  }

  .navmenu li {
    width: 100%;
    list-style: none;
  }

  .navmenu ul li a {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }

  .navmenu ul li a:hover {
    background-color: #f7f7f7;
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-menu {
    display: none;
    padding: 10px 0;
    background: #fafafa;
  }

  .dropdown.active>.dropdown-menu {
    display: block;
  }

  .codizious-mega-menu-area .row {
    flex-direction: column;
    margin: 0;
    gap: 0;
  }

  .codizious-mega-menu-area .col-lg-4 {
    width: 100%;
    padding: 0 10px;
    border-bottom: 1px solid #eaeaea;
  }

  .codizious-mega-menu-area li a {
    font-size: 15px;
    padding: 8px 0;
    display: block;
    color: #000;
  }
}

/* Codizious Dropdown Styling */
.codizious-dropdown .dropdown-menu {
  background: #fff;
  border-radius: 10px;
  min-width: 100%;
  z-index: 9999;
}

.codizious-dropdown .codizious-dropdown-item {
  transition: 0.3s ease;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 500;
}

.codizious-dropdown .codizious-dropdown-item:hover {
  background-color: #08915E;
  color: #fff;
}


/* ==================================== */
/* about us video */
/* ==================================== */


.about-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 600;
  color: #0f766e;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 1.5rem;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.features li {
  background: #ecfdf5;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: #0f766e;
  font-weight: 500;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
}

.btn1 {
  background: #059669;
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
}

.btn1:hover {
  background: #047857;
}

.ghost {
  background: transparent;
  border: 2px solid #059669;
  color: #059669;
  padding: 0.7rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.ghost:hover {
  background: #059669;
  color: white;
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.play-btn-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Popup Overlay */
.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Close Button Outside Video */
.close-popup {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 1001;
  font-weight: bold;
}

.close-popup:hover {
  color: #ff4444;
}

.video-popup-content {
  position: relative;
  max-width: 80%;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1000;
}

.video-popup video {
  width: 1100px;
  height: 600px;
  display: block;
}

.video-popup1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-wrapper1 {
  max-width: 80%;
  max-height: 80%;
}

.video-wrapper1 video {
  width: 100%;
  height: 600px;
  border-radius: 10px;
}


/* ========================================== */
/* Video Feedback  */
/* ========================================== */


.video-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: #000;
  padding: 10px;
  border-radius: 12px;
  max-width: 90%;
  max-height: 90%;
}

.video-popup video {
  width: 100%;
  height: 600px;
}

.close-popup {
  position: absolute;
  top: -30px;
  right: -50px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
  padding: 0 10px;
  border-radius: 50%;
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
}



/* Popup Overlay */
.contact-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-in-out;
}

/* Popup Box */
.contact-popup-content {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: scaleIn 0.3s ease-in-out;
}

/* Close Button */
.close-contact-popup {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.close-contact-popup:hover {
  color: #000;
}

/* Form Styles */
.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #08915E;
  box-shadow: 0 0 5px rgba(8, 145, 94, 0.3);
}

/* Submit Button */
.btn-submit {
  background: #08915E;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #066b48;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* =========================== */
/* inquiry form */
/* =========================== */


.codizious-text {
  color: #ffffff;
}

.codizious-text:hover {
  color: #ffffffbe;
  transform: scale(1.06);
}