    * {
      scroll-behavior: smooth;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #000;
      
    }

    /* Navbar Styling */
    .custom-navbar {
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(10px);
      transition: 0.4s ease;
      
    }

    .nav-link.custom-link {
      position: relative;
      padding: 8px 15px;
      font-weight: 500;
      color: #ffee00;
      transition: all 0.3s ease;
      font-size: 16px;
      text-decoration: none;
      
    }

    .nav-link.custom-link:hover {
      color: #ffc107;
      text-shadow: 0 0 10px #ffc107;
    }

    .nav-link.custom-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0%;
      background: #ffc107;
      transition: 0.4s;
    }

    .nav-link.custom-link:hover::after {
      width: 100%;
    }

    .navbar .dropdown-toggle i {
  transition: transform 0.3s ease;
}

/* Rotate icon when dropdown is open */
.navbar .dropdown-toggle.show i {
  transform: rotate(180deg);
}


.dropdown-menu {
  background-color: #111;
  border: none;
}

.dropdown-item {
  color: #ffc107;
  transition: 0.2s ease;
}

.dropdown-item:hover {
  background-color: #ffc107;
  color: #000;
}

#mobileMenuContent
{
    color: #ffc107;
}



    .call-btn {
      background: #ffc107;
      color: #000;
      padding: 8px 20px;
      border-radius: 30px;
      font-weight: bold;
      box-shadow: 0 0 10px #ffc10788;
      transition: all 0.3s;
    }

    .call-btn:hover {
     background: linear-gradient(135deg, #dd2476, #ff512f);
  box-shadow: 0 0 20px rgba(255, 82, 82, 0.7);
    }

    /* Offcanvas Mobile Menu */
    .offcanvas {
      background-color: #000;
    }

    @media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeIn 0.3s ease-in-out;
  }

  /* Optional: Chevron icon rotates on hover */
  .navbar .dropdown:hover > .dropdown-toggle i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
}

/* Optional: Keyframe for dropdown fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-heading {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffc107, #ff5722);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  animation: pulseGlow 2.5s infinite;
  line-height: 1.3;
  word-break: break-word;
}

/* Animation */
@keyframes pulseGlow {
  0% {
    text-shadow: 2px 2px 8px rgba(255, 193, 7, 0.4);
    transform: scale(1);
  }
  50% {
    text-shadow: 2px 2px 18px rgba(255, 87, 34, 0.8);
    transform: scale(1.05);
  }
  100% {
    text-shadow: 2px 2px 8px rgba(255, 193, 7, 0.4);
    transform: scale(1);
  }
}


.hero-section {
  position: relative;
  overflow: hidden;
  height: 95vh;
  background: url('image/hero-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px #000;
}

.btn-group .btn {
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
  transition: 0.3s ease-in-out;
}

.btn-danger:hover {
   background: linear-gradient(135deg, #dd2476, #ff512f);
  box-shadow: 0 0 20px rgba(255, 82, 82, 0.7);
}

.btn-warning:hover {
  background-color: #fff;
  color: #000;
}
/* 🌟 Hero Form Glass Style + Animation */




.hero-form .form-select option {
  background-color: #ffc107;         /* dark dropdown background */
  color: #000;                    /* white text */
  font-weight: 500;
}

.hero-form .form-select option:hover {
  background-color: #ffc107;
  color: #000;
}



.hero-form {
  background: rgba(255, 255, 255, 0.05); /* transparent white */
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  animation: fadeInUp 1s ease-in-out;
  transition: all 0.3s ease;
}

/* Form Inputs */
.hero-form .form-control,
.hero-form .form-select {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

.hero-form .form-control::placeholder,
.hero-form .form-select {
  color: rgba(255, 255, 255, 0.8);
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffc107;
  box-shadow: 0 0 12px #ffc10799;
  color: #fff;
}

/* hidden input field to avoid spam */
.hero-form .form-control.mobile-number {
  display: none;
}

/* Submit Button */
.hero-form button {
  background: linear-gradient(135deg, #ff512f, #dd2476);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 12px 0;
  transition: 0.4s ease;
  box-shadow: 0 0 15px rgba(255, 82, 82, 0.4);
}

.hero-form button:hover {
  background: linear-gradient(135deg, #dd2476, #ff512f);
  box-shadow: 0 0 20px rgba(255, 82, 82, 0.7);
}
.degree-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  background: linear-gradient(to right, #111, #000);
}

.degree-logo {
  width: 190px;
  height:190px;
  background: rgba(255, 255, 255);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.degree-logo::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: 0;
}

.degree-logo:hover::before {
  transform: scale(1);
}

.degree-logo:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
}

.degree-logo img {
  width: 70%;
  height: auto;
  z-index: 1;
  transition: transform 0.4s ease;
}

.degree-logo:hover img {
  transform: scale(1.1);
}


.about-section {
  background: linear-gradient(to right, #000, #111);
  color: #ccc;
}

.about-section h2 {
  font-size: 2.3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffc107, #ff5722);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-img-wrapper {
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
  
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: inline-block;
  
}
.about-section p.lead {
  font-size: 1.125rem;
  line-height: 1.6;
}

.about-section li i {
  font-size: 1.2rem;
}

.btn-gradient {
  background: linear-gradient(135deg, #ffc107, #ff5722);
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s;
}
.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.6);
}
 

/* Our Courses Section */
#our-courses {
  background-color: #111;
  color: #fff;
}

#our-courses h2 {
  font-weight: bold;
  font-size: 2.5rem;
}

#our-courses .divider {
  width: 60px;
  height: 4px;
  background: #ffc107;
  margin: 10px auto 30px;
}

#our-courses .nav-link {
  background: transparent;
  color: #fff;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-align: left;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 4px;
}

#our-courses .nav-link.active {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 3px solid #ffc107;
  color: #ffc107;
  font-weight: bold;
}

#our-courses .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffc107;
}

#our-courses .tab-content {
  background-color: #1c1c1c;
}

#our-courses .tab-pane p {
  font-size: 1rem;
  line-height: 1.6;
}

#our-courses .tab-pane img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
  transition: transform 0.3s ease;
}

#our-courses .tab-pane img:hover {
  transform: scale(1.03);
}

#our-courses .btn-warning {
  background-color: #ffc107;
  color: #000;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

#our-courses .btn-warning:hover {
  background: linear-gradient(135deg, #dd2476, #ff512f);
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 82, 82, 0.6);
}


/* ✨ Animation Keyframe */
@keyframes fadeInUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}     

.testimonial-card {
  background: rgba(255, 255, 255, 0.05); /* light transparent look */
  backdrop-filter: blur(10px); /* blur effect */
  -webkit-backdrop-filter: blur(10px); /* for Safari */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.1);
}

.swiper-pagination
{
  color: #ffc107;
}

.testimonial-button-next,
.testimonial-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #ffc107;
  transition: background 0.3s ease;
   z-index: 1;
}

.testimonial-button-next:hover,
.testimonial-button-prev:hover {
  background: rgba(255, 193, 7, 0.4);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

/* Put arrows outside the container */
.testimonial-button-prev {
  left: -6px;
}

.testimonial-button-next {
  right: -6px;
}





.enroll {
  background: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)),url('image/slide.jpg') no-repeat center center/cover;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.enroll-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px 20px;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.enroll-box h2 {
  font-size: 2rem;
  color: #ffc107;
}

.enroll-btn {
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 82, 82, 0.5);
}

.enroll-btn:hover {
  background-color: #ff3d3d;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.7);
  transform: scale(1.05);
}

.events-section {
  background-color: #121212;
  color: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffc107;
  position: relative;
}

.event-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: center;
}

.event-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 193, 7, 0.3);
}

.event-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  height: 180px;
  object-fit: cover;
}

.event-title {
  color: #ffc107;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.event-desc {
  font-size: 0.95rem;
  color: #ddd;
}

.glow-line {
  height: 4px;
  width: 200px;
  margin: 30px auto;
  background: linear-gradient(to right, #ffeb3b, #ff9800);
  box-shadow: 0 0 20px #ffc107;
  border-radius: 10px;
}

.call-section {
  background: url('image/contact-bg.jpg') no-repeat center center/cover;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 100%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.call-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: bold;
}

.call-box p {
  margin-bottom: 20px;
  font-size: 16px;
}

.call-btn {
  display: inline-block;
  background: linear-gradient(to right, #ffeb3b, #ff9800);
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  transition: 0.3s ease;
}

.call-btn:hover {
  background: linear-gradient(to right, #ff9800, #ffc107);
  transform: scale(1.05);
}
.location-section {
  padding: 60px 20px;
  background-color: #121212; /* Dark background */
  display: flex;
  justify-content: center;
  align-items: center;
}

.location-box {
  max-width: 900px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2); /* soft golden glow */
  color: #fff;
}

.location-heading {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  color: #ffeb3b;
}

.location-info h4 {
  color: #ff9800;
  font-size: 20px;
  margin-bottom: 10px;
}

.location-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.call-now {
  font-size: 16px;
}

.call-now span {
  font-weight: bold;
  margin-right: 10px;
}

.call-now a {
  color: #ffc107;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.call-now a:hover {
  text-decoration: underline;
  color: #fff176;
}

.map-frame {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}
.arena-fab-group {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.arena-fab-btn {
  width: 75px;
  height: 75px;
  background: #1f1f1f;
  border-radius: 50%;
  border: 2px solid #ffc107;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 12px #ffc107aa;
  cursor: pointer;
  transition: 0.3s;
}

.arena-fab-btn:hover {
  transform: scale(1.1);
  background-color: #ffc107;
  color: black;
}

.arena-fab-btn img {
  width: 50px;
  height: 50px;
}

.arena-top-scroll {
  font-size: 30px;
  color: white;
  background-color: #222;
}

.arena-ai-assist {
  font-size: 22px;
  color: white;
  background: linear-gradient(to right, #00c6ff, #0072ff);
}

/* Footer Base */
.arena-footer {
  background: linear-gradient(to right, #111, #1c1c1c);
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Left Section */
.footer-left {
  flex: 1;
  min-width: 250px;
}
.footer-left img {
  width:180px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: #ccc;
}

/* Center Section */
.footer-center {
  flex: 1;
  min-width: 250px;
}

.footer-center h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffcc00;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  position: relative;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding-bottom: 3px;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: #ffcc00;
  transition: width 0.4s ease;
}

.footer-links a:hover {
  color: #ffc107;
  text-shadow: 0 0 10px #ffc107;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Right Section */
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-right h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffcc00;
}

/* Contact Info */
.arena-footer-contact {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.arena-footer-contact i {
  color: #ffcc00;
}

/* Social Icons */
.arena-social-icons a.arena-icon {
  display: inline-block;
  color: #ffcc00;
  margin-right: 12px;
  font-size: 20px;
  transition: transform 0.3s, color 0.3s;
}

.arena-social-icons a.arena-icon:hover {
  transform: scale(1.2);
  color: red;
}

/* Subscribe Form */
.arena-subscribe-form {
  margin-top: 15px;
  display: flex;
  border: 1px solid #444;
  border-radius: 30px;
  overflow: hidden;
}

.arena-subscribe-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  background: #222;
  color: #fff;
}

#arena-submit-btn {
  background: #ffcc00;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  color: #000;
  transition: 0.3s ease;
}

#arena-submit-btn:hover {
  background: linear-gradient(to right, #ff9800, #ffc107);
  color: #000;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 20px;
}


.arena-mail-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.arena-mail-link:hover {
  color: #ffc107;
  text-decoration: underline;
}


/* Responsive Fix */
@media (max-width: 991px) {
  .hero-section {
    height: auto;
    padding: 50px 20px;
  }

 .hero-heading {
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: center;
    padding: 0 6px;
  } 
  .hero-content h1 {
    font-size: 32px;
    text-align: center;
  }

  .btn-group {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

   .btn-group .btn {
    border-radius: 50px !important; /* fully rounded pill shape */
    padding: 10px 20px; /* thoda compact padding */
    font-size: 1rem; /* mobile ke liye font adjust */
  }

  .btn-group {
    flex-direction: column; /* vertically stack buttons */
    gap: 10px;
     justify-content: center;
  }
   .hero-form {
    margin-top: 5px;
    padding: 20px 15px;
  }

  .hero-heading {
    font-size: 28px;
  }

  .hero-form button {
    font-size: 16px;
  }
  .degree-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 5px 2px;
  }

  .degree-logo {
    width: 100%;
    text-align: center;
    margin-top: -5px;
  }

  .degree-logo img {
    width: 80%;
    max-width: 180px;
    height: auto;
    margin-bottom: -15px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .degree-logo img:hover {
    transform: scale(1.05);
  }

  .about-section h2 {
    font-size: 24px;
    text-align: center;
  }

  .about-section p {
    font-size: 18px;
    text-align: center;
  }


  .about-section h2,
  .about-section p,
  .about-section ul,
  .about-section .btn-gradient {
    text-align: center !important;
    width: 100%;
  }

  .about-section ul li {
    justify-content: center;
  }

  .about-section img {
    width: 80%;
    margin: 0 auto;
    border-radius: 20px;
   
  }

  .about-section .btn-gradient {
    margin-top: 20px;
    display: block;
    width: 50%;
    margin: 0 auto;
  }

    #our-courses .row.align-items-center {
    flex-direction: column;
  }

  #our-courses .col-md-8,
  #our-courses .col-md-4 {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  #our-courses .tab-content {
    padding: 15px;
  }

  #our-courses .btn-warning {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    margin-top: 15px;
  }

  #our-courses .nav-pills {
    flex-direction: row;
    justify-content: space-between;
  }

  #our-courses .nav-link {
    flex: 1 1 45%;
    text-align: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
  }

    .location-section {
      margin-top: -50px;
    padding: 40px 15px;
  }

  .location-box {
    padding: 25px;
    border-radius: 16px;
  }

  .location-heading {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .location-info h4 {
    font-size: 18px;
  }

  .location-info p {
    font-size: 15px;
    line-height: 1.5;
  }

  .call-now {
    font-size: 15px;
    flex-wrap: wrap;
  }

  .call-now a {
    display: inline-block;
    margin-top: 8px;
  }

  .map-frame {
    margin-top: 20px;
    height: 250px;
  }

  .map-frame iframe {
    height: 100%;
    width: 100%;
  }

  .arena-fab-group
  {
    margin-right: -5px;
  }

  .arena-fab-btn {
  width: 45px;
  height: 45px;
  
}

.arena-fab-btn img {
  width: 35px;
  height: 35px;
}


.enroll-box h2
{
  font-size: 20px;
}

.events-section 
{
  margin-top: -15x;
}

.events-section .container .section-title
{

}
.footer-left img {
  width:100px;
}
}
