/* <!-- pop up styling --> */
  dialog[open] el-dialog-panel {
    animation: popup-show .35s ease-out forwards;
  }
  dialog[data-closing] el-dialog-panel {
    animation: popup-hide .25s ease-in forwards;
  }

  @keyframes popup-show {
    0% { opacity: 0; transform: translateY(30px) scale(.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes popup-hide {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(20px) scale(.95); }
  }
    #auto-modal button:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  /* /* [pop up close button] *styling */
    #auto-modal button:focus {
    outline: none !important;
    box-shadow: none !important;
  }


/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== TOP HEADER ===== */
.top {
  background-color: #0066b3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  height: 70px;
  flex-wrap: wrap;
}

.topleft ul {
  display: flex;
  gap: 50px;
  list-style: none;
  align-items: center;
}

.topleft ul li a {
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.topleft ul li img {
  height: 15px;
}

.topright ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.topright ul li a {
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 12px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

.navigator ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.navigator ul li a {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 550;
  color: #403639;
  text-decoration: none;
}
#aboutToggle:focus {
  outline: none !important;
  box-shadow: none !important;
}



/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 992px) {
  .top,
  .navbar {
    padding: 10px 30px;
  }

  .topleft ul {
    gap: 25px;
  }

  .navigator ul {
    gap: 25px;
  }

  .logo img {
    height: 50px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .top {
    flex-direction: column;
    height: auto;
    text-align: center;
    gap: 10px;
    padding: 10px;
  }

  .topleft ul,
  .topright ul {
    flex-direction: column;
    gap: 10px;
    margin: 0;
  }

  .navbar {
    flex-direction: column;
    padding: 15px 20px;
  }

  .navigator ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }

  .logo img {
    height: 45px;
    margin: 0 auto;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .topleft ul li a,
  .topright ul li a,
  .navigator ul li a {
    font-size: 13px;
  }

  .logo img {
    height: 40px;
  }
}
/* ===== UPSCROLL BUTTON ===== */
.upscroll {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
}

.upscroll.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.upscroll button {
  border: none;
  background: linear-gradient(135deg, #0066b3, #004a80);
  border-radius: 50%;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.upscroll button:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffcb05, #f5b500);
}

.upscroll img {
  height: 28px;
  width: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.upscroll button:hover img {
  transform: translateY(-2px);
}

/* Smooth fade-in animation */
.upscroll.show {
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.upscroll {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  /* background: red !important; just to test */
}

/* ===== CAROUSEL STYLING ===== */
.crousel {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

/* Carousel Container */
.carousel-inner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

/* Carousel Image */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills nicely, better visual than 'contain' */
  transition: transform 0.6s ease;
}

/* Optional Zoom Effect */
.carousel-item img:hover {
  transform: scale(1.03);
}

/* Carousel Text Overlay */
.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 12px;
  width: 80%;
  max-width: 800px;
}

.carousel-content h5 {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.carousel-content p {
  font-size: 1.2em;
  line-height: 1.4;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 992px) {
  .carousel-inner {
    height: 400px;
  }

  .carousel-content h5 {
    font-size: 1.8em;
  }

  .carousel-content p {
    font-size: 1.1em;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .carousel-inner {
    height: 300px;
  }

  .carousel-content {
    width: 90%;
    padding: 15px;
  }

  .carousel-content h5 {
    font-size: 1.5em;
  }

  .carousel-content p {
    font-size: 1em;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .carousel-inner {
    height: 250px;
  }

  .carousel-content {
    width: 95%;
    padding: 10px;
  }

  .carousel-content h5 {
    font-size: 1.2em;
  }

  .carousel-content p {
    font-size: 0.9em;
  }
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .upscroll button {
    height: 45px;
    width: 45px;
  }

  .upscroll img {
    height: 25px;
    width: 25px;
  }

  .upscroll {
    bottom: 15px;
    right: 15px;
  }
}
/* ===== ABOUT SECTION ===== */
.aboutsection {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 60px;
  padding: 0 50px;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Side (Text) */
.aboutleft {
  flex: 1 1 400px;
  max-width: 550px;
}

.aboutheading {
  font-family: "Ubuntu", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
}

.abouttext {
  margin-top: 25px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
  text-align: justify;
}

/* Buttons */
.aboutbtn {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.aboutbtn button {
  width: 200px;
  height: 60px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #0066b3; /* Star Kids blue */
  border: 2px solid #0066b3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.aboutbtn button:hover {
  background-color: #004f8a;
  border-color: #004f8a;
}

.aboutbtn button img {
  width: 22px;
}

/* Right Side (Video or Image) */
.aboutright iframe {
  width: 560px;
  height: 315px;
  border: none;
  border-radius: 10px;
  margin-top: 80px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 992px) {
  .aboutsection {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    text-align: center;
  }

  .aboutleft {
    width: 100%;
  }

  .aboutright iframe {
    margin-top: 50px;
    width: 100%;
    height: 350px;
  }

  .aboutbtn {
    justify-content: center;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .aboutheading {
    font-size: 28px;
  }

  .abouttext {
    font-size: 16px;
    line-height: 1.5;
  }

  .aboutright iframe {
    height: 250px;
  }

  .aboutbtn button {
    width: 160px;
    height: 50px;
    font-size: 16px;
  }
}
/* ===== ADMISSION SECTION ===== */
.admissionsection {
  margin-top: 120px;
  background-color: #ececec;
  padding-bottom: 80px;
}

/* Section Heading */
.admissionheading {
  padding-top: 60px;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
}

/* Container for Admission Boxes */
.admissioncontainer {
  margin-top: 50px;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 50px;
}

/* Each Admission Box */
.admissionbox {
  width: 300px;
  height: 350px;
  background-color: #0066b3; /* Star Kids Blue */
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.admissionbox:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* Box Head (Icon + Title) */
.admissionboxhead ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
  text-align: center;
}

.admissionboxhead ul li img {
  height: 55px;
  margin-bottom: 15px;
}

.admissionboxhead ul li:nth-child(2) {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

/* Box Text */
.admissionboxtext {
  width: 90%;
  margin-top: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 992px) {
  .admissionheading {
    font-size: 30px;
  }

  .admissioncontainer {
    gap: 30px;
    padding: 0 30px;
  }

  .admissionbox {
    width: 260px;
    height: 330px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .admissionheading {
    font-size: 28px;
  }

  .admissioncontainer {
    display: flex;
    flex-direction: column;
    align-items: center;          /* centers all boxes */
    justify-content: center;
    gap: 25px;
    width: 100%;                  /* full width of section */
    margin: 0 auto;               /* centers the container */
    padding: 0;                   /* remove left/right padding */
    box-sizing: border-box;
  }

  .admissionbox {
    width: 90%;
    max-width: 350px;
    height: auto;
    padding: 30px 20px;
    margin: 0 auto;               /* perfectly center each box */
  }

  .admissionboxhead ul li img {
    height: 45px;
  }

  .admissionboxhead ul li:nth-child(2) {
    font-size: 18px;
  }

  .admissionboxtext {
    font-size: 14px;
  }

  /* Ensure anchor doesn't affect centering */
  .admissioncontainer a {
    display: flex;
    justify-content: center;
    width: 100%;
    text-decoration: none;
  }
}




/* Small Mobiles */
@media (max-width: 480px) {
  .admissionheading {
    font-size: 24px;
  }

  .admissionbox {
    padding: 25px 15px;
  }
}
/* ===== Testimonial Section Heading ===== */
.testimonialheading {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
}

/* ===== Testimonial Carousel Container ===== */
.testimonial-carousel {
  width: 85%;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Inner carousel area */
.testimonial-carousel .carousel-inner {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  transition: height 0.3s ease;
}

/* Carousel images */
.testimonial-carousel .carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(90%);
  transition: transform 0.5s ease;
}

.testimonial-carousel .carousel-item img:hover {
  transform: scale(1.05);
}

/* Carousel controls */
.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon {
  filter: invert(100%);
}

/* ===== Responsive Adjustments ===== */

/* Tablets */
@media (max-width: 992px) {
  .testimonialheading {
    font-size: 30px;
  }
  .testimonial-carousel {
    width: 90%;
  }
  .testimonial-carousel .carousel-inner {
    height: 350px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .testimonialheading {
    font-size: 24px;
    margin-top: 10px;
  }
  .testimonial-carousel {
    width: 95%;
  }
  .testimonial-carousel .carousel-inner {
    height: 250px;
    border-radius: 10px;
  }
  .testimonial-carousel .carousel-item img {
    filter: brightness(100%);
  }
}
/* ===== Franchise Section Heading ===== */
/* ===== Franchise Section ===== */
.franchiseheading {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 39.6px;
  color: rgb(51, 51, 51);
}

/* Main container for icons */
.franchiseicons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap; /* ✅ allows wrapping on smaller screens */
  margin-top: 40px;
  margin-left: 0; /* ✅ avoid uneven left spacing */
  width: 100%;
  text-align: center;
}

/* Common icon style */
.franchiseicons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.franchiseicons ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  margin-top: 15px;
  text-align: center;
}

/* Buttons & images */
.franchiseicons ul li button {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.franchiseicons ul li button:hover {
  transform: scale(1.05);
}

.franchiseicons ul li button img {
  width: 100px;
  transition: transform 0.3s ease;
}

.franchiseicons ul li button img:hover {
  transform: scale(1.08);
}

/* ===== Responsive Adjustments ===== */

/* Tablets */
@media (max-width: 992px) {
  .franchiseheading {
    font-size: 30px;
  }

  .franchiseicons {
    gap: 60px;
    padding: 0 20px;
  }

  .franchiseicons ul li button img {
    width: 90px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .franchiseheading {
    font-size: 24px;
    margin-top: 15px;
    text-align: center;
  }

  .franchiseicons {
    flex-direction: column; /* ✅ stacks vertically */
    gap: 30px;
    padding: 0 10px;
  }

  .franchiseicons ul li button img {
    width: 80px;
  }

  .franchiseicons ul li {
    font-size: 16px;
  }
}

/* ===== News & Events Section ===== */
.news-events {
  margin-top: 30px;
  background-color: #1e3a8a; /* Star Kids deep blue */
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* ===== Section Heading ===== */
.news-events h2 {
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

/* ===== Card Styling ===== */
.news-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
}

/* ===== Image Wrapper & Hover Overlay ===== */
.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .image-wrapper img {
  transform: scale(1.05);
}

/* Overlay effect on hover */
.overlay {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 144, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: top 0.4s ease;
}

.news-card:hover .overlay {
  top: 0;
}

.overlay a {
  background: #fff;
  color: #1e90ff;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.overlay a:hover {
  background: #1e90ff;
  color: #fff;
}

/* ===== Card Body ===== */
.news-card .card-body {
  padding: 20px;
  text-align: left;
}

.news-card .card-title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1e3a8a;
}

.news-card .card-text {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #444;
  margin-top: 8px;
}

/* ===== Carousel Arrows ===== */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0); /* ensures dark arrows */
}

/* ===== Hide Default Indicators ===== */
.carousel-indicators {
  display: none;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 992px) {
  .news-events h2 {
    font-size: 30px;
  }
  .image-wrapper img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .news-events {
    padding: 40px 0;
  }
  .news-events h2 {
    font-size: 26px;
  }
  .news-card {
    margin-bottom: 30px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 38px;
    height: 38px;
  }
}


@media (max-width: 480px) {
  .news-events h2 {
    font-size: 22px;
  }
  .image-wrapper img {
    height:140px;
  }
  .overlay a {
    font-size: 14px;
    padding: 6px 14px;
  }
}
/* ===== Main Footer Section ===== */
.end {
  background-color: #ffffff;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap; /* ✅ responsive */
  padding: 50px 20px;
  border-top: 1px solid #e5e5e5;
}

.end ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.end ul li {
  margin-bottom: 10px;
}

.end ul li a {
  text-decoration: none;
  color: #403639;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  display: flex;
  justify-content: start;
  transition: color 0.3s ease;
}

.end ul li a:hover {
  color: #1e90ff;
}


/* ===== Brand Bottom Section ===== */
.bottom {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* ✅ responsive */
  gap: 40px;
}

.bottom ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* ✅ responsive */
  gap: 50px;
  padding: 0;
  margin: 0;
}

.bottom ul li img {
  width: 80px;
  transition: transform 0.3s ease;
}

.bottom ul li img:hover {
  transform: scale(1.1);
}

/* ===== Extreme End Bar ===== */
.extremeend {
  background-color: #0066b3;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* ✅ responsive */
  padding: 0 40px;
  gap: 20px;
}

.extremeendleft ul {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.extremeendleft ul li {
  display: flex;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #ffffff;
}

.extremeendleft ul li img {
  width: 15px;
  margin-right: 5px;
}

/* ===== Right Icons Section ===== */
.extremeendright {
  display: flex;
  justify-content: center;
  align-items: center;
}

.extremeendright ul {
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.extremeendright ul li {
  list-style: none;
}

.extremeendright ul li a {
  text-decoration: none;
}

.extremeendright ul li img {
  width: 28px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.extremeendright ul li img:hover {
  transform: scale(1.15);
  opacity: 0.85;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 992px) {
  .end {
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 40px;
  }

/* ===== Projects / Subbrand Section ===== */
.bottom {
  margin-top: 60px;
  padding: 40px 0;
  background: #f8fafc; /* light background for contrast */
}

.bottom ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap; /* enables responsive wrapping */
}

.bottom ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom ul li img {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.bottom ul li img:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.bottom ul li:first-child {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.bottom ul li:first-child span,
.bottom ul li:first-child {
  font-family: "Ubuntu", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #1e90ff;
}

/* ===== Responsive Adjustments ===== */

/* Tablets */
@media (max-width: 992px) {
  .bottom ul {
    gap: 30px;
  }
  .bottom ul li img {
    width: 100px;
  }
  .bottom ul li:first-child {
    font-size: 26px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .bottom {
    padding: 30px 0;
  }

  .bottom ul {
    flex-direction: column;
    gap: 20px;
  }

  .bottom ul li img {
    width: 90px;
  }

  .bottom ul li:first-child {
    font-size: 24px;
    margin-bottom: 15px;
  }
}


  .extremeend {
    height: auto;
    padding: 15px 20px;
    flex-direction: column;
    text-align: center;
  }

  .extremeendleft ul {
    justify-content: center;
  }

  .extremeendright ul {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .end {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .bottom ul {
    gap: 30px;
  }

  .extremeendleft ul li {
    font-size: 13px;
  }

  .extremeendright ul li img {
    width: 24px;
  }
} 
/* ===== Fix Link Underline on Hover ===== */
a {
  text-decoration: none !important;
  color: inherit;
}

a:hover,
a:focus,
a:active {
  text-decoration: none !important;
  color: inherit;
}


