@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: 'Inter';
}

:root {
    --primary: #03679E;
}
.bg-theme-primary{
    background-color: var(--primary);
}
.theme_btn {
    background-color: var(--primary);
    color: #fff;
    border-radius: 30px;
    padding: 10px 30px;
    border: 0;
    text-decoration: none;
    letter-spacing: .3cap;
}

.theme_btn:hover {
    color: #fff;
}

.tel {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

.header-nav {
    background-color: var(--primary);
}

.nav-link {
    color: #fff !important;
}

.form-control {
    border-width: 0px 0px 1.5px 0px;
    border-radius: 0;
}

.form-control:focus {
    box-shadow: none;
    outline: 0;
}

.hero-wrap {
    background-image: linear-gradient(#00000073), url(../images/hero_bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;
    height: calc(100vh - 124px);
}

.hero-form {
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.packr_cards {
    padding: 15px;
    background-color: var(--primary);
    color: #fff;
    height: 100%;
}

.packr_cards h3 {
    font-size: 22px;
}

.whatwedo h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 20px;
}

.heading p {
    max-width: 665px;
    text-align: center;
    margin: 0 auto;
}

.why-choose-us {
    background-image: url(../images/why-choose.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
    color: #fff;
}

.contact-form-box{
    padding: 20px;
    border-radius: 12px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.footer-section {
  background: var(--primary);
  color: #fff;
  position: relative;
}

.footer-logo {
  width: 140px;
  border-radius: 10px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.6;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 18px;
}

.social-icons a {
  display: inline-block;
  width: 38px;
  height: 38px;
  background: #fff;
  color: var(--primary);
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  margin-right: 10px;
  font-size: 18px;
}

/* TAGS */
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer-tags span {
  background: #fff;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  text-align: center;
}

/* WHATSAPP FLOAT */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 26px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.contact-item a {
    text-decoration: none;
    color: #fff;
}
/* ── Services Page Banner ── */
.page-banner {
    background-image: url('../images/service-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-banner .banner-content {
    position: relative;
    z-index: 1;
}

.page-banner .banner-content h1 {
    color: #fff;
    font-weight: 700;
}
#form-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    z-index: 9999;
    min-width: 280px;
    max-width: 90%;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

/* Show state */
#form-message.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Success */
.msg-success {
    background: #28a745;
    color: #fff;
}

/* Error */
.msg-error {
    background: #dc3545;
    color: #fff;
}

@media (max-width:767px) {
  .hero-wrap {
    padding: 40px 0;
     height: auto; 
}
}