@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&family=Mulish:wght@400;500;600;700&display=swap");

html, body {
  width: 100vw;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Backgrounds */
.white-bg { background: #fff; }
.gray-bg { background: #f7f7fd; }
.black-bg { background: #16161a; }
.brand-bg { background: #f1f4fa; }
.testimonial-bg { background: #f9fafc; }

/* Colors */
.white-color { color: #fff; }
.black-color { color: #16161a; }
.theme-color { color: #00f; }

/* Buttons */
.boxed-btn {
  background: #fff;
  color: #0000CD !important;
  padding: 18px 44px;
  font: 400 14px "Josefin Sans", sans-serif;
  border: 1px solid #000;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
}

.boxed-btn:hover {
  background: #00f;
  color: #fff !important;
}

.boxed-btn:focus {
  outline: none;
}

.boxed-btn.large-width {
  width: 220px;
}

/* Overlays */
[data-overlay] {
    position: relative;
    background: center/cover no-repeat;
  }
  
  [data-overlay]::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.1;
  }
  
  [data-opacity]::before {
    opacity: var(--opacity, 0.1);
  }  

/* Typography */
body {
  font: normal 16px "Mulish", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Josefin Sans", sans-serif;
  color: #4255A4;
  margin-top: 0;
  font-weight: 400;
}

p {
  font: normal 16px "Mulish", sans-serif;
  color: #10285d;
  line-height: 30px;
  margin-bottom: 15px;
}

/* Images */
.img { max-width: 100%; transition: .3s; }

/* Float and clear */
.f-left { float: left; }
.f-right { float: right; }
.clear { clear: both; }

/* Links and buttons */
a, .button { transition: .3s; color: #635c5c; }
a:hover { color: #fff; text-decoration: none; }
button, input, textarea { color: #000; font-size: 20px; }
button:focus, input:focus, textarea:focus { outline: none; }

/* Text transformation */
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }

/* Placeholders */
input:focus::-moz-placeholder { opacity: 0; transition: .4s; }

/* Lists */
ul, li { margin: 0; padding: 0; list-style: none; }

/* Horizontal rule */
hr {
  border: none;
  border-bottom: 1px solid #eceff8;
  margin: 30px 0;
}

/* Overlay */
.overlay1 {
  position: relative;
  z-index: 1;
}

.overlay1::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 1, 2, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  border-radius: 10px 10px 0 0;
}

/* Section padding */
.section-padding { padding: 120px 0; }
.separator { border-top: 1px solid #f2f2f2; }

/* Margin bottom */
.mb-90 { margin-bottom: 90px; }

@media (max-width: 767px) { .mb-90 { margin-bottom: 30px; } }
@media (min-width: 768px) and (max-width: 991px) { .mb-90 { margin-bottom: 45px; } }

/* Owl Carousel Navigation */
.owl-carousel .owl-nav div {
  background: rgba(255, 255, 255, 0.8);
  height: 40px;
  line-height: 40px;
  font-size: 22px;
  color: #646464;
  opacity: 1;
  visibility: visible;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  width: 40px;
}

.owl-carousel .owl-nav div.owl-next { right: -30px; }
.owl-carousel .owl-nav div.owl-next i { top: 1px; }
.owl-carousel .owl-nav div.owl-prev i { right: 1px; }

.owl-carousel:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
}

/* General Button Styles */
.btn {
  background:#0000CD;
  font: 600 18px "Josefin Sans", sans-serif;
  text-transform: capitalize;
  padding: 15px 35px !important;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  line-height: 1;
  letter-spacing: 1px;
  border: 0;
  display: inline-block !important;
  position: relative;
  z-index: 1;
  user-select: none;
}

.btn:hover {
  background-color: #0080ff;
}

/* Custom Button Styles */
.btn.btn3 {
  background: none;
  border: 1px solid #fff;
  margin-left: 20px;
  color: #fff;
  padding: 25px 30px !important;
}

.btn.btn3::before {
  border: 1px solid transparent;
}

@media (max-width: 991px) {
  .btn.btn3 { margin-left: 0 !important; }
}

.btn:focus {
  outline: 0;
  box-shadow: none;
}

/* Button Variants */
.header-btn { padding: 30px 57px; }
.hero-btn { padding: 30px 29px; }
.white-btn {
  padding: 30px 39px;
  background: #fff;
  color: #072366 !important;
}
.black-btn {
  padding: 14px 35px;
  background: #000;
}
.black-btn::before { background: #331391; }

.cal-btn > p {
  color: #072366 !important;
  font: 700 16px sans-serif;
  display: inline-block;
  margin: 0 !important;
  position: relative;
  top: -7px;
}

.submit-btn2 {
  width: 100%;
  height: 60px;
  padding: 10px 20px;
  border: 0;
  color: #fff;
  text-transform: capitalize;
  cursor: pointer;
  font-size: 16px;
  border-radius: 0;
}

/* Section Overlay */
.section-over1 {
  position: relative;
  z-index: 1;
}

.section-over1::before {
  content: "";
  position: absolute;
  background-color: rgba(6, 7, 6, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-repeat: no-repeat;
}

/* Breadcrumb */
.breadcrumb > .active {
  color: #888;
}

/* Scroll Up and Back to Top Buttons */
#back-top {
  background: #00155a;
  height: 50px;
  width: 50px;
  right: 31px;
  bottom: 18px;
  position: fixed;
  color: #fff;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  border: 2px solid transparent;
  box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  /* remove any focus outline dot */
  outline: none;
}

#back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 575px) {
  #back-top { right: 16px; }
}

#back-top a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

#back-top a i {
  display: block;
  line-height: 50px;
}

#back-top:hover,
#back-top a:hover {
  color: #fff;
}

/* Sticky Bar */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  z-index: 9999;
  margin: auto;
  animation: fadeInDown 300ms ease-in-out;
}

/* Custom Margin Classes - Top */
.mt-5-custom { margin-top: 5px; }
.mt-10-custom { margin-top: 10px; }
.mt-15-custom { margin-top: 15px; }
.mt-20-custom { margin-top: 20px; }
.mt-25-custom { margin-top: 25px; }
.mt-30-custom { margin-top: 30px; }
.mt-35-custom { margin-top: 35px; }
.mt-40-custom { margin-top: 40px; }
.mt-45-custom { margin-top: 45px; }
.mt-50-custom { margin-top: 50px; }
.mt-55-custom { margin-top: 55px; }
.mt-60-custom { margin-top: 60px; }
.mt-65-custom { margin-top: 65px; }
.mt-70-custom { margin-top: 70px; }
.mt-75-custom { margin-top: 75px; }
.mt-80-custom { margin-top: 80px; }
.mt-85-custom { margin-top: 85px; }
.mt-90-custom { margin-top: 90px; }
.mt-95-custom { margin-top: 95px; }
.mt-100-custom { margin-top: 100px; }
.mt-105-custom { margin-top: 105px; }
.mt-110-custom { margin-top: 110px; }
.mt-115-custom { margin-top: 115px; }
.mt-120-custom { margin-top: 120px; }
.mt-125-custom { margin-top: 125px; }
.mt-130-custom { margin-top: 130px; }
.mt-135-custom { margin-top: 135px; }
.mt-140-custom { margin-top: 140px; }
.mt-145-custom { margin-top: 145px; }
.mt-150-custom { margin-top: 150px; }
.mt-155-custom { margin-top: 155px; }
.mt-160-custom { margin-top: 160px; }
.mt-165-custom { margin-top: 165px; }
.mt-170-custom { margin-top: 170px; }
.mt-175-custom { margin-top: 175px; }
.mt-180-custom { margin-top: 180px; }
.mt-185-custom { margin-top: 185px; }
.mt-190-custom { margin-top: 190px; }
.mt-195-custom { margin-top: 195px; }
.mt-200-custom { margin-top: 200px; }

/* Margin Classes - Bottom */
.mb-5 { margin-bottom: 5px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-35 { margin-bottom: 35px; }
.mb-40 { margin-bottom: 40px; }
.mb-45 { margin-bottom: 45px; }
.mb-50 { margin-bottom: 50px; }
.mb-55 { margin-bottom: 55px; }
.mb-60 { margin-bottom: 60px; }
.mb-65 { margin-bottom: 65px; }
.mb-70 { margin-bottom: 70px; }
.mb-75 { margin-bottom: 75px; }
.mb-80 { margin-bottom: 80px; }
.mb-85 { margin-bottom: 85px; }
.mb-90 { margin-bottom: 90px; }
.mb-95 { margin-bottom: 95px; }
.mb-100 { margin-bottom: 100px; }
.mb-105 { margin-bottom: 105px; }
.mb-110 { margin-bottom: 110px; }
.mb-115 { margin-bottom: 115px; }
.mb-120 { margin-bottom: 120px; }
.mb-125 { margin-bottom: 125px; }
.mb-130 { margin-bottom: 130px; }
.mb-135 { margin-bottom: 135px; }
.mb-140 { margin-bottom: 140px; }
.mb-145 { margin-bottom: 145px; }
.mb-150 { margin-bottom: 150px; }
.mb-155 { margin-bottom: 155px; }
.mb-160 { margin-bottom: 160px; }
.mb-165 { margin-bottom: 165px; }
.mb-170 { margin-bottom: 170px; }
.mb-175 { margin-bottom: 175px; }
.mb-180 { margin-bottom: 180px; }
.mb-185 { margin-bottom: 185px; }
.mb-190 { margin-bottom: 190px; }
.mb-195 { margin-bottom: 195px; }
.mb-200 { margin-bottom: 200px; }

/* Margin Classes - Left */
.ml-5 { margin-left: 5px; }
.ml-10 { margin-left: 10px; }
.ml-15 { margin-left: 15px; }
.ml-20 { margin-left: 20px; }
.ml-25 { margin-left: 25px; }
.ml-30 { margin-left: 30px; }
.ml-35 { margin-left: 35px; }
.ml-40 { margin-left: 40px; }
.ml-45 { margin-left: 45px; }
.ml-50 { margin-left: 50px; }
.ml-55 { margin-left: 55px; }
.ml-60 { margin-left: 60px; }
.ml-65 { margin-left: 65px; }
.ml-70 { margin-left: 70px; }
.ml-75 { margin-left: 75px; }
.ml-80 { margin-left: 80px; }
.ml-85 { margin-left: 85px; }
.ml-90 { margin-left: 90px; }
.ml-95 { margin-left: 95px; }
.ml-100 { margin-left: 100px; }
.ml-105 { margin-left: 105px; }
.ml-110 { margin-left: 110px; }
.ml-115 { margin-left: 115px; }
.ml-120 { margin-left: 120px; }
.ml-125 { margin-left: 125px; }
.ml-130 { margin-left: 130px; }
.ml-135 { margin-left: 135px; }
.ml-140 { margin-left: 140px; }
.ml-145 { margin-left: 145px; }
.ml-150 { margin-left: 150px; }
.ml-155 { margin-left: 155px; }
.ml-160 { margin-left: 160px; }
.ml-165 { margin-left: 165px; }
.ml-170 { margin-left: 170px; }
.ml-175 { margin-left: 175px; }
.ml-180 { margin-left: 180px; }
.ml-185 { margin-left: 185px; }
.ml-190 { margin-left: 190px; }
.ml-195 { margin-left: 195px; }
.ml-200 { margin-left: 200px; }

/* Margin Classes - Right */
.mr-5 { margin-right: 5px; }
.mr-10 { margin-right: 10px; }
.mr-15 { margin-right: 15px; }
.mr-20 { margin-right: 20px; }
.mr-25 { margin-right: 25px; }
.mr-30 { margin-right: 30px; }
.mr-35 { margin-right: 35px; }
.mr-40 { margin-right: 40px; }
.mr-45 { margin-right: 45px; }
.mr-50 { margin-right: 50px; }
.mr-55 { margin-right: 55px; }
.mr-60 { margin-right: 60px; }
.mr-65 { margin-right: 65px; }
.mr-70 { margin-right: 70px; }
.mr-75 { margin-right: 75px; }
.mr-80 { margin-right: 80px; }
.mr-85 { margin-right: 85px; }
.mr-90 { margin-right: 90px; }
.mr-95 { margin-right: 95px; }
.mr-100 { margin-right: 100px; }
.mr-105 { margin-right: 105px; }
.mr-110 { margin-right: 110px; }
.mr-115 { margin-right: 115px; }
.mr-120 { margin-right: 120px; }
.mr-125 { margin-right: 125px; }
.mr-130 { margin-right: 130px; }
.mr-135 { margin-right: 135px; }
.mr-140 { margin-right: 140px; }
.mr-145 { margin-right: 145px; }
.mr-150 { margin-right: 150px; }
.mr-155 { margin-right: 155px; }
.mr-160 { margin-right: 160px; }
.mr-165 { margin-right: 165px; }
.mr-170 { margin-right: 170px; }
.mr-175 { margin-right: 175px; }
.mr-180 { margin-right: 180px; }
.mr-185 { margin-right: 185px; }
.mr-190 { margin-right: 190px; }
.mr-195 { margin-right: 195px; }
.mr-200 { margin-right: 200px; }

/* Padding Top */
.pt-5 { padding-top: 5px; }
.pt-10 { padding-top: 10px; }
.pt-15 { padding-top: 15px; }
.pt-20 { padding-top: 20px; }
.pt-25 { padding-top: 25px; }
.pt-30 { padding-top: 30px; }
.pt-35 { padding-top: 35px; }
.pt-40 { padding-top: 40px; }
.pt-45 { padding-top: 45px; }
.pt-50 { padding-top: 50px; }
.pt-55 { padding-top: 55px; }
.pt-60 { padding-top: 60px; }
.pt-65 { padding-top: 65px; }
.pt-70 { padding-top: 70px; }
.pt-75 { padding-top: 75px; }
.pt-80 { padding-top: 80px; }
.pt-85 { padding-top: 85px; }
.pt-90 { padding-top: 90px; }
.pt-95 { padding-top: 95px; }
.pt-100 { padding-top: 100px; }
.pt-105 { padding-top: 105px; }
.pt-110 { padding-top: 110px; }
.pt-115 { padding-top: 115px; }
.pt-120 { padding-top: 120px; }
.pt-125 { padding-top: 125px; }
.pt-130 { padding-top: 130px; }
.pt-135 { padding-top: 135px; }
.pt-140 { padding-top: 140px; }
.pt-145 { padding-top: 145px; }
.pt-150 { padding-top: 150px; }
.pt-155 { padding-top: 155px; }
.pt-160 { padding-top: 160px; }
.pt-165 { padding-top: 165px; }
.pt-170 { padding-top: 170px; }
.pt-175 { padding-top: 175px; }
.pt-180 { padding-top: 180px; }
.pt-185 { padding-top: 185px; }
.pt-190 { padding-top: 190px; }
.pt-195 { padding-top: 195px; }
.pt-200 { padding-top: 200px; }
.pt-260 { padding-top: 260px; }

/* Padding Bottom */
.pb-5 { padding-bottom: 5px; }
.pb-10 { padding-bottom: 10px; }
.pb-15 { padding-bottom: 15px; }
.pb-20 { padding-bottom: 20px; }
.pb-25 { padding-bottom: 25px; }
.pb-30 { padding-bottom: 30px; }
.pb-35 { padding-bottom: 35px; }
.pb-40 { padding-bottom: 40px; }
.pb-45 { padding-bottom: 45px; }
.pb-50 { padding-bottom: 50px; }
.pb-55 { padding-bottom: 55px; }
.pb-60 { padding-bottom: 60px; }
.pb-65 { padding-bottom: 65px; }
.pb-70 { padding-bottom: 70px; }
.pb-75 { padding-bottom: 75px; }
.pb-80 { padding-bottom: 80px; }
.pb-85 { padding-bottom: 85px; }
.pb-90 { padding-bottom: 90px; }
.pb-95 { padding-bottom: 95px; }
.pb-100 { padding-bottom: 100px; }
.pb-105 { padding-bottom: 105px; }
.pb-110 { padding-bottom: 110px; }
.pb-115 { padding-bottom: 115px; }
.pb-120 { padding-bottom: 120px; }
.pb-125 { padding-bottom: 125px; }
.pb-130 { padding-bottom: 130px; }
.pb-135 { padding-bottom: 135px; }
.pb-140 { padding-bottom: 140px; }
.pb-145 { padding-bottom: 145px; }
.pb-150 { padding-bottom: 150px; }
.pb-155 { padding-bottom: 155px; }
.pb-160 { padding-bottom: 160px; }
.pb-165 { padding-bottom: 165px; }
.pb-170 { padding-bottom: 170px; }
.pb-175 { padding-bottom: 175px; }
.pb-180 { padding-bottom: 180px; }
.pb-185 { padding-bottom: 185px; }
.pb-190 { padding-bottom: 190px; }
.pb-195 { padding-bottom: 195px; }
.pb-200 { padding-bottom: 200px; }

/* Padding Left */
.pl-5 { padding-left: 5px; }
.pl-10 { padding-left: 10px; }
.pl-15 { padding-left: 15px; }
.pl-20 { padding-left: 20px; }
.pl-25 { padding-left: 25px; }
.pl-30 { padding-left: 30px; }
.pl-35 { padding-left: 35px; }
.pl-40 { padding-left: 40px; }
.pl-45 { padding-left: 45px; }
.pl-50 { padding-left: 50px; }
.pl-55 { padding-left: 55px; }
.pl-60 { padding-left: 60px; }
.pl-65 { padding-left: 65px; }
.pl-70 { padding-left: 70px; }
.pl-75 { padding-left: 75px; }
.pl-80 { padding-left: 80px; }
.pl-85 { padding-left: 85px; }
.pl-90 { padding-left: 90px; }
.pl-95 { padding-left: 95px; }
.pl-100 { padding-left: 100px; }
.pl-105 { padding-left: 105px; }
.pl-110 { padding-left: 110px; }
.pl-115 { padding-left: 115px; }
.pl-120 { padding-left: 120px; }
.pl-125 { padding-left: 125px; }
.pl-130 { padding-left: 130px; }
.pl-135 { padding-left: 135px; }
.pl-140 { padding-left: 140px; }
.pl-145 { padding-left: 145px; }
.pl-150 { padding-left: 150px; }
.pl-155 { padding-left: 155px; }
.pl-160 { padding-left: 160px; }
.pl-165 { padding-left: 165px; }
.pl-170 { padding-left: 170px; }
.pl-175 { padding-left: 175px; }
.pl-180 { padding-left: 180px; }
.pl-185 { padding-left: 185px; }
.pl-190 { padding-left: 190px; }
.pl-195 { padding-left: 195px; }
.pl-200 { padding-left: 200px; }

/* Padding Right */
.pr-5 { padding-right: 5px; }
.pr-10 { padding-right: 10px; }
.pr-15 { padding-right: 15px; }
.pr-20 { padding-right: 20px; }
.pr-25 { padding-right: 25px; }
.pr-30 { padding-right: 30px; }
.pr-35 { padding-right: 35px; }
.pr-40 { padding-right: 40px; }
.pr-45 { padding-right: 45px; }
.pr-50 { padding-right: 50px; }
.pr-55 { padding-right: 55px; }
.pr-60 { padding-right: 60px; }
.pr-65 { padding-right: 65px; }
.pr-70 { padding-right: 70px; }
.pr-75 { padding-right: 75px; }
.pr-80 { padding-right: 80px; }
.pr-85 { padding-right: 85px; }
.pr-90 { padding-right: 90px; }
.pr-95 { padding-right: 95px; }
.pr-100 { padding-right: 100px; }
.pr-105 { padding-right: 105px; }
.pr-110 { padding-right: 110px; }
.pr-115 { padding-right: 115px; }
.pr-120 { padding-right: 120px; }
.pr-125 { padding-right: 125px; }
.pr-130 { padding-right: 130px; }
.pr-135 { padding-right: 135px; }
.pr-140 { padding-right: 140px; }
.pr-145 { padding-right: 145px; }
.pr-150 { padding-right: 150px; }
.pr-155 { padding-right: 155px; }
.pr-160 { padding-right: 160px; }
.pr-165 { padding-right: 165px; }
.pr-170 { padding-right: 170px; }
.pr-175 { padding-right: 175px; }
.pr-180 { padding-right: 180px; }
.pr-185 { padding-right: 185px; }
.pr-190 { padding-right: 190px; }
.pr-195 { padding-right: 195px; }
.pr-200 { padding-right: 200px; }

/* Preloader Styles */
.preloader {
  background-color: #f7f7f7;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 999999;
  transition: 0.6s;
}

/* Preloader Circle */
.preloader-circle {
  width: 100px; height: 100px;
  border: 1px solid transparent;
  border-top-color: #c86fff;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(35, 181, 185, 0.15);
  animation: zoom 2s infinite ease;
}

/* Alternative Preloader Circle */
.preloader-circle2 { border-top-color: #0078ff; }

/* Preloader Image */
.preloader-img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.preloader-img img { max-width: 55px; }

/* Slick Slide Outline */
.slick-initialized .slick-slide { outline: 0; }

/* Section Padding */
.section-padding { padding: 200px 0; }
@media (max-width: 991px) { .section-padding { padding: 100px 0; } }
@media (max-width: 767px) { .section-padding { padding: 70px 0; } }

/* Padding Bottom */
.padding-bottom { padding-bottom: 100px; }
@media (max-width: 991px) { .padding-bottom { padding-bottom: 50px; } }
@media (max-width: 767px) { .padding-bottom { padding-bottom: 10px; } }

/* Padding Top */
.padding-top { padding-top: 100px; }
@media (max-width: 991px) { .padding-top { padding-top: 70px; } }
@media (max-width: 767px) { .padding-top { padding-top: 70px; } }

/* General Padding with Shadow */
.w-padding { padding: 51px 33px; box-shadow: 0 20px 40px rgba(29, 37, 71, 0.04); }
@media (max-width: 575px) { .w-padding { padding: 31px 13px; } }

/* Testimonial Padding */
.testimonial-padding { padding: 190px 0 170px; }
@media (max-width: 991px) { .testimonial-padding { padding: 70px 0 60px; } }
@media (max-width: 767px) { .testimonial-padding { padding: 60px 0 40px; } }

/* Section Padding 30 */
.section-padding30 { padding: 195px 0 180px; }
@media (max-width: 1199px) { .section-padding30 { padding: 150px 0 140px; } }
@media (max-width: 991px) { .section-padding30 { padding: 100px 0 70px; } }
@media (max-width: 767px) { .section-padding30 { padding: 65px 0 70px; } }

/* Section Padding 40 */
.section-padding40 { padding: 100px 0; }
@media (max-width: 991px) { .section-padding40 { padding: 70px 0; } }
@media (max-width: 767px) { .section-padding40 { padding: 60px 0; } }

/* Padding Bottom Large */
.padding-bottom-large { padding-bottom: 100px; }
@media (max-width: 767px) { .padding-bottom-large { padding-bottom: 60px; } }

/* Padding Top Large */
.padding-top-large { padding-top: 140px; }
@media (max-width: 767px) { .padding-top-large { padding-top: 70px; } }

/* Section Padding Small */
.section-padding-small { padding: 195px 0 90px; }
@media (max-width: 991px) { .section-padding-small { padding: 100px 0 40px; } }

/* Footer Padding */
.footer-padding { padding: 100px 0 13px; }
@media (max-width: 767px) { .footer-padding { padding: 70px 0 0; } }

/* Section Title */
.section-title { margin-bottom: 50px; }

.section-title h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 21px;
}

@media (max-width: 767px) {
  .section-title h2 { font-size: 31px; }
}

/* General Styles */
.header-area {
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
}

.header-area .header-top {
  padding: 9px 130px;
  border-bottom: 1px solid #f0f1f2;
}

.header-area .header-bottom {
  padding: 0 130px;
}

.header-area .header-bottom.header-sticky.sticky-bar .header-right-btn {
  display: none !important;
}

.main-header {
  position: relative;
  z-index: 3;
}

.main-header .main-menu ul li {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin: 0 27px;
}

/* Responsive Styles */
@media (min-width: 1200px) and (max-width: 1600px) {
  .header-area .header-top,
  .header-area .header-bottom {
    padding: 9px 30px;
  }

  .main-header .main-menu ul li {
    margin: 0 14px;
  }

  .main-header .main-menu {
    margin-right: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header-area .header-top,
  .header-area .header-bottom {
    padding: 9px 15px;
  }

  .main-header .main-menu ul li {
    margin: 0 8px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .header-area .header-top,
  .header-area .header-bottom {
    padding: 9px 50px;
  }

  .header-area .header-bottom {
    padding: 15px 50px;
  }

  .header-area .header-bottom.header-sticky.sticky-bar .header-right-btn {
    display: none !important;
  }

  .main-header .main-menu ul li {
    margin: 0 14px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .header-area .header-top {
    padding: 9px 20px;
  }

  .header-area .header-bottom {
    padding: 15px 20px;
  }

  .header-area .header-bottom.header-sticky.sticky-bar .header-right-btn {
    display: none !important;
  }

  .main-header .main-menu ul li {
    margin: 0 14px;
  }
}

@media (max-width: 575px) {
  .header-area .header-top {
    padding: 9px 0;
  }

  .header-area .header-bottom {
    padding: 15px 20px;
  }

  .header-area .header-bottom.header-sticky.sticky-bar .header-right-btn {
    display: none !important;
  }

  .main-header .main-menu ul li {
    margin: 0 14px;
  }
}

/* Header Menu Styles */
.main-header .main-menu ul li a {
  color: #fff;
  font-weight: 600;
  padding: 39px 2px;
  display: block;
  font-size: 20px;
  text-transform: capitalize;
}

.main-header .main-menu ul li:hover > a {
  color: #fff;
}

.main-header .main-menu ul ul.submenu {
  position: absolute;
  width: 170px;
  background: #002088;
  left: 0;
  top: 90%;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  padding: 17px 0;
  transition: 0.3s;
}

.main-header .main-menu ul ul.submenu > li {
  margin-left: 7px;
}

.main-header .main-menu ul ul.submenu > li > a {
  padding: 6px 10px !important;
  font-size: 18px;
  text-decoration: none !important;
}

.main-header .main-menu ul ul.submenu > li > a:hover {
  background: none;
  padding-left: 13px !important;
}

.button-header {
  margin: 0 !important;
}

.button-header.margin-left {
  margin-left: 43px !important;
}

@media (max-width: 991px) {
  .button-header.margin-left {
    margin-left: 0 !important;
    margin-bottom: 8px !important;
  }
}

.main-header ul > li:hover > ul.submenu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

/* Responsive Header Button */
@media (max-width: 991px) {
  .header-right-btn {
    position: absolute;
    bottom: -82px;
    right: 11px;
  }
}

@media (max-width: 575px) {
  .header-right-btn {
    position: absolute;
    bottom: -82px;
    right: 11px;
    margin: 0;
  }
}

/* Transparent Header */
.header-transparent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9;
}

/* Sticky Header */
.header-sticky.sticky-bar.sticky .main-menu ul li a {
  padding: 20px 20px !important;
}

@media (max-width: 991px) {
  .header-sticky.sticky-bar.sticky {
    padding: 15px 0;
  }
}

/* Mobile Menu Styles */
.mobile_menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Override SlickNav’s wrapper */
.mobile_menu .slicknav_menu {
  position: absolute;
  top: 0;
  width: 100%;
  background: transparent !important;
  padding: 0;
  margin: 0 !important;
}

/* The hamburger button */
.mobile_menu .slicknav_menu .slicknav_btn {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 1001;
}

/* White bars on the burger */
.mobile_menu .slicknav_menu .slicknav_btn .slicknav_icon-bar {
  background-color: #fff !important;
}

/* The sliding nav panel */
.mobile_menu .slicknav_menu .slicknav_nav {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 100, 0.9);
  max-height: calc(100vh - 60px); /* reduced top spacing slightly */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  margin: 0 !important;
  padding-bottom: 20px; /* prevent overlap or tight squeeze at bottom */
  box-sizing: border-box;
  z-index: 999;
}

/* Menu item links */
.mobile_menu .slicknav_menu .slicknav_nav a {
  font-size: 15px;
  padding: 10px;
  display: block;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

/* Combine text and "+" icon into one row */
.mobile_menu .slicknav_menu .slicknav_nav .slicknav_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 6px;
  color: #fff;
}

/* Ensure child links have no extra padding */
.mobile_menu .slicknav_menu .slicknav_nav .slicknav_item a {
  padding: 0 !important;
}

/* Prevent 'Sign In' from being styled or shown */
.mobile_menu .slicknav_menu .slicknav_nav li.sign-in-button {
  display: none !important;
}

/* Slider Heights */
.slider-height {
  min-height: 854px;
  background: center/cover no-repeat;
}

@media (max-width: 1199px) {
  .slider-height {
    min-height: 700px;
  }
}

@media (max-width: 991px) {
  .slider-height {
    min-height: 650px;
  }
}

@media (max-width: 575px) {
  .slider-height {
    min-height: 600px;
  }
}

.slider-height2 {
  min-height: 400px;
  background: center/cover no-repeat;
}

@media (max-width: 767px) {
  .slider-height2 {
    min-height: 320px;
  }
}

.slider-height3 {
  min-height: 588px;
  background: center/cover no-repeat;
}

@media (max-width: 1199px) {
  .slider-height3 {
    min-height: 400px;
  }
}

@media (max-width: 991px) {
  .slider-height3 {
    min-height: 500px;
  }
}

@media (max-width: 575px) {
  .slider-height3 {
    min-height: 308px;
  }
}

/* Slider Areas */
.slider-area,.slider-area2 {
  background: url(../img/hero/circuit.png) center/cover no-repeat;
}

.slider-area.slider-area2 {
  background-image: url(../img/hero/header_circuit_2.jpg);
}

.slider-area .hero__caption,.slider-area2 .hero__caption {
  overflow: hidden;
}

.slider-area .hero__caption span,.slider-area2 .hero__caption span {
  color: #ffffff;
  font-size: 60px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 30px;
  display: block;
}

@media (max-width: 575px) {
  .slider-area .hero__caption span,.slider-area2 .hero__caption span {
    font-size: 56px;
  }
}

.slider-area .hero__caption h1,.slider-area2 .hero__caption h1 {
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 22px;
}

@media (max-width: 1199px) {
  .slider-area .hero__caption h1,.slider-area2 .hero__caption h1 {
    font-size: 60px;
    line-height: 1.2;
  }
}

@media (max-width: 991px) {
  .slider-area .hero__caption h1,.slider-area2 .hero__caption h1 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .slider-area .hero__caption h1,.slider-area2 .hero__caption h1 {
    font-size: 28px;
  }
}

.slider-area .hero__caption p,.slider-area2 .hero__caption p {
  color: #fff;
  font-size: 25px;
  margin-bottom: 34px;
}

@media (max-width: 575px) {
  .slider-area .hero__caption p,.slider-area2 .hero__caption p {
    font-size: 16px;
  }
}

.slider-area .hero__caption.hero__caption2,.slider-area2 .hero__caption.hero__caption2 {
  padding-top: 150px;
}

@media (max-width: 767px) {
  .slider-area .hero__caption.hero__caption2,.slider-area2 .hero__caption.hero__caption2 {
    padding-top: 184px;
  }
}

/* Project Screen */
.project-screen {
    margin-top: -500px;
  }
  
  @media (max-width: 1199px) {
    .project-screen {
      margin-top: -416px;
    }
  }
  
  @media (max-width: 991px) {
    .project-screen {
      margin-top: -361px;
    }
  }
  
  @media (max-width: 575px) {
    .project-screen {
      margin-top: -140px;
    }
  }  

/* General Hero Overlay Styles */
.hero-overly, .hero-overly2 {
  position: relative;
  z-index: 1;
}

.hero-overly::before, .hero-overly2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background-repeat: no-repeat;
}

.hero-overly::before {
  background-color: rgba(0, 1, 2, 0.4);
}

.hero-overly2::before {
  background-color: rgba(0, 0, 50, 0.7);
}

/* General Styling for Courses Area */
.courses-area .properties {
    margin: 0 10px; /* Reduced margin for better spacing on smaller screens */
}

.courses-area .properties.properties2 {
    margin-bottom: 25px; /* Slightly reduced for better spacing on smaller screens */
}

.courses-area .properties__card {
    box-shadow: 0 6px 6px rgba(2, 25, 65, 0.08);
    border-radius: 10px;
    transition: all 0.4s ease; /* Smooth transition effect */
}

.courses-area .properties__card:hover {
    box-shadow: 0 10px 10px rgba(2, 25, 65, 0.08); /* Increased hover shadow */
}

.courses-area .properties__img img {
    width: 100%;
    border-radius: 10px 10px 0 0; /* Consistent corner radius */
}

.courses-area .properties__caption {
    padding: 25px 20px; /* Consistent padding */
}

.courses-area .properties__caption h3 {
    font-size: 18px; /* Adjusted for consistency */
    font-weight: 500;
    margin-bottom: 6px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .courses-area .properties__caption h3 {
        font-size: 16px; /* Slightly smaller heading for medium screens */
    }
}

.courses-area .properties__caption h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease; /* Smooth color transition */
}

.courses-area .properties__caption h3 a:hover {
    text-decoration: underline;
    color: #4255A4; /* Unified hover color */
}

.courses-area .properties__caption p {
    color: #6E7697;
}

@media (min-width: 768px) and (max-width: 991px) {
    .courses-area .properties__caption p span {
        font-size: 14px; /* Slightly larger on medium screens */
    }
}

.courses-area .properties__footer {
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

@media (max-width: 575px) {
    .courses-area .properties__footer {
        padding: 15px 10px; /* Reduced padding for mobile */
    }
}

.courses-area .properties__footer .restaurant-name p {
    display: inline-block;
    color: #6E7697;
}

.courses-area .properties__footer .restaurant-name p span {
    font-size: 12px;
}

.courses-area .properties__footer .price span {
    cursor: pointer;
    font-weight: 700;
    color: #4255A4;
    font-size: 22px; /* Slight adjustment */
}

.courses-area .properties:hover .border-btn2 {
    color: #fff;
    transition: all 0.4s ease; /* Smooth transition on hover */
}

/* Slick Slider Arrow Styles */
.courses-actives button.slick-arrow {
    position: absolute;
    border: none;
    padding: 0;
    z-index: 2;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    background: none;
}

.courses-actives button.slick-arrow i {
    font-size: 20px;
    color: #ffffff;
    transition: color 0.3s ease; /* Smooth icon hover transition */
}

.courses-actives button.slick-arrow i:hover {
    color: #4255A4; /* Unified hover color */
}

.courses-actives button.slick-prev {
    left: -48px; /* Adjusted for better layout */
}

.courses-actives button.slick-prev i {
    color: #ddd;
}

.courses-actives button.slick-next {
    right: -48px; /* Adjusted for better layout */
}

.courses-actives button.slick-next i {
    color: #ddd;
}

/* Single Features Styles */
.single-features {
    display: flex;
    align-items: center; /* Ensures vertical alignment of icon and text */
}

.single-features .features-icon img {
    display: block;
}

.single-features .features-caption {
    padding-left: 19px;
}

.single-features .features-caption h3 {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 400;
}

.single-features .features-caption p {
    font-size: 15px;
    line-height: 1.8;
    color: #4255A4; /* Added color for better contrast */
}

/* Topic Area Styles */
.topic-area .single-topic {
    position: relative;
}

.topic-area .single-topic::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: rgba(66, 85, 164, 0.7); /* Subtle background overlay */
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
    border-radius: 12px; /* Rounded corners */
}

.topic-area .single-topic:hover::before {
    opacity: 1; /* Fade-in effect on hover */
}

.topic-area .single-topic .topic-img {
    border-radius: 12px; /* Ensuring images have rounded corners */
}

.topic-area .single-topic .topic-img img {
    width: 100%;
    border-radius: inherit; /* Inheriting border-radius from parent */
}

.topic-area .single-topic .topic-content-box {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
    z-index: 2;
}

.topic-area .single-topic .topic-content {
    position: absolute;
    top: 53%;
    left: 0;
    right: 0;
    transform: translateY(-47%); /* Centers the content within the box */
    text-align: center;
}

.topic-area .single-topic .topic-content h3 a {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: underline;
    transition: color 0.4s ease; /* Smooth color transition on hover */
}

.topic-area .single-topic .topic-content h3 a:hover {
    color: #ddd; /* Lighter color on hover */
}

.topic-area .single-topic .topic-content p {
    font-size: 16px;
    color: #fff;
    padding: 0 82px; /* Adjusted padding for balance */
    line-height: 1.6;
}

@media (max-width: 575px) {
    .topic-area .single-topic .topic-content p {
        padding: 0 18px; /* Reduced padding for smaller screens */
    }
}

/* Footer Background */
.footer-bg {
    background: url(../img/gallery/footer.png) center/cover no-repeat;
    color: #fff;
    padding: 5px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* Footer Paragraphs */
.footer-pera p {
    color: #fff;
    padding-right: 52px;
    font-size: 16px;
    margin-bottom: 50px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .footer-pera p {
        padding-right: 0;
    }
}

.footer-pera.footer-pera2 p {
    padding: 0;
}

/* Footer Titles */
.footer-tittle h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 29px;
    font-weight: 600;
}

.footer-tittle ul {
    list-style: none;
    padding: 0;
}

.footer-tittle ul li {
    margin-bottom: 15px;
}

.footer-tittle ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}

/* Footer Form */
.footer-form {
    margin-top: 40px;
}

.footer-form form {
    position: relative;
}

.footer-form form input {
    width: 100%;
    height: 43px;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 30px;
}

.footer-form .form-icon button {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 13px 22px;
    border-radius: 0 3px 3px 0;
}

/* Footer Bottom Area */
.footer-bottom-area .footer-border {
    padding: 33px 0 20px;
}

.footer-bottom-area .footer-copy-right p {
    color: #fff;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 12px;
}

.footer-bottom-area .footer-copy-right p i {
    color: #C86FFF;
}

/* Footer logo sizing — adjust max-width as needed */
.footer-logo--adjustable img {
  display: block;
  width: 100%;
  max-width: 180px;  /* ← tweak this value */
  height: auto;
  margin: 0 auto;    /* center within its container */
}

/* Login Body */
.login-body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}

/* Login Form */
.login-form {
    width: 100%;
    max-width: 480px;
    padding: 90px 45px 60px;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    text-align: center;
    position: relative;
}

/* Responsive Adjustments */
@media (max-width: 575px) {
    .login-form {
        width: 90%;
        padding: 90px 15px 15px;
    }
}

/* Logo */
.login-form .logo-login img {
    width: 99px;
    height: 95px;
    position: absolute;
    top: -57px;
    left: 50%;
    transform: translateX(-50%);
    border: 15px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.7);
    border-radius: 50%;
}

/* General logo styling */
.logo {
    display: flex;
    align-items: center;
    height: 60px; /* keeps consistent height */
    }

.logo img {
    height: 120px;  /* Set fixed, readable logo height */
    width: auto;
    object-fit: contain;
  }

.logo a {
    display: flex;
    align-items: center;
  }

/* Responsive adjustments */
@media (max-width: 767px) {
    .logo {
      height: 50px;
    }

    .logo img {
      height: 120px;  /* Slightly smaller but still readable */
    }
  }

/* Header */
.login-form h2 {
    color: #fff;
    font-size: 2rem; /* 32px */
    margin-bottom: 40px;
    font-weight: 600;
}

/* Form Inputs */
.login-form .form-input {
    position: relative;
    margin: 20px 0;
}

.login-form .form-input label {
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    display: block;
}

.login-form .form-input input {
    outline: none;
    height: 40px;
    padding: 10px;
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1.125rem; /* 18px */
    color: #fff;
    border-bottom: 1px solid #fff;
}

.login-form .form-input input::placeholder {
    color: #fff;
}

/* Submit Button */
.login-form .form-input input[type="submit"] {
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
    font-size: 1.125rem; /* 18px */
    font-weight: 700;
    border-radius: 1.25rem;
    transition: background-color 0.4s, color 0.4s;
}

.login-form .form-input input[type="submit"]:hover {
    background: #000;
    color: #fff;
}

/* Links */
.login-form .forget,
.login-form .registration {
    display: block;
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 10px;
}

.login-form .forget:hover,
.login-form .registration:hover {
    color: #fff;
}

/* Dropdown Menu Transition */
.dropdown .dropdown-menu {
    transition: all 0.3s;
}

/* Modal Message */
.modal-message .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    max-width: 500px;
    width: 100%;
}

.modal-message .modal-dialog .modal-content .modal-header {
    text-align: center;
    border-bottom: none;
    padding: 50px 0;
    position: relative;
}

.modal-message .modal-dialog .modal-content .modal-header .close {
    position: absolute;
    right: -15px;
    top: -15px;
    padding: 0;
    color: #fff;
    opacity: 1;
    cursor: pointer;
}

.modal-message .modal-dialog .modal-content .modal-header h2 {
    margin: 0;
    padding-bottom: 10px;
}

.modal-message .modal-dialog .modal-content .modal-header p {
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 130px 0 100px;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 70px 0 40px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .contact-section {
        padding: 80px 0 50px;
    }
}

.contact-section .btn_2 {
    background-color: #191d34;
    padding: 18px 60px;
    border-radius: 50px;
    margin-top: 0;
    transition: background-color 0.3s;
}

.contact-section .btn_2:hover {
    background-color: #1f2b7b;
}

/* Breadcrumb */
.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb a {
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
    line-height: 1;
    font-weight: 400;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    color: #fff;
    content: "|";
    font-size: 17px;
    line-height: 1;
    padding: 0 4px 0 8px;
}

/* Flex Center Start */
.flex-center-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Gradient Backgrounds */
.theme-colors,.header-sticky.sticky-bar {
    background: linear-gradient(to bottom, #040d2a 0%, #000064 100%);
}

/* About Area Gradient */
.about-area1 .support-wrapper .left-content1 .about-icon {
    background: linear-gradient(to bottom, #eae2fe 0%, #a376ff 1%, #ea68ff 98%, #ec7dfe 99%, #f3f3fa 99%, #f4f5fa 100%);
}

/* Text Heading */
.text-heading {
    margin-bottom: 30px;
    font-size: 24px;
}

/* Styled Elements */
b, sup, sub, u, del {
    color: #1f2b7b;
}

/* Typography */
.typography h1, .typography h2, .typography h3, .typography h4, .typography h5, .typography h6 {
    color: #828bb2;
}

/* Button Area */
.button-area {
    background: #fff;
}

/* Button Border */
.button-area .border-top-generic {
    padding: 70px 15px;
    border-top: 1px dotted #eee;
}

/* Button Group */
.button-group-area .genric-btn {
    margin-right: 10px;
    margin-top: 10px;
}

.button-group-area .genric-btn:last-child {
    margin-right: 0;
}

/* Select Styles */
.default-select,.form-select {
    height: 40px;
}

.default-select .nice-select,.form-select .nice-select {
    border: none;
    border-radius: 0;
    height: 40px;
    background: #f9f9ff;
    padding-left: 20px;
    padding-right: 40px;
    width: 100%;
}

.default-select .nice-select,.form-select .nice-select {
    padding-left: 20px;
}

.default-select .nice-select .list,.form-select .nice-select .list {
    margin-top: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    padding: 10px 0;
}

.default-select .nice-select .list .option,.form-select .nice-select .list .option {
    font-weight: 300;
    transition: all 0.3s ease;
    line-height: 28px;
    min-height: 28px;
    font-size: 12px;
    padding-left: 20px;
}

.form-select .nice-select .list .option {
    padding-left: 45px;
}

.default-select .nice-select .list .option.selected,.form-select .nice-select .list .option.selected,
.default-select .nice-select .list .option:hover,.form-select .nice-select .list .option:hover {
    color: #1f2b7b;
    background: transparent;
}

.default-select .current,.form-select .current {
    margin-right: 50px;
    font-weight: 300;
}

.default-select .nice-select::after,.form-select .nice-select::after {
    right: 20px;
}

/* Margin and Padding Utilities */
.mt-10 { margin-top: 10px; }
.mb-30 { margin-bottom: 30px; }
.mt-30 { margin-top: 30px; }

/* Section Styling */
.section-top-border {
    padding: 50px 0;
    border-top: 1px dotted #eee;
}

/* Switch Wrap */
.switch-wrap {
    margin-bottom: 10px;
}

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

/* Fonts */
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/static/website/webfonts/JetBrainsMono-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Fira Code';
  src: url('/static/website/webfonts/FiraCode-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Container for code editor */
.code-editor {
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
  border: 1px solid #000;
  width: 95%;
  max-width: 1400px;
}

/* Toolbar */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem;
  width: 100%;
  background-color: #f0f0f0;
  border-bottom: 1px solid #ddd;
  z-index: 1;
  position: relative;
}

.toolbar button,
.toolbar select {
  flex: 1;
  min-width: 120px;
  padding: 0.5rem 1rem;
}

.toolbar-button {
  background-color: #10285d;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.toolbar-button:hover {
  background-color: #1a3a8a;
}

/* Editor layout */
.editor-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  padding: 1rem;
}

.editor {
  flex: 1;
  min-width: 300px;
}

textarea#editor {
  width: 100%;
  height: 100%;
  resize: none;
}

/* Input/Output side panels */
.split-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 300px;
}

.input,
.output {
  flex: 1;
  padding: 1rem;
  border: 2px solid #000;
  background: #fff;
  width: 100%;
  word-wrap: break-word;
}

.input {
  height: 250px; /* fixed panel height */
  display: flex;
  flex-direction: column;
}

/* Lock textarea inside .input to prevent panel growth */
.input textarea {
  width: 100%;
  height: 100%;
  background-color: #e0e0e0; /* gray BG */
  color: #000;              /* black text */
  font-size: 20px;          /* correct font size */
  border: none;
  resize: none;             /* no manual resizing */
  overflow: auto;           /* internal scroll */
  padding: 0.5rem;
}

.output {
  font-size: 1.875rem;
  height: 250px; /* matches input height */
  text-align: justify;
  overflow: auto; /* SCROLL FIXED HERE */
  overflow-wrap: break-word;
  word-break: break-word;
}

.output img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.output button {
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  margin: 0.2rem;
}

.content {
  flex: 1;
  padding: 1.25rem;
}

pre {
  font-family: Consolas, "Courier New", monospace;
  font-size: 20px;
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

/* Loading indicator */
.loading {
  text-align: center;
  padding: 10px;
  font-size: 16px;
  color: #666;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.modal-content {
  display: block;
  margin: 5% auto;
  max-width: 90%;
  max-height: 90%;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* CodeMirror theme and overrides */
.cm-s-monokai.CodeMirror {
  background: #000;
  color: #f8f8f2;
}

/* Fix for line numbers */
.CodeMirror-linenumber {
  color: #636363 !important;
  font-size: 14px !important;
  min-width: 27px;
  padding: 0 8px 0 0;
  text-align: right;
  white-space: nowrap;
}

.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}

.CodeMirror-gutters {
  border-right: 1px solid #333;
  background-color: #1e1e1e;
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
  box-sizing: content-box;
}

/* CodeMirror formatting */
.CodeMirror {
  position: relative;
  background: #1e1e1e;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  color: #fff;
  height: 100vh;
  min-height: 300px;
  max-height: 100vh;
  width: 100% !important;
  z-index: 0;
  line-height: 1.5;
}

.CodeMirror-scroll {
  overflow: auto !important;
  max-height: 100%;
  width: 100%;
}

.CodeMirror-code { outline: none; }

/* Universal wrap for line-breaking */
.CodeMirror,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-lines,
.CodeMirror-line,
.CodeMirror-line > span,
.cm-string, 
.cm-comment, 
.cm-variable, 
.cm-keyword, 
.cm-operator, 
.cm-number, 
.cm-atom, 
.cm-def, 
.cm-property {
  white-space: pre-wrap !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  max-width: 100% !important;
}

/* Syntax highlighting */
.cm-keyword { color: #c792ea; }
.cm-operator { color: #89ddff; }
.cm-variable { color: #f8f8f2; }
.cm-variable-2 { color: #eeffff; }
.cm-def { color: #82aaff; }
.cm-number { color: #ff5572; }
.cm-property { color: #80cbc4; }
.cm-string { color: #c3e88d; }
.cm-comment { color: #546e7a; }
.cm-qualifier { color: #decb6b; }
.cm-builtin { color: #ffcb6b; }
.cm-atom { color: #f78c6c; }
.cm-meta { color: #7986cb; }

/* Cursor */
.CodeMirror-cursor {
  width: 2px !important;
  border-left: 2px solid #fff !important;
}

/* Line highlighting */
.CodeMirror-activeline-background {
  background: rgba(255, 255, 255, 0.1);
}

/* Selection */
.CodeMirror-selected {
  background: rgba(255, 255, 255, 0.2) !important;
}

/* Responsive Styles */
@media (max-width: 1300px) {
  .code-editor,
  .toolbar,
  .editor-container {
    width: 98%;
  }
}

@media (max-width: 768px) {
  .editor-container {
    flex-direction: column;
  }

  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .toolbar button,
  .toolbar select {
    width: 100%;
  }

  .editor,
  .split-container {
    width: 100% !important;
  }

  .input,
  .output {
    max-height: 250px;
  }
}

@media screen and (max-width: 480px) {
  .CodeMirror-code {
    font-size: 14px !important;
  }
  
  .CodeMirror-linenumber {
    font-size: 12px !important;
  }

  .code-editor,
  .toolbar {
    width: 100%;
  }

  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .toolbar button,
  .toolbar select {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}


.form-outline input[type="text"], .form-outline input[type="email"], .form-outline input[type="password"] {
    width: 100%;
    height: 60px;
   /* Adjusted height to make the form bigger */
    font-size: 2rem;
   /* Adjusted font size to make it bigger */
    padding: 15px;
   /* Increased padding for better visibility */
    border-radius: 10px;
   /* Rounded corners */
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
   /* Add shadow */
}

/* Standard Card */
.card {
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    background-color: white; /* White background */
    border: 5px solid black; /* Black border */
}

.card label {
    color: black;
    font-size: 30px;
}

/* Card and Borders */
.movable-border {
  position: relative;
  margin: 40px auto;
  padding: 40px 20px;
  min-height: 400px;
}

.movable-border::before,
.movable-border::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0; /* No background width – border will create the line */
  border: 0;
  z-index: 1;
}

.movable-border::before {
  left: -100px;
  border-left: 20px double #000;  /* Double border effect on the left */
}

.movable-border::after {
  right: -100px;
  border-right: 20px double #000; /* Double border effect on the right */
}

.custom-card {
  position: relative;
  border: 3px solid #000;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 15px;
}

.card-header {
  background-color: #000;
  color: #fff;
  border-bottom: 2px solid #000;
  padding: 15px;
  text-align: center;
}

.card-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
}

.card-body {
  padding: 15px;
}

.card-body img {
  border-radius: 15px;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.custom-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.custom-card:hover img {
  transform: scale(1.05);
}

.section-title h2.line-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-title h2.line-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #000;
  margin: 10px auto 0;
}

/* Margin Bottom */
.mb-4 {
    margin-bottom: 1.5rem; /* Space between cards */
}

/* Form Input */
.form-input {
    display: grid;
    grid-template-columns: auto;
    gap: 10px; /* Adds space between form elements */
}

/* Custom Text Field */
.custom-text-field {
    width: 100%; /* Ensures the text field occupies full width */
    height: 60px; /* Adjust the height of the text field */
    font-size: 24px; /* Adjust the font size */
    padding: 10px; /* Padding inside the text field */
    border-radius: 5px; /* Rounded corners */
    border: 1px solid #ccc; /* Light border color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

.custom-text-field:focus {
    outline: none; /* Remove the default outline on focus */
    border-color: #007bff; /* Change border color on focus */
}

/* Big Text */
.big-text {
    font-size: 16px; /* Adjust font size */
}

/* Updated Professional Full-Stack Web Design Accordion Styles */
.accordion {
  width: 100%;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.accordion-item {
  margin-bottom: 30px;
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #ffffff;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s, border-color 0.3s;
}

.accordion-header:hover {
  background-color: #ffffff;
}

.accordion-title {
  flex: 1;
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
}

.accordion-arrow {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #000000;
  margin-right: 15px;
  transition: transform 0.3s;
}

.accordion-content {
  display: none;
  padding: 20px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-top: none;
  font-size: 28px;
  color: #333;
  line-height: 1.5;
  overflow: visible !important;
  max-height: none !important;
}

.accordion-open .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-open .accordion-content {
  display: block;
}

/* Section Title */
.section-title {
  position: relative;
  text-align: center;
  margin-bottom: 55px; /* Space below the section title */
}

.line-title {
  font-size: 30px; /* Font size for the title */
  color: #000; /* Text color */
  display: inline-block; /* Display as inline-block */
  padding: 0 20px; /* Horizontal padding */
  background: #fff; /* White background */
  position: relative;
  z-index: 1; /* Keep the title above the line */
}

/* Updated pseudo-element using a double border style */
.section-title::before {
  content: "";
  position: absolute;
  top: 30%; /* Position the line vertically */
  left: -100px; /* Extend the line to the left */
  right: -100px; /* Extend the line to the right */
  border-top: 20px double #000; /* Double border effect */
  z-index: 0; /* Keep the line below the title */
}

/* Styles for the details elements */
summary {
    font-size: 15px; /* Font size for summary text */
    font-weight: bold; /* Make the summary text bold */
    cursor: pointer; /* Change cursor to pointer on hover */
    margin: 5px; /* Margin around the summary */
    padding: 10px; /* Padding inside the summary */
    color: white; /* Text color for summary */
    background-color: black; /* Black background for summary */
    border-radius: 5px; /* Rounded corners for the summary */
}

details > p {
    padding: 5px; /* Padding inside the paragraph */
    font-size: 20px; /* Font size for the paragraph */
    font-weight: bold; /* Bold text for the paragraph */
    border: 30px; /* Border around the paragraph */
}

summary:focus,
summary:hover {
    background-color: #333; /* Slightly lighter background color on hover/focus */
}

/* General styles for the assessment question card */
.assessment-question {
    background-color: #ffffff; /* Clean white background */
    border: 4px solid #000000; /* Subtle border for refinement */
    border-radius: 8px; /* Softer rounded corners */
    padding: 20px;
    margin-bottom: 30px; /* Space below each card */
    max-width: 95%; /* Maximum width of the card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Soft shadow for depth */
    box-sizing: border-box; /* Includes padding and border in element’s total width and height */
}

/* Heading style within the assessment question */
.assessment-question h3 {
    font-size: 1.5rem; /* Larger font size for clarity */
    color: #000000;
    margin-bottom: 15px; /* Space below heading */
}

/* Paragraph text style within the assessment question */
.assessment-question p {
    font-size: 1.1rem; /* Slightly larger font size for readability */
    color: #666; /* Lighter color for contrast */
    margin-bottom: 15px; /* Space below paragraph */
}

/* Style for the options list */
.assessment-question .options {
    list-style-type: none;
    padding: 0;
    margin: 0; /* Reset margin for consistency */
}

/* Style for each option */
.assessment-question .options .option {
    display: flex;
    align-items: center;
    margin-bottom: 15px; /* Space between options */
}

/* Image style for options */
.assessment-question .options .option img {
    max-width: 100%; /* Allow the image to scale according to the container width */
    max-height: 65px; /* Set a max height to control the image size */
    width: auto; /* Maintain aspect ratio while scaling */
    height: auto; /* Maintain aspect ratio while scaling */
    margin-right: 20px; /* Space between image and text */
    cursor: pointer;
    transition: opacity 0.3s ease;
    padding: 2px;
    border-radius: 5px; /* Rounded corners for images */
    display: block; /* Ensures the image is displayed as a block element */
}

/* Hover effect for images */
.assessment-question .options .option img:hover {
    opacity: 0.8;
}

/* Style for buttons container */
.buttons-container {
    margin-top: 20px; /* Space above buttons */
    display: flex;
    justify-content: flex-start; /* Align buttons to the left */
    gap: 15px; /* Space between buttons */
}

/* Default button styles */
.buttons-container button {
    padding: var(--button-padding, 12px 24px); /* Adjustable padding */
    font-size: var(--button-font-size, 1rem); /* Adjustable font size */
    cursor: pointer;
    border: none;
    font-size: 15px;
    border-radius: 5px; /* Rounded corners for buttons */
    background-color: var(--button-bg-color, #007bff); /* Default background color */
    color: var(--button-text-color, #ffffff); /* Default text color */
    transition: background-color 0.3s ease;
    height: var(--button-height, 50px); /* Adjustable height */
    width: var(--button-width, auto); /* Adjustable width */
}

/* Hover effect for buttons */
.buttons-container button:hover {
    background-color: var(--button-hover-bg-color, #0056b3); /* Darker color on hover */
}

/* Specific styling for reset and check buttons */
#reset-answer-btn {
    background-color: var(--reset-btn-bg-color, #6c757d); /* Background color for reset button */
}

#check-answer-btn {
    background-color: var(--check-btn-bg-color, #28a745); /* Background color for check button */
}

/* Message style */
.message {
    margin-top: 20px;
    font-size: 1.8rem; /* Slightly smaller font size for better fit */
    text-align: center;
    font-weight: bold;
}

/* Style for correct and incorrect messages */
.message.correct {
    color: #28a745; /* Green for correct messages */
}

.message.incorrect {
    color: #dc3545; /* Red for incorrect messages */
}

/* Style for accordion items */
.accordion-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px; /* Space between accordion items */
}

.accordion-title {
    color: black;
}

/* Style for open accordion content */
.accordion-open .accordion-content {
    display: block;
}

/* Style for option text */
.assessment-question .options .option span {
    font-size: 1.5rem; /* Adjusted text size */
    color: #000000;
    display: flex;
    align-items: center; /* Center text vertically with the image */
}

.flip-card {
  width: 100%;
  max-width: 800px;
  margin-bottom: 60px;
  border: 5px solid black;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

/* Enforce a 16:10 aspect ratio using a pseudo-element */
.flip-card::before {
  content: "";
  display: block;
  padding-top: 62.5%;
}

.flip-card-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.5s;
  transform-style: preserve-3d;
}

.flip-card-inner.flipped {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.flip-card-front {
  background-color: #ffffff;
  color: #000;
  text-align: center;
}

.flip-card-back {
  background-color: #000032;
  color: #fff;
  transform: rotateY(180deg);
  text-align: justify;
}

.flip-card-content {
  padding: 20px;
  flex-grow: 1;
}

.flip-card-footer,
.flip-card-actions {
  padding: 10px;
  background: rgba(0, 0, 0, 0.05);
  text-align: center;
}

/* Common styling for all action buttons */
.copy-button,
.technology-button,
.flip-btn {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.875rem;
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Styling for copy & technology buttons */
.copy-button {
  background-color: #007bff;
  color: #fff;
}

.copy-button:hover {
  background-color: #0056b3;
}

.technology-button {
  background-color: #28a745;
  color: #fff;
}

.technology-button:hover {
  background-color: #218838;
}

/* Flip button uses an image and matches the other buttons */
.flip-btn {
  background-color: #6a6a6a;
  color: #fff;
}

/* Ensure all button images are the same size and centered */
.button-img {
  width: 30px;
  height: 30px;
  display: block;
}

#flashcard-container code {
  font-size: 14px;
  color: #ffffff;
}

.toggle-btn {
  font-weight: bold;
  letter-spacing: 0.5px;
}

.toggle-btn:hover {
  background-color: #0056b3;
  color: white;
}

.code-block {
  background-color: #f8f9fa;
  border-left: 5px solid #007bff;
  padding: 15px;
  border-radius: 5px;
}

/* Styles for the sidebar */
.sidebar-container {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    border-radius: 10px; /* Rounded corners */
    padding: 6px; /* Padding around the content */
    background-color: #dadada; /* Light background for the sidebar */
    margin-top: 20px; /* Space at the top */
}

.sidebar-container details {
    margin-bottom: 10px; /* Space between details elements */
}

.sidebar-container summary {
    background-color: #000000; /* Dark background for summary */
    color: white; /* White text */
}

#custom-message-container {
  position: absolute;
  top: 100px; /* Adjust depending on header height */
  right: 10px;
  z-index: 1000;
}

.custom-message {
  color: white;
  padding: 15px;
  margin: 5px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: block;
  font-size: 20px; /* Adjust font size as needed */
}

.custom-message.success {
  background-color: #28a745; /* Green for success */
}

.custom-message.info {
  background-color: #17a2b8; /* Blue for info */
}

.custom-message.error {
  background-color: #dc3545; /* Red for errors */
}

/* Allow row to wrap so content stacks when needed */
.portal-row {
  display: flex;
  flex-wrap: wrap;
}
/* Sidebar should take full height on larger screens but adjust on smaller ones */
nav.sidebar {
  min-height: 100vh;
}
@media (max-width: 992px) {
  nav.sidebar {
      position: relative !important;
      min-height: auto !important;
  }
}
/* Ensure that main content text wraps */
#mainContent {
  word-wrap: break-word;
}

/* Modern Table Design */
.table {
  border-collapse: collapse;
  width: 100%;
}

.table th,
.table td {
  text-align: center;
  vertical-align: middle;
  padding: 0.75rem;
  border: 1px solid #dee2e6;
}

.table th {
  background-color: #343a40;
  color: #fff;
}

/* Responsive table wrapper */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Ensuring code blocks are responsive and readable */
.code-block pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
  font-family: monospace;
}

/* Equal row height for consistency */
.table tbody tr {
  height: 70px; /* Adjust as needed */
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .table th,
  .table td {
      padding: 0.5rem;
      font-size: 0.9rem;
  }
  .table tbody tr {
      height: auto;
  }
}

/* Additional styling for a modern look */
.modern-table table {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.modern-table table thead {
  background: linear-gradient(45deg, #343a40, #495057);
}

.modern-table table tbody tr:hover {
  background-color: #f1f1f1;
  transition: background-color 0.3s ease;
}

/* Chart Container - makes the chart responsive and fitting */
.chart-container {
    width: 100%;
    height: auto;
    min-height: 400px;  /* Ensures a minimum height for the chart */
}

/* Chart Caption styling to simulate inverse pyramid effect (flipped vertically) */
.chart-caption p {
    font-size: 18px;
    transform: scaleY(-1);
    margin-top: 10px;
}
