html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Lora", serif;
}

.navbar-brand,
.navbar-nav .nav-link,
.hero-content h1,
.hero-content p {
  font-family: "Lora", serif;
}


.navbar-nav .nav-link {

  font-size: 1.2rem;            /* Increase font size */
  padding: 12px 20px;           /* Increase spacing between links */
  margin: 0 5px;                
  /* Reduce spacing */
  color: #000 !important;
  /* Dark Black Color */
  transition: color 0.3s ease-in-out;
}

.navbar {
  transition: all 0.3s ease-in-out;
  background: transparent;
  padding: 10px 0;
  /* Reduce padding */

}

.navbar.scrolled {
  background: white !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  max-height: 60px;
  /* Adjust size */
  width: auto;
  border-radius: 50%;
  /* Make it circular */
}

.navbar-toggler {
  border: none;
  outline: none;
}

@media (max-width: 992px) {
  .navbar {
    padding: 5px 0;
    /* Reduce padding for small screens */
  }

  .navbar-brand img {
    max-height: 80px !important;
    /* Smaller logo on mobile */
  }

  .navbar-collapse {
    text-align: center;
    /* Center the whole menu */
  }

  .navbar-nav {
    width: 100%;
    /* Ensure full width for proper centering */
    justify-content: center !important;
    /* Align items in the center */
    display: flex !important;
  }

  .navbar-nav .nav-item {
    display: inline-block;
    /* Prevent full width items */
  }

  .navbar-toggler {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1050;
  }


}


.hero {
  background: url("assets/hero.avif") no-repeat center center/cover;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}


.text-black {
  color: black !important;
}

.lesson-card {
  background: #eaf6ff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
}

.lesson-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f4c17b;
  padding: 8px 12px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 5px;
}

.lesson-content {
  padding: 20px;
}

.lesson-title {
  font-weight: bold;
  font-size: 20px;
  color: #004a80;
}

.course-list {
  text-align: left;
  margin-top: 10px;
  padding-left: 20px;
}

.course-list li {
  list-style: none;
  padding: 5px 0;
}

.course-list li i {
  color: green;
  margin-right: 5px;
}

.join-btn {
  background: #76bdf7;
  border-radius: 20px;
  padding: 10px 25px;
  font-weight: bold;
  color: black;
  transition: 0.3s;
}

.join-btn:hover {
  background: #004a80;
  color: white;
}

.book-now-btn {
  width: 200px;
  background: white;
  /* border: 2px solid white; */
  border-radius: 30px;
  /* Adjust for rounded edges */
  color: black;
  /* transition: all 0.3s ease-in-out; */
}

/* .book-now-btn:hover {
  background: white;
  color: black;
} */

.svg-decoration {
  width: 150px;
  margin: 1px 0 15px;
}

.small-image {
  width: 150px;
  height: auto;
}

.course-card {
  border-radius: 20px;
  /* Rounded corners */
  overflow: hidden;
  /* Ensures border-radius applies properly */
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-card img {
  width: 100%;
  height: 300px;
  /* Adjust the image height */
  object-fit: cover;
  /* Ensures proper scaling */
  border-radius: 20px;
}

p.text-muted {
  font-size: 14px;
  /* Slightly smaller text for a neat look */
  max-width: 80%;
  /* Keeps text width balanced */
  margin: 0 auto;
  /* Centers the text */
}

.custom-btn {
  background-color: white;
  color: #007bff;
  /* Bootstrap primary blue */
  border: 2px solid #007bff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  width: 300px;
  transition: all 0.3s ease-in-out;
}

.custom-btn:hover {
  background-color: #007bff;
  color: white;
}

.blog-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.blog-text {
  max-width: 350px;
}

.blog-carousel {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  max-width: 700px;
  /* Ensuring only 2 cards are visible */
}

.blog-cards {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.blog-card {
  flex: 0 0 330px;
  border-radius: 15px;
  background: #d7ecff;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 20px;
  text-align: left;
}

.blog-card h5 {
  font-weight: bold;
}

.blog-card a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.blog-card a:hover {
  text-decoration: underline;
}

.blog-controls {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.control-btn {
  background-color: white;
  border: 1px solid #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.control-btn:hover {
  background-color: #007bff;
  color: white;
}

.control-btns {
  background-color: white;
  border: 1px solid #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.control-btns:hover {
  background-color: #007bff;
  color: white;
}

footer {
  background-color: #343a40;
}

footer h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

footer p {
  font-size: 0.875rem;
}

.social-icons a {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  footer .row>div {
    text-align: center;
    margin-bottom: 20px;
  }

  .social-icons {
    margin-top: 15px;
  }
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  /* Initially hidden */
}

/* For smooth fade-in */
.loader-container.show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

/* You can use a custom image, such as a GIF or SVG, that represents kitesurfing */
.loader-img {
  width: 100px;
  height: 100px;
  animation: spin 2s infinite linear;
}

/* Animation for rotating the loader */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.gallery-container {
  max-width: 100%;
  padding: 0;
  overflow: hidden;
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* Add spacing between images */
}

.gallery-item {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  /* Optional rounded corners */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Custom Grid Layout */
/* Row 1 */
.gallery-item:nth-child(1) {
  flex: 2 0 calc(50% - 10px);
  height: 400px;
}

/* Big Image */
.gallery-item:nth-child(2) {
  flex: 1 0 calc(25% - 10px);
  height: 400px;
}

/* Square */
.gallery-item:nth-child(3) {
  flex: 1 0 calc(25% - 10px);
  height: 400px;
}

/* Wide Rectangle */

/* Row 2 */
.gallery-item:nth-child(4) {
  flex: 1 0 calc(30% - 10px);
  height: 300px;
}

/* Small Rectangle */
.gallery-item:nth-child(5) {
  flex: 2 0 calc(70% - 10px);
  height: 300px;
}

/* Big Rectangle */

/* Responsive Adjustments */
@media (max-width: 992px) {
  .gallery-item {
    flex: 1 0 calc(50% - 10px);
    height: 250px;
  }
}

@media (max-width: 768px) {
  .gallery-item {
    flex: 1 0 100%;
    height: 200px;
  }
} 

/* kitesurfcourses */
/* 
.ks {
  background: url("assets/Add a subheading (12).png") no-repeat center center/cover;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
} */
.ks {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ks .z-1 {
  z-index: 1;
}



.abtn {
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  background-color: #007bff;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
  transition: all 0.3s ease-in-out;
}

.abtn:hover {
  background-color: #0056b3;
  box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
  transform: translateY(-2px);
}

   #phone {
    width: 610px;  /* Ensure it spans the full width */
    border-radius: 50px;  /* To match rounded-pill */
    padding: 10px 20px;  /* Adjust padding as needed */
    height: 40px;  /* Adjust the height as needed */
}

/* Override any unwanted background, border, or padding applied by intl-tel-input */
.iti__country, .iti__selected-flag {
    height: 100%;  /* Adjust the flag dropdown to fit the input */
    border-radius: 50px;  /* Make the flag icon match rounded corners */
}

.iti__flag-container {
    height: 100%;
}

/* Optional: Adjust the dropdown icon size */
.iti__arrow {
    margin-top: 6px;
}  





/* sup */

