@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: "Jost", sans-serif;
}

.orange:hover {
  background-color: #ff681a !important;
}

.Skyblue:hover {
  background-color: #31d2f2 !important;
}

.orange-color:hover {
  color: #ff681a !important;
}

.Skyblue-color:hover {
  color: #31d2f2 !important;
}

::placeholder {
  color: rgb(26, 4, 4) !important;
  opacity: 1 !important;
}


.nav-item.dropdown {
  position: relative;
}

/* Fix navigation layering issue */
.bg-light.position-sticky {
  z-index: 1030 !important;
}

.box-card:hover {
  scale: 1.0
}

.nav-item.dropdown .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 75px;
  left: 0;
  border: 0px;
  z-index: 9999;
  background-color: white;
  border-bottom: 3px solid #ff6600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  transform: translateY(30px);
  padding: 20px 30px;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link {
  transition: color 0.3s ease;
}

/* Main nav menu item color change on hover and when dropdown active */
.nav-item.dropdown:hover>.nav-link,
.nav-item.dropdown:focus-within>.nav-link {
  color: #31d2f2 !important;
}

.dropdown-menu li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.dropdown-menu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 3px solid #ff6600;
  border-radius: 50%;
}

.dropdown-menu li:hover {
  color: #31d2f2;
  background-color: white;
}

.dropdown-menu li:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 30px;
  width: 70%;
  height: 2px;
  background-color: #31d2f2;
}

.bg-img {
    background-image: url(../images/breadcumb-bg.jpg);
    background-size: cover;
    width: 100%;
    height: 70vh;
    background-repeat: no-repeat;
}

/* about section */

.image-container {
    position: relative;
    display: flex;
    gap: 20px;
  }
  
  .image-container img:first-child {
    width: 80%;
    border-radius: 60px 0 0 60px;
  }
  
  .circle-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    right: 10px;
    top: 50px;
    border: 50px solid #fff;
    z-index: 2;
  }
  
  .orange-card,
  .skyblue-card {
    position: absolute;
    color: #fff;
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
  }
  
  .orange-card {
    padding: 34px 74px;
    background-color: #ff6f00;
    top: -50px;
    right: 40px;
    border: 10px solid white;
  }
  
  .skyblue-card {
    background-color: #00bcd4;
    padding: 34px 64px;
    bottom: -20px;
    right: 100px;
    border: 10px solid white;
  }
  /* offer section */

.offer-section {
    background: linear-gradient(rgba(255, 101, 0, 0.6), rgba(255, 101, 0, 0.6)), url('../images/offer-bg.jpg') center/cover no-repeat;
    padding: 100px 0;
    color: white;
    position: relative;
  }
  
  .offer-content h1 {
    font-size: 60px;
    font-weight: bold;
  }
  
  .offer-content p {
    font-size: 20px;
    max-width: 500px;
  }
  
  .offer-content h4 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  
  .offer-images img {
    width: 420px;
    height: auto;
  }
  
  .big-offer-text {
    font-size: 180px;
    font-weight: bold;
    color: white;
    line-height: 0.9;
  }
  /* Footer section */

.footer {
    background: url('../images/testimonial-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 0;
  }
  
  .footer a {
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: margin-left 0.3s ease, color 0.3s ease;
  }
  
  .footer a:hover {
    color: #e65c00;
    margin-left: 8px;
  }
  
  .footer-icons a {
    font-size: 1.5rem;
    padding: 10px;
    margin: 0 10px;
    border: 1px solid wheat;
    border-radius: 50%;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  
  .footer-icons a:hover {
    background-color: #e65c00;
    color: white;
    border-color: #e65c00;
    text-decoration: none;
  }
  
  .nav-icons:hover {
    margin-right: 20px;
  }
  
  .input {
    width: 100%;
    padding: 6px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    outline: none;
    
  }
  
  .input:focus {
    outline: 2px solid #e65c00;
    border-color: #e65c00;
  }
  
  .subscribe-btn {
    background-color: #e65c00;
    border: none;
    padding: 10px 20px;
    color: white;
    margin-top: 10px;
  }
  
  .subscribe-btn:hover {
    background-color: #00bcd4;
  }
  
  .underline {
    position: relative;
    width: 80px;
    height: 3px;
    background-color: #e65c00;
    margin: 10px 0px;
  }
  
  /* Center white part */
  .underline::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Moving Circle */
  .circle {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: moveCircle 2s infinite alternate ease-in-out;
  }
  
  @keyframes moveCircle {
    0% {
      left: 0;
    }
  
    100% {
      left: calc(100% - 12px);
    }
  }  
  
/* 📌 Offcanvas Design */
.offcanvas {
  z-index: 1055 !important;
}

  .offcanvas-header {
  background: #ffefe2;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-logo {
  width: 120px;
}

/* 📌 Menu List */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-link {
  font-size: 18px;
  font-weight: 600;
  color: black;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
}

/* 📌 Submenu Styling */
.sub-menu {
  list-style: none;
  padding-left: 20px;
}

.sub-menu a {
  font-size: 16px;
  padding: 5px 0;
  color: #444;
  display: block;
}

/* 📌 Plus Icon */
.bi-plus {
  font-size: 20px;
  color: #ff681a;
}

/* About Page Specific Styles */
.awesome-text {
  color: #000000;
  font-weight: bold;
  font-size: 20px;
}

.description-text {
  font-size: 16px;
  color: #555;
  max-width: 800px;
  margin: auto;
}

.underline {
  position: relative;
  width: 80px;
  height: 3px;
  background-color: #e65c00;
  margin: 10px 0px;
}

.underline::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
}

.circle {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: moveCircle 2s infinite alternate ease-in-out;
}

@keyframes moveCircle {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% - 12px);
  }
}

/* Our vision section */
.vision-title {
  font-size: 2.5rem;
  color: #ff4500;
  font-weight: 700;
  position: relative;
}

.vision-title::after {
  content: '';
  width: 70px;
  height: 4px;
  background: #ff4500;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.vision-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-top: 10px;
}

.vision-content {
  background: #fff;
  border-left: 5px solid #ff4500;
  padding: 30px;
}

/* our mission section */
.mission-title {
  font-size: 2.5rem;
  color: #00d2f3;
  font-weight: 700;
  position: relative;
}

.mission-title::after {
  content: '';
  width: 70px;
  height: 4px;
  background: #00d2f3;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.mission-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-top: 10px;
}

.mission-content {
  background: #fff;
  border-left: 5px solid #00d2f3;
  padding: 30px;
}

/* Why choose us */
.icon-box {
  border: 1px dashed #ffa500;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff7f50, #ff4500);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.icon-box:hover {
  transform: translateY(-5px);
  background: #00d2f3 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin: 0 auto 15px;
  position: relative;
}

.icon-circle::before,
.icon-circle::after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #00d2f3;
  border-radius: 50%;
  position: absolute;
}

.icon-circle::before {
  top: 0;
  left: 0;
}

.icon-circle::after {
  bottom: 0;
  right: 0;
}

.icon-circle i {
  font-size: 40px;
  color: #ff4500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.icon-box h5 {
  font-weight: bold;
  margin-top: 10px;
}

.icon-box p {
  color: #fff;
  font-size: 14px;
}
