/* ====== Reset & Base ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1250px !important;
}

h1,
h2,
h3,
h4,h5 {
    font-family: 'Poppins', sans-serif;
}

p {
    font-family: 'Outfit', sans-serif;
}

.btn {
    font-family: 'Raleway', sans-serif;
}

/* ====== Navbar ====== */
.navbar {
    background-color: #67C4DB;
    padding: 10px 0;
}

.navbar .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color: #fff !important;
    transition: color 0.3s;
    margin-right: 15px;
}

.navbar .nav-link:hover {
    color: #2D2D2D !important;
}

/* Add left padding to nav-items on mobile/tab so they don’t sit under logo */
@media (max-width: 991px) { /* Bootstrap lg breakpoint */
    .navbar-collapse {
        padding-left: 10px; /* adjust as needed */
    }
}

/* ====== Section General ====== */
section {
    padding: 100px 0;
}

section h2, h1 {
    font-size: 30px;
    font-weight: 600;
    color: #2D2D2D;
    margin: 0 !important;
}

section hr {
    color: #67C4DB;
}

section .text-muted {
    font-size: 20px;
    margin: 0 0 25px 0;
}

section p {
    font-size: 18px;
    color: #2D2D2D;
    line-height: 30px;
}

/* ====== Privacy Policy ====== */

#privacy-policy {
    margin-top: 80px;
}

#privacy-policy h5{
    font-size: 23px;
    font-weight: 600;
}

/* ====== QUICK CONNECT ====== */

#connect .contact-info i {
    color: #67C4DB;
}

#connect .contact-info p {
    font-size: 18px;
}

#connect .form-control,
#connect .form-select {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

#connect .form-control:focus,
#connect .form-select:focus {
    border-color: #67C4DB;
    box-shadow: 0 0 4px rgba(0, 183, 255, 0.4);
}

#connect .btn {
    background-color: #67C4DB;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
    padding: 10px 20px;
    transition: 0.3s;
    border-radius: 3px;
}

#connect button:hover {
    color: #000;
    border: 1px solid #000;
    background-color: #fff;
    transform: scale(1.05);
}

/* ====== FOOTER ====== */
footer {
    background-color: #2D2D2D;
}

footer .footer-bottom {
    font-size: 16px;
}

footer .footer-bottom .text-info {
    color: #fff !important;
}

footer .footer-bottom .text-info:hover {
    color: #67C4DB !important;
}


/* WhatsApp Floating Button */
.whatsapp_float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
}

.whatsapp-icon {
  margin-top: 15px;
}

.whatsapp_float:hover {
  background-color: #1ebc59;
  text-decoration: none;
}


#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
  display: none;
  border-radius: 5px;
  padding: 5px 10px;
  background-color: #67C4DB;
  font-size: 15px;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s, transform 0.3s;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
}
