@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');


:root {
  --primary-bg: #C40C0C; 
  --brand-maac: #FF6500; 
  --brand-patna: #CC561E; 
  --btn-cyan: #F6CE71; 
}

body {
  font-family: "Lora", serif !important;
  background-color: #f8f9fa; /* Default light body background */
  overflow-x: hidden;
}

a {
    text-decoration: none !important;
    color: inherit;
}

/* Breadcrumb Section */
.breadcrumb-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Dark overlay for readability */
.video-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(15,23,42,0.65);
  z-index:1;
}

/* Text always on top */
.breadcrumb-section .container{
  position:relative;
  z-index:2;
}

/* Breadcrumb styling */
.breadcrumb-item + .breadcrumb-item::before {
  color: #94a3b8 !important;
}

.breadcrumb-item a {
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #22d3ee !important;
}

.breadcrumb-item.active {
  color: #f59e0b !important;
  font-weight: 600;
}

/* Navbar container */
.custom-navbar {
  background-color: #1f2937;
  padding: 15px 0;
  z-index: 999;
}

/* Branding */
.navbar-brand {
  width: 200px;
  overflow: hidden;
}

.navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-maac {
  color: #2b70fa; /* Or a gradient if possible, sticking to solid for simplicity first */
  background: -webkit-linear-gradient(45deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 5px;
}

.brand-patna {
  color: var(--brand-patna);
}

.brand-creator {
    background-color: #1f2937 !important;
}


/* Navigation Links */
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 1.04rem;
  transition: color 0.3s ease;
  letter-spacing: 1px;
}

.navbar-nav .nav-link:hover {
  color: var(--btn-cyan) !important;
}

/* CTA Button */
.btn-cta {
  /*background-color: var(--btn-cyan);*/
  background-color: #ee2226;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 20px;
  /* box-shadow: 0 0 10px rgba(0, 212, 255, 0.5); */
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 1.2rem;
}


/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)), url('/images/hero-bg.jpg');
  background-size: cover;
  background-color: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  min-height: 85vh;
  position: relative;
  overflow: hidden;
}

/* Badge */
.badge-custom {
  background: linear-gradient(90deg, #7c3aed, #db2777); /* Purple to Pink gradient */
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: sans-serif; /* Match design badge font */
}

/* Titles */
.hero-title {
  font-size: 4rem; /* Large impact */
  font-weight: 800;
  line-height: 1.1;
}

.text-gradient-cyan {
  background: linear-gradient(45deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(45deg, #8b5cf6, #d946ef);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: #cbd5e1; 
  max-width: 600px;
  line-height: 1.6;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e2e8f0;
}

.text-cyan {
  color: #06b6d4;
}

/* Hero Buttons */
.btn-hero-primary {
  background-color: var(--btn-cyan) !important; 
  color: #000;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 5px;
  border: none;
  font-family: sans-serif;
  transition: all 0.4s ease-in;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  color: var(--primary-bg);
}

.btn-hero-secondary {
  background-color: transparent;
  border: 1px solid #475569;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 5px;
  font-family: sans-serif;
  transition: all 0.3s;
}

.btn-hero-secondary:hover {
  background-color: #1e293b;
  border-color: #94a3b8;
}

.scroll-down-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #94a3b8;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
  40% {transform: translateX(-50%) translateY(-10px);}
  60% {transform: translateX(-50%) translateY(-5px);}
}

#hero-form {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#hero-form h4 {
    color: var(--brand-patna);
    text-align: center;
    font-weight: bold;
}

#hero-form .form-label {
    color: white;
}

#hero-form input, select {
    background-color: transparent;
    border: 1px solid white;
    caret-color: white;
    color: white;
}

#hero-form input:focus, select:focus {
    outline: none;
    box-shadow: none;
}

#hero-form select option {
    background-color: #1e293b;
    color: #ffffff;
}

#hero-form button {
    background-color: var(--brand-maac);
    width: 100%;
    color: #fff;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    letter-spacing: 1px;
    font-family: sans-serif;
    transition: all 0.4s ease-in;
}

#hero-form button:hover {
    transform: translateY(-3px);
}

#hero-form input::placeholder {
    color: grey;
}

#gallery-page {
    background-color: #0f1629;
}


.homeBannerImg {
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.homeBannerImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Courses Section */
.courses-section {
  background-color: #0b1120; 
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.section-subtitle {
  max-width: 700px;
  font-size: 1rem;
}

.course-card {
  background-color: #111827; /* Slightly lighter than section bg */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1f2937;
  transition: all 0.3s ease;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(59, 130, 246, 0.2);
}

.card-img-wrapper {
  overflow: hidden;
  height: 200px;
}

.card-img-wrapper img {
  object-fit: cover;
  height: 100%;
  transition: transform 0.5s ease;
}

.course-card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.card-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 2rem;
  letter-spacing: .7px;
}

.card-text {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #9ca3af !important;
}

.read-more-link {
  color: var(--brand-patna) !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.read-more-link:hover {
  color: #3b82f6 !important;
  text-decoration: none;
}

/* About Page */
.about-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Updated About Section */
.about-section {
    background-color: #0f172a; 
}

.about-img-wrapper {
    position: relative;
    padding: 20px;
}

.about-img.main-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    height: auto;
    border: 1px solid rgba(255,255,255,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--brand-maac), #06b6d4);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.4);
    border: 5px solid #0f172a; /* Matches section bg to create cutout effect */
    z-index: 2;
}

.ls-2 {
    letter-spacing: 2px;
}

.about-points .fa-circle-check {
    color: var(--brand-maac); /* Use Brand MAAC blue or Cyan */
    filter: drop-shadow(0 0 5px rgba(0, 123, 255, 0.4));
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: #0f172a;
}

.feature-card {
  background-color: #111827;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #1f2937;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(59, 130, 246, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-maac), #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.4);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.feature-description {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background-color: var(--brand-patna);
}

#cta-text {
  max-width: 50%;
  margin: 0 auto;
}




/* Footer Section */
.footer-section {
    background-color: #050505; /* Deep black/dark background */
    color: #fff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--btn-cyan);
    padding-left: 5px;
}

.footer-contact li {
    font-size: 0.95rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #1f2937;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid #374151;
}

.social-icon:hover {
    background-color: var(--brand-maac);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--brand-maac);
}

.hover-white:hover {
    color: #fff !important;
}

/* Contact Section */
.contact-section {
  background-color: #0f172a;
}

.contact-form-card2 {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-tag {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.contact-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
}

.contact-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.contact-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  padding: 15px 20px !important;
  color: #fff !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.contact-input:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: none !important;
}

select.contact-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
}

.btn-submit-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 10px 10px 25px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-submit-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.arrow-circle {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a4d44;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-submit-pill:hover .arrow-circle {
  transform: rotate(-45deg);
}

.map-wrapper {
  background: #fff;
  padding: 8px;
  border-radius: 24px;
  height: 550px;
}

#mainContactForm select option {
  background-color: #0f172a;
  color: #fff;
}

/* Faq Section */
.faq-section {
    background-color: #1f2937;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #0f172a;
}

.testimonial-card {
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #1e293b;
  color: #fff;
  /* border: 1px solid red; */
}

.testimonial-card .testimonial-card-wrapper .testimonial-img {
  width: 50px;
  height: 50px;
  border: 1px solid var(--brand-maac);
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-card .testimonial-card-wrapper .testimonial-img img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floating Icon */
.floating-btn-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.fab-btn:hover {
  transform: scale(1.1);
  color: white;
}

.fab-btn.whatsapp {
  background-color: #25d366;
}

.fab-btn.phone {
  background-color: #007bff;
}

.fab-badge {
  position: absolute;
  top: -10px;
  right: -5px;
  background-color: #32cd32;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* About Page */
/* Tools Section */
.tools-section {
  background-color: #0b1120;
  position: relative;
}

.col-lg-2_4 {
  flex: 0 0 auto;
  width: 20%;
}

@media (max-width: 992px) {
  .col-lg-2_4 {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .col-lg-2_4 {
    width: 50%;
  }
}


.tool-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 15px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.tool-card:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.tool-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0b1120;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.4s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
}


/* Tool Specifc Colors */
.ps-icon { background: #31A8FF; box-shadow: 0 0 15px #31a8ff80; }
.ai-icon { background: #FF9A00; box-shadow: 0 0 15px #ff9a0080; }
.pr-icon { background: #9999FF; box-shadow: 0 0 15px #9999ff80; }
.ae-icon { background: #D093FF; box-shadow: 0 0 15px #cf96fd80; } 
.id-icon { background: #FF3366; box-shadow: 0 0 15px #ff336680; }
.cd-icon { background: #00AA55; box-shadow: 0 0 15px #00aa5580; color: white; }
.ma-icon { background: #00D3C9; box-shadow: 0 0 15px #00d3c980; }
.ds-icon { background: #22A4F2; box-shadow: 0 0 15px #22a4f280; color: white; font-size: 1.2rem; }
.bl-icon { background: #E87D0D; box-shadow: 0 0 15px #e87d0d80; color: white;}
.fi-icon { background: #F24E1E; box-shadow: 0 0 15px #f24e1e80; color: white; background: linear-gradient(135deg, #F24E1E, #A259FF, #1ABCFE, #0ACF83);} /* Figma specific gradient */
.fi-icon { color: white; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }

.tool-name {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.tool-cat {
  letter-spacing: 1px;
  color: whitesmoke;
}

/* CTA Design Section */
.cta-design-section {
    background-image: url('images/vfx.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

/* Courses Page */
/* Courses List Section */
.courses-list-section {
    background-color: #0b1120;
}

.course-row {
    padding: 20px 0;
}

.course-img-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-img-box img {
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-row:hover .course-img-box img {
    transform: scale(1.05);
}

.course-content-box .btn-hero-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
}

.course-content-box .btn-hero-secondary:hover {
    background-color: var(--brand-maac);
    border-color: var(--brand-maac);
    color: #fff;
    transform: translateY(-2px);
}

/* Contact Info Cards */
.contact-info-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.4s ease;
    height: 100%;
}

.contact-info-card:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-5px);
    border-color: var(--brand-maac);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-maac), #06b6d4);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    transition: all 0.4s ease;
}

.contact-info-card:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
}


/* Alternating Zig-Zag Layout */
@media (min-width: 992px) {
    .course-row:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .course-row:nth-child(even) .course-content-box {
        padding-left: 0;
        padding-right: 3rem; /* match ps-lg-4 value roughly */
        text-align: left;
    }

    .course-row:nth-child(even) .course-content-box ul li {
         justify-content: flex-start;
         display: flex;
         align-items: center;
    }

     .course-row:nth-child(even) .course-content-box ul li i {
         order: 2;
         margin-left: 0.5rem;
         margin-right: 0;
    }
}


/* Responsive adjustments */
@media (max-width: 991.98px) {
  .contact-form-card2 {
    padding: 35px;
  }
  
  .contact-title {
    font-size: 2.2rem;
  }
  
  .map-wrapper {
    height: 400px;
  }
}

@media (max-width: 575.98px) {
  .contact-form-card2 {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
  
  .btn-submit-pill {
    width: 100%;
    justify-content: space-between;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  #cta-text {
    max-width: 100%;
  }
}


/* Courses List Section */
.courses-list-section {
  background-color: #0b1120;
}

.course-row {
  padding: 20px 0;
}

.course-img-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-img-box img {
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.course-row:hover .course-img-box img {
  transform: scale(1.05);
}

.course-content-box .btn-hero-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.3s ease;
}

.course-content-box .btn-hero-secondary:hover {
  background-color: var(--brand-maac);
  border-color: var(--brand-maac);
  color: #fff;
  transform: translateY(-2px);
}

/* Alternating Zig-Zag Layout */
@media (min-width: 992px) {
  .course-row:nth-child(even) {
    flex-direction: row-reverse;
  }

  .course-row:nth-child(even) .course-content-box {
    padding-left: 0;
    padding-right: 3rem; /* match ps-lg-4 value roughly */
    text-align: left;
  }

  .course-row:nth-child(even) .course-content-box ul li {
    justify-content: flex-start;
    display: flex;
    align-items: center;
  }

  .course-row:nth-child(even) .course-content-box ul li i {
    order: 2;
    margin-left: 0.5rem;
    margin-right: 0;
  }
}

/* Contact Info Cards */
.contact-info-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 16px;
  transition: all 0.4s ease;
  height: 100%;
}

.contact-info-card:hover {
  background: rgba(30, 41, 59, 0.8);
  transform: translateY(-5px);
  border-color: var(--brand-maac);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--brand-maac), #06b6d4);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
  transition: all 0.4s ease;
}

.contact-info-card:hover .info-icon {
  transform: scale(1.1) rotate(10deg);
}


/* Career Page Specific Styles */

.job-listings-section {
    background-color: #0b1120;
}

.job-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-maac);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.job-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bg-primary-gradient {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
}

.bg-secondary-gradient {
    background: linear-gradient(45deg, #f6ce71, #ff9a00);
}

.bg-purple-gradient {
    background: linear-gradient(45deg, #8b5cf6, #d946ef);
}

.job-card .btn-hero-primary {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.job-card .btn-hero-primary:hover {
    letter-spacing: 1px;
}

/* Modal Customization */
.modal-content.contact-form-card2 {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

#applyJobForm .form-label {
    margin-bottom: 8px;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .job-listings-section {
        padding: 40px 0;
    }
}

#creator-career {
    background: #0f172a;
}


/* Recruiters Section */
.recruiters-section {
  background-color: #1f2937 !important;
  overflow: hidden;
  position: relative;
}

.recruiters-section .section-title {
  color: #ffc107; /* Golden yellow for "Our Recruiters" */
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.recruiters-section .section-subtitle {
  color: #e2e8f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.recruiters-section .section-subtitle span {
  color: #ff6500; /* MAAC orange */
  font-weight: 600;
}

.recruiter-logo-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 150px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.recruiter-logo-box:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffc107;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.recruiter-logo-box span {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.recruiters-carousel-container {
  max-width: 100%;
  margin: 0 auto;
}

.carousel-row {
  margin-bottom: 20px;
}

/* Horizontal line separator like in mockup */
.recruiters-section::before,
.recruiters-section::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.recruiters-section::before {
  top: 180px;
}

.recruiters-section::after {
  bottom: 60px;
}


