* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.search-box {
    max-width: 180px;
    /* Change as needed */
}

.post-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-h5 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-login {
    background-color: #289dcc;
    padding: 0px 10px;
    border-radius: 6px;
    margin-left: 8px;
}

.btn-login:hover{
    background-color:#2a82a6;
}

.btn-primary-col {
    background: #289dcc;
}

.btn-custom {
    background-color: #289dcc;
    border-color: #289dcc;
    color: #fff;
}

.btn-custom:hover,
.btn-custom:focus {
    background-color: #2a82a6;
    border-color: #2a82a6;
    color: #fff;
}

.text-footer {
    color: #289dcc;
}

/* Category Tabs */

.nav-pills .nav-link {
    background: transparent;
    color: #000;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-weight: 600;
    padding: 6px 12px;
    transition: all .3s ease;
    margin: 0 0 0 10px;
}

/* Hover */

.nav-pills .nav-link:hover {
    color: #289dcc;
    border-color: #289dcc;
}

/* Active */

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: #289dcc;
    border-color: #289dcc;
    color: #fff;
}

/* Active Hover */

.nav-pills .nav-link.active:hover {
    background: #1f84b3;
    border-color: #1f84b3;
    color: #fff;
}

.img-hover {
    overflow: hidden;
    border-radius: 8px;
}

.img-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    border-radius: 8px;
}

.img-hover:hover img {
    transform: scale(1.15);

}

.img-hover-2 {
    height:250px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.img-hover-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.img-hover-2:hover img {
    transform: scale(1.15);
    border-radius: 4px 4px 0 0;
}

.img-hover-3 {
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.img-hover-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.img-hover-3:hover img {
    transform: scale(1.15);
    border-radius: 5px 5px 0 0;
}

/* Privacy Policy */
.privacy-policy{
    background:#fff;
    padding:80px 0;
}

.privacy-content h1{
    font-size:46px;
    font-weight:700;
    margin-bottom:50px;
}

.terms-conditions-content h1{
    font-size:46px;
    font-weight:700;
    margin-bottom:50px;
}

/* Sticky Advertisement */

.sticky-ad{
    position:sticky;
    top:120px;
}

.sticky-ad img{
    width:100%;
    border-radius:10px;
}

/* Tablet */

@media(max-width:991px){

    .privacy-policy{
        padding:60px 0;
    }

    .privacy-content h1{
        font-size:36px;
    }

    .terms-conditions-content h1{
        font-size:36px;
    }

}

/* Mobile */

@media(max-width:767px){
    .sticky-ad{
        position: relative;
        top: 0;
        margin-top: 30px;
    }

    .privacy-content h1{
        font-size:30px;
        text-align: center;
        margin-bottom: 30px;
    }

    .terms-conditions-content h1{
        font-size:30px;
        text-align: center;
        margin-bottom: 30px;
    }


}

@media(max-width:1400px) {
    .nav-item a {
        font-size: 13px;
        padding: 10px;
    }
}


@media screen and (min-width:992px) and (max-width:1199px) {
    nav.navbar .container {
        max-width: 100%;
    }
}

@media screen and (min-width:992px) and (max-width:1060px) {
    .nav-item a {
        font-size: 12px;
        padding: 7px 7px !important;
    }
}

/* @media screen and (min-width:1180px) and (max-width:1300px) {
    .nav-item a {
        font-size: 13px;
        padding: 5px 5px !important;
    }
} */

/* Mobile & Tablet */
.post-border {
    border-bottom: 1px solid #dee2e6;
}

/* Desktop */
@media (min-width:992px) {
    .post-border {
        border-top: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;
    }
}

@media (max-width:992px) {

    .nav-pills .nav-link {
        margin: 10px 0 0 10px;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0;
        border-color: white;
    }

    .navbar-toggler {
        box-shadow: 0 0 0 0;
        border-color: white;
        padding: 5px 8px;
    }

    .navbar-toggler-icon {
        width: 26px;
        height: 26px;
    }

    .mob-padding {
        padding: 5px 0;
    }

    .btn-login {
        max-width: fit-content;
        margin-left: 0px;
        margin-bottom: 10px;
    }
}

/* Search box */
.search-box {
    width: 250px;
    flex-shrink: 0;
    height: 40px;
}

/* Menu remaining */
.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

/* Disable Links wrap */
.navbar-nav .nav-link {
    white-space: nowrap;
}
.search-box .search-form {
    display: flex;
}

.search-box .search-field {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
    max-width: 130px;
}

.search-box .search-submit {
    width: 45px;
    border: none;
    border-radius: 0 4px 4px 0;
    background-color: #2196c9;
    color: transparent;
    cursor: pointer;
    position: relative;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24' width='18' height='18'><path d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
}


.newslatter .wpcf7-form div p {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.newslatter .wpcf7-form div p {
  margin: 0;
}
.newslatter input.wpcf7-email::placeholder {
  color: #6b6b6b;
}

.newslatter input.wpcf7-submit {
  height: 48px;
  border: none;
  border-radius: 0px;
  background: #29abe2;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 0 25px;
  white-space: nowrap;
  cursor: pointer;
  margin-left: -1px;
}

.newslatter input.wpcf7-submit:hover {
  background: #1e93c9;
}
.newslatter input.wpcf7-email {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 0px;
  padding: 0 20px;
  font-size: 14px;
  outline: none;
  background: #fff;
  color: #333;
}

.home-newsletter {
    border-radius: 12px;
    max-width: 500px;
}

.home-newsletter form.wpcf7-form p {
    margin: 02px 0px 0px 0px;
}

.home-newsletter .wpcf7-form-control-wrap input.wpcf7-email {
    width: 100%;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background-color: #ffffff;
    color: #333;
    font-size: 15px;
    box-sizing: border-box;
}

.home-newsletter .wpcf7-form-control-wrap input.wpcf7-email::placeholder {
    color: #888;
}

.home-newsletter .wpcf7-form-control-wrap input.wpcf7-email:focus {
    outline: none;
    box-shadow: 0 0 0 2px #2ba8d8;
}

.home-newsletter input.wpcf7-form-control.wpcf7-submit {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background-color: #2ba8d8;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.home-newsletter input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: #2596c4;
}

/* contact us page */
.info-boxes{
        margin-top: -60px;
}
  /* Only what Bootstrap utilities genuinely can't do */
  .contact-banner{
    background:linear-gradient(rgba(15,20,30,.85),rgba(15,20,30,.85)),
      url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  }
  
  .icon-circle{
    width:70px;height:70px;
    background:#289dcc;
  }
  .icon-circle-sm{
    width:42px;height:42px;
    background:rgba(40,157,204,.15);
    color:#289dcc;
  }
  .social-icon{width:38px;height:38px;transition:.25s;}
  .social-icon:hover{background:#289dcc !important;}

  .info-card{transition:.3s;border:0;border-top:3px solid transparent !important;}
  .info-card:hover{transform:translateY(-8px);border-top-color:#289dcc !important;}

  .side-panel{background:linear-gradient(135deg,#0f1522,#1a2540);}

  .btn-brand{background:#289dcc;border-color:#289dcc;color:#fff;}
  .btn-brand:hover{background:#1f83ac;border-color:#1f83ac;color:#fff;}

  /* ===== CF7 form fields — targets Contact Form 7's actual markup ===== */
  .contact-us .wpcf7-form label{
    display:block;
    width:100%;
    font-weight:500;
    color:#333;
    margin-bottom:.5rem;
  }
  .contact-us .wpcf7-form-control-wrap{
    display:block;
    width:100%;
  }
  .contact-us input.wpcf7-form-control,
  .contact-us textarea.wpcf7-form-control{
    display:block;
    width:100%;
    background:#f8fafc;
    border:1px solid #e2e6ea;
    border-radius:.6rem;
    padding:.85rem 1rem;
    font-size:.95rem;
    box-sizing:border-box;
  }
  .contact-us input.wpcf7-form-control:focus,
  .contact-us textarea.wpcf7-form-control:focus{
    background:#fff;
    border-color:#289dcc;
    outline:none;
    box-shadow:0 0 0 .25rem rgba(40,157,204,.15);
  }
  .contact-us textarea.wpcf7-form-control{
    min-height:110px;
    resize:vertical;
}
  .contact-us input.wpcf7-submit{
    width:auto;
    background:#289dcc;
    color:#fff;
    border:none;
    padding:.75rem 2.25rem;
    border-radius:10px;
    font-weight:600;
    letter-spacing:.5px;
    cursor:pointer;
    transition:.3s;
  }
  .contact-us input.wpcf7-submit:hover{
    background:#1f83ac;
    transform:translateY(-2px);
  }
  .contact-us .wpcf7-spinner{margin-left:.5rem;}

  .map-wrap iframe{height:400px;}

  /* register page */
.page-id-10 .auth-box button,
.page-id-12 .auth-box button {
  background: #289dcc !important;
}

/* login */
.page-id-10 .bottom-link a,
.page-id-12 .bottom-link a {
  color: #289dcc !important;
}