/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #FFFFFF;
  --primary-color: #0d4c92;
  --secondary-color: #ffc107;
  --section-bg-color: #F9F9F9;
  --dark-color: #000000;
  --title-color: #565758;
  --news-title-color: #292828;
  --p-color: #717275;
  --border-color: #eaeaea;
  --border-radius-default: .25rem;

  --body-font-family: 'Montserrat', sans-serif;

  --h1-font-size: 4.75rem;
  /* 76px / 16 */
  --h2-font-size: 3.5rem;
  /* 56px / 16 */
  --h3-font-size: 2.625rem;
  /* 42px / 16 */
  --h4-font-size: 1.75rem;
  /* 28px / 16 */
  --h5-font-size: 1.625rem;
  /* 26px / 16 */
  --h6-font-size: 1.375rem;
  /* 22px / 16 */

  --p-font-size: 1.125rem;
  /* 18px / 16 */
  --menu-font-size: 1.125rem;
  /* 18px / 16 */
  --category-font-size: 0.875rem;
  /* 14px / 16 */

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

/* * {
  overflow-x: hidden;
} */

body {
  background: var(--white-color);
  font-family: var(--body-font-family);
  position: relative;
  overflow-x: hidden;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1,
h2 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p,
.list .list-item {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}


a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

.form-label {
  color: var(--p-color);
  font-weight: var(--font-weight-semibold);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  CUSTOM BUTTON              
-----------------------------------------*/
.custom-btn {
  border: 0;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: var(--menu-font-size);
  padding: 10px 35px;
}

.custom-link {
  color: var(--primary-color);
  font-size: var(--category-font-size);
  font-weight: var(--font-weight-bold);
  /* text-transform: uppercase; */
  position: relative;
}

.custom-link i {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 100%;
  transition: all 0.3s;
  line-height: normal;
}

.custom-link:hover i {
  opacity: 1;
  left: 101%;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 10px 15px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: background 0.3s, transform 0.3s;
}

.scroll-top:hover {
  color: var(--white-color);
  /* Change to desired hover color */
  transform: scale(1.1);
  /* Slightly scale up on hover */
}

.scroll-top i {
  font-size: 20px;
}

.pop-up {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--white-color);
  color: var(--primary-color);
  padding: 10px 15px;
  /* border-radius: 50%; */
  /* display: none; */
  align-items: center;
  justify-content: center;
  z-index: 1000;
  /* text-decoration: italic; */
  font-style: italic;
  border: none;
  transition: background 0.3s, transform 0.3s transparent;
  cursor: pointer;
}

.pop-up:hover {
  color: red;
  /* Change to desired hover color */
  transform: scale(1.1);
  /* Slightly scale up on hover */
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  z-index: 9;
  background: var(--white-color);
  padding-top: 20px;
  padding-bottom: 20px;
  justify-items: center;
  align-items: center;
  flex: auto;

}

.navbar-brand {
  color: var(--dark-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  margin-right: 0;
}

.container .logo1 img {
  width: 170px;
}

.navbar-nav {
  margin-top: 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.navbar-expand-lg .nav-link {
  color: var(--p-color);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-nav .nav-link.active,
.nav-link:focus,
.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:focus {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;

}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;

}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 10rem;
  padding-bottom: 10rem;
  text-align: center;
  position: relative;
}

.site-header .container {
  position: relative;
  z-index: 2;
}

.site-news-detail-header {
  background: transparent;
  text-align: left;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.site-about-header {
  background-image: url('../images/About/hero.jpg');
}

.site-menu-header {
  background-image: url('../images/Events/hero.jpg');
}

.site-news-header {
  background-image: url('../images/library/digital-physical-library.jpg');
}

.site-contact-header {
  background-image: url('../images/library/depositphotos_41018917-stock-photo-businessman-push-to-contact-us.jpg');
}

.site-news-detail-header {
  background-image: url('../images/library/Free-T-Shirt-PSD-Mockup.jpg');
}



.overlay {
  background: linear-gradient(to top, var(--dark-color), transparent 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 20.542rem;
  padding-bottom: 20.542rem;
}

.hero .container {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  HERO SLIDE               
-----------------------------------------*/
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-thumb {
  position: relative;
}

.carousel-caption {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  text-align: left;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 40px;
}

.hero-carousel .reviews-text,
.hero-text {
  color: var(--white-color);
}

.price-tag {
  background: var(--white-color);
  border-radius: 100px;
  color: var(--secondary-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-semibold);
  display: inline-block;
  width: 84px;
  height: 64px;
  line-height: 64px;
  text-align: center;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  position: absolute;
  top: auto;
  bottom: 0;
  opacity: 1;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  background: var(--secondary-color);
  width: 60px;
  height: 60px;
  text-align: center;
}

.hero-carousel .carousel-control-prev {
  left: auto;
  right: 60px;
}

.hero-carousel .carousel-control-next {
  background: var(--primary-color);
  right: 0;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background: var(--dark-color);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  background-image: none;
  width: inherit;
  height: inherit;
  line-height: 60px;
}

.hero-carousel .carousel-control-prev-icon::before,
.hero-carousel .carousel-control-next-icon::before {
  font-family: bootstrap-icons;
  display: block;
  margin: auto;
  font-size: var(--h5-font-size);
  color: var(--white-color);
}

.hero-carousel .carousel-control-prev-icon::before {
  content: "\f13f";
}

.hero-carousel .carousel-control-next-icon::before {
  content: "\f144";
}

.reviews-icon {
  color: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM CIRCLE IMAGES               
-----------------------------------------*/

.custom-circle-image {
  border-radius: 100px;
  width: 55px;
  height: 55px;
}

.custom-circle-image.team-image {
  width: 85px;
  height: 85px;
}

/*---------------------------------------
  TESTIMONIAL               
-----------------------------------------*/
.slick-testimonial .slick-list,
.slick-testimonial .slick-track {
  height: 100%;
}

.slick-testimonial {
  margin: auto;
  align-items: center;
  justify-content: center;
}

.slick-testimonial-client {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-testimonial-caption {
  quotes: "❝" "❞";
  position: relative;
  padding: 5rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.slick-testimonial-caption::before {
  content: open-quote;
  display: inline-block;
  color: var(--primary-color);
  font-family: auto;
  font-size: 100px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-testimonial .slick-dots {
  text-align: center;
}

.slick-testimonial .slick-dots li {
  background: var(--p-color);
  display: inline-block;
  vertical-align: top;
  width: 16%;
  height: 3px;
}

.slick-testimonial .slick-dots button {
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

.slick-testimonial .slick-dots li:hover,
.slick-testimonial .slick-dots .slick-active {
  background: var(--secondary-color);
}

.lead {
  font-size: 1.5rem;
  font-weight: var(--font-weight-light);
}

/*---------------------------------------
  MENU               
-----------------------------------------*/
.menu,
.about,
.news,
.related-news,
.newsletter,
.comments {
  background: var(--section-bg-color);
}

.rectangle1 {
  background: var(--primary-color);
  border-radius: 20px;
  margin-bottom: 24px;
  padding: 40px;
  position: relative;
  max-width: 100%;
  /* overflow-x: hidden; */
}

.rounded-rectangle1 {
  border-radius: 20px;
  /* position: absolute; */
  /* left: 1062px;
  top: 543px; */
  object-fit: cover;
  width: 100%;
  height: 100%;
  /* z-index: 6; */
}

.about-image-wrap {
  /* border-radius: 50px; */
  position: absolute;
  display: flex;
  /* overflow: hidden; */
  right: 0;
  transform: translate(-20%, -65%);
  /* bottom: 0; */
}


.about-image-info {
  margin-top: 25px;
}

.about-image-info h6 {
  margin-bottom: 0px;
  /* Adjusts spacing below the h6 */
}

.front-product {
  /* background: var(--dark-color); */
  background: linear-gradient(60deg, var(--secondary-color), var(--primary-color));
}


.about-image-info p {
  margin-top: 0;
  /* Removes default margin above the paragraph */
}

.menu-thumb {
  position: relative;
  overflow: hidden;
}

.menu-info {
  padding: 20px 20px 30px 20px;
}

.menu-image {
  display: block;
}

.menu-image-wrap {
  position: relative;
}

.menu-tag {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.custom-modal-btn {
  background: var(--white-color);
  color: var(--primary-color);
  position: absolute;
  top: 50px;
  right: 40px;
  bottom: 0;
  /* margin: auto 32px; */
  width: 42px;
  height: 42px;
}

.exec h3 {
  font-weight: var(--font-weight-bold);
}

.team-thumb {
  background: var(--white-color);
  position: relative;
  border-radius: 0.25rem;
  padding: 42px 32px;
  /* margin: 0.75rem 0; */
}

.team-thum {
  background: var(--section-bg-color);
  position: relative;
  border-radius: 0.25rem;
  padding: 42px 32px;
  /* margin: 0.75rem 0; */
}

.view-all {
  text-transform: uppercase;
  color: var(--p-color);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  border-bottom: 2px solid var(--p-color);
  padding-bottom: 6px;
}

.modal-body {
  padding: 4rem;
}

.modal-header {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.modal-header .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  margin: 32px;
}

.newsletter-image {
  border-radius: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  max-width: 450px;
  max-height: 450px;
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  overflow-x: hidden;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
}

.accordion-header {
  /* background-color: var(--primary-color); */
  font-weight: var(--font-weight-bold);
}

.accordion-button {
  /* background-color: var(--primary-color); */
  /* color: var(--white-color); */
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  border-bottom: 2px solid #ddd;
  transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: none;
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  color: var(--p-color);
  font-size: var(--p-font-size);
  padding: 1.5rem;
  border-bottom: 2px solid #ddd;
}

.accordion-button::after {
  font-family: 'Font Awesome 5 Free';
  content: "\f107";
  /* Font Awesome down arrow */
  font-weight: 900;
  /* color: var(--white-color); */
  margin-left: auto;
}

.accordion-button:not(.collapsed)::after {
  content: "\f106";
  /* Font Awesome up arrow */
  color: var(--dark-color);
}

.accordion-item:last-child .accordion-body {
  border-bottom-left-radius: var(--border-radius-default);
  border-bottom-right-radius: var(--border-radius-default);
}

/* Custom styles for accordion buttons */
.custom-accordion-button {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  /* Ensure text aligns to the left */
}

.custom-accordion-button:focus {
  outline: none;
}

.custom-accordion-button::after {
  display: none;
  /* Remove the default caret */
}

.custom-accordion-button i {
  font-size: 1.25rem;
}

.PQ {
  background-color: #F9F9F9;
  padding: 4px;
}

/* recaptcha */
#g-recaptcha-response {
  display: block !important;
  position: absolute;
  margin: -50px 0 0 0 !important;
  z-index: -999999;
  opacity: 0;
}

/* Countdown Container */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* font-family: 'Arial', sans-serif; */
  padding: 20px;
  /* Main background color */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Individual Time Boxes */
.countdown .time {
  text-align: center;
  color: #ffffff;
  /* White text for contrast */
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  /* Slightly transparent background */
  border: 2px solid #ffffff;
  border-radius: 8px;
  /* width: 70px; */
  transition: transform 0.3s ease;
}

.countdown .time:hover {
  transform: scale(1.2);
  /* Slight zoom effect on hover */
}

/* Numbers */
.countdown .time h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  color: var(--white-color);
}

.cdh {
  color: var(--white-color);
}

/* Labels */
.countdown .time small {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: 5px;
  color: #d4d4d4;
  /* Lighter text for labels */
}

/* Leaderboard */
.game {
  background: rgba(0, 0, 0, 0.8);
}

#leaderboard {
  background: rgba(0, 0, 0, 0.8);
  /* Semi-transparent background */
  border-radius: 15px;
  /* Rounded corners */
  padding: 20px;
  /* Padding inside the container */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  /* Subtle shadow */
  margin: 20px auto;
  /* Center the leaderboard */
  max-width: 600px;
  /* Maximum width */
}

#leaderboard h3 {
  font-family: 'Aldrich', sans-serif;
  /* Custom font */
  font-size: 2rem;
  /* Larger font size */
  color: #ffcc00;
  /* Gold color */
  margin-bottom: 20px;
  /* Space below the heading */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* Text shadow */
}

#leaderboardList {
  list-style: none;
  /* Remove default list styling */
  padding: 0;
  /* Remove default padding */
  margin: 0;
  /* Remove default margin */
}

#leaderboardList li {
  font-family: 'Aldrich', sans-serif;
  /* Custom font */
  font-size: 1.2rem;
  /* Font size */
  color: #ffffff;
  /* White color */
  background: rgba(255, 255, 255, 0.1);
  /* Semi-transparent background */
  padding: 10px 15px;
  /* Padding inside each list item */
  margin-bottom: 10px;
  /* Space between list items */
  border-radius: 10px;
  /* Rounded corners */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  /* Text shadow */
  transition: background 0.3s ease;
  /* Smooth background transition */
}

#leaderboardList li:hover {
  background: rgba(255, 255, 255, 0.2);
  /* Slightly darker background on hover */
}

/*---------------------------------------
  cgpa               
-----------------------------------------*/
.cgpa {
  background: var(--section-bg-color);
}

.news-thumb {
  position: relative;
  overflow: hidden;
  border: 1px var(--border-color) solid;
  border-radius: var(--border-radius-default);
  transition: all 0.3s ease-out;
}

.news-thumb>a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.news-thumb:hover {
  box-shadow: 2px 0px 8px rgba(0, 0, 0, 0.2);
}



.news-text-info {
  /* background: var(--section-bg-color); */
  position: relative;
  z-index: 2;
  padding: 15px;
  transition: all 0.3s ease-out;
}

.related-news .news-text-info {
  background: var(--white-color);
}

.news-text-info-large {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
}

.paid-ad-label {
  /* background: linear-gradient(to top, var(--dark-color), transparent 90%); */
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  pointer-events: none;
}

.news-text-info-large .news-title-link {
  color: var(--white-color);
}

.news-title-link {
  color: var(--news-title-color);
}

.news-image {
  display: block;
  width: 100%;
  /* transition: all 0.3s ease-out; */
}

.news-image:hover {
  /* transform: scale(1.2); */
}

.category-tag,
.menu-tag {
  background: var(--dark-color);
  border-radius: var(--border-radius-default);
  color: var(--white-color);
  font-size: var(--category-font-size);
  display: inline-block;
  padding: 4px 12px;
}

.category-tag1 {
  background: var(--white-color);
  border-radius: var(--border-radius-default);
  color: var(--dark-color);
  font-size: var(--category-font-size);
  display: inline-block;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  left: 0;
  margin: 20px;
  /* justify-content: center; */
  text-align: center;

}

.event-date {
  font-size: 22px;
}

.event-month {
  font-size: 14px;
  display: block;
  margin-top: -8px;
  font-weight: 600;
}

.event-time {
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.event-venue {
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.icon-thick {
  font-weight: 800;
}

.comment-form {
  margin-bottom: 60px;
}

.news-author {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}

.news-author:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-author-image {
  border-radius: 100px;
  object-fit: cover;
  width: 70px;
  height: 70px;
}



/*---------------------------------------
  CLIENTS              
-----------------------------------------*/

/* Clients Section */
.clients-item-height {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  /* Add padding for better spacing */
}

.clients-image {
  display: block;
  max-width: 100px;
  margin: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Smooth transition for transform and box-shadow */
}

.clients-image:hover {
  transform: scale(1.2);
  /* Slightly reduce the scale for a more subtle effect */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
  /* Add a shadow effect on hover */
}

/*---------------------------------------
  CUSTOM FORM            
-----------------------------------------*/
.custom-form .form-control {
  margin-bottom: 20px;
  padding: 14px 10px;
  transition: all 0.3s;
}

.custom-form button[type="submit"] {
  background: var(--dark-color);
  border: 0;
  color: var(--white-color);
  text-transform: uppercase;
}

.custom-form button[type="submit"]:hover {
  background: var(--primary-color);
}


/*---------------------------------------
  SUBSCRIBE FORM            
-----------------------------------------*/
.subscribe-form .form-control {
  margin-top: 20px;
  margin-bottom: 10px;
}


/*---------------------------------------
  BOOKING FORM            
-----------------------------------------*/
/* Custom styles for modal tabs */
.nav-tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: none;
  margin-bottom: 20px;
  gap: 2rem;
}

.nav-tabs .nav-item {
  /* margin-right: 10px; */
  flex: 1;
}

.nav-tabs .nav-link {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 20px;
  transition: border-color 0.3s ease;
  display: block;
  text-align: center;
}

.nav-tabs .nav-link.active {
  border: 3px solid var(--primary-color);
  background-color: #f8f9fa;
  color: var(--primary-color);
}

.nav-tabs .nav-link:not(.active) {
  border-color: #ccc;
  background-color: #fff;
  color: #000;
}

.nav-tabs .nav-link:hover {
  border-color: var(--primary-color);
}



#BookingModal .modal-content {
  border: 0;
  overflow: hidden;
}


#BookingModal .modal-header {
  border-bottom: 0;
  position: relative;
  padding: 26px 32px 0 32px;
}

/* #BookingModal .modal-body {
  padding: 38px 32px;
  padding-right: 35%;
} */

#BookingModal .modal-footer {
  border-top: 0;
  padding: 0;
}

#BookingModal2 .modal-content {
  border: 0;
  overflow: hidden;
}


#BookingModal2 .modal-header {
  border-bottom: 0;
  position: relative;
  padding: 26px 32px 0 32px;
}

/* #BookingModal .modal-body {
  padding: 38px 32px;
  padding-right: 35%;
} */

#BookingModal2 .modal-footer {
  border-top: 0;
  padding: 0;
}

/* Custom styles for dot list */
.dot-list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: inherit;
  /* Inherit font size from parent */
  color: inherit;
  /* Inherit color from parent */
}

.dot-list li {
  margin-bottom: 10px;
}




.membership .form-control {
  background: var(--primary-color);
  border: 0;
  font-weight: var(--font-weight-semibold);
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 0;
}

.membership .form-control:hover {
  background: var(--dark-color);
  color: var(--white-color);
}

.BgImage {
  background-image: url('../images/cover.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 500px;
}


/*---------------------------------------
  FOOTER              
-----------------------------------------*/
.site-footer {
  background-image: url('../images/footerimage.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
}

.site-footer::before {
  content: "";
  background: linear-gradient(to top, var(--dark-color), transparent 200%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.site-footer .container {
  position: relative;
}

.spe-mt30 {
  margin-top: 30px;
}

.spe-mt60 {
  margin-top: 60px;
}

.copyright-text {
  font-size: var(--category-font-size);
}

.links {
  color: var(--p-color);

}

.links i {
  padding-right: 0.5rem;
}

.links:hover i {
  padding-right: 1.5rem;
}

.site-footer a:hover {
  color: var(--white-color);
}

.site-footer a {
  color: #AAA;
  ;
}

.site-footer p {
  color: #AAA;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
  transition: all 0.3s;
}

.social-icon:hover li:not(:hover) {
  opacity: 0.65;
}

.social-icon-link {
  color: var(--p-color);
  font-size: var(--p-font-size);
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1180px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 1170px) {
  h1 {
    font-size: 56px;
  }
}


@media screen and (max-width: 991px) {
  .container {
    overflow: hidden;
  }

  .container.no-overflow {
    overflow: visible;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .lead {
    font-size: 1rem;
    font-weight: var(--font-weight-light);
  }

  .site-header,
  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .navbar {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .navbar-nav .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-nav .nav-link.active,
  .nav-link:focus,
  .nav-link:hover {
    color: var(--white-color);
  }

  .nav-link:focus {
    color: var(--white-color);
  }

  .nav-border {
    background: var(--primary-color);
    /* border-bottom: var(--primary-color) 3px solid; */
    /* width: 6px; */
  }

  .about-image-info {
    text-align: center;
  }

  .about-image-wrap {
    /* transform: translate(10%, -15%); */
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
    max-width: 100%;
  }

  .rounded-rectangle1 {
    top: 543px;
    width: 70%;
    height: 70%;
    z-index: 6;
  }

  .front-product {
    /* background: var(--dark-color); */
    background: linear-gradient(60deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
  }

  .social-login,
  .div-separator {
    width: 75% !important;
  }

  .slick-testimonial-caption {
    padding: 6rem 3rem 4rem 3rem;
  }

  .slick-slideshow .slick-dots li {
    width: 25px;
    height: 25px;
  }

  .faq .accordion-body {
    padding: 15px;
  }

  .faq .accordion-button {
    /* font-size: 14px; */
    padding: 10px;
  }

  .faq .accordion-item {
    margin-bottom: 5px;
  }

  .modal-header {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .modal-body {
    padding: 2rem;
  }

  #BookingModal .modal-content {
    padding-bottom: 200px;
  }

  #BookingModal .modal-content::before {
    background-image: url('../images/sincerely-media-HoEYgBL_Gcs-unsplash-mobile.jpg');
    background-position: bottom;
    top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    transform: rotate(180deg);
  }

  #BookingModal .modal-body {
    padding-top: 18px;
    padding-right: 32px;
  }
}

@media screen and (max-width: 480px) {
  .newsletter-image {
    max-width: 310px;
    max-height: 310px;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
  }
}