:root {
  --primary: #0077b6;
  --secondary: #00b4d8;
  --dark: #023e8a;
  --light: #f8f9fa;
}

body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  background-color: #fff;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
  height: 42px;
  margin-right: 8px;
}

.navbar-brand span {
  font-weight: 700;
  color: var(--dark);
  font-size: 1.4rem;
}

.nav-link {
  color: #333;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-weight: 700;
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.hero img {
  width: 100%;
  max-width: 100%;
  display: block;
}

body,
html {
  overflow-x: hidden !important;
}

.hero,
.hero .container,
.hero .row,
.hero .col-lg-6 {
  overflow-x: hidden !important;
}

/* Decorative shapes */
.shape {
  position: absolute;
  opacity: 0.2;
}

/* Buttons */
.btn-primary {
  background-color: var(--dark);
  border: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary);
  /*transform: translateY(-2px);*/
}

/* Section Titles */
.section-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
}

/* Features */
.feature-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card i {
  font-size: 3rem;
  color: #023e8a;
  margin-bottom: 15px;
}

/* Pricing */
.pricing-card {
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  padding: 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.badge {
  font-size: 0.8rem;
  padding: 0.5rem 0.8rem;
  border-radius: 50px;
}

/* Contact */
.contact-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
}

.contact-section .form-container {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Form focus */
.contact-section .form-control:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.25);
}

.contact-section .btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-section .form-control:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.25);
}

@media(max-width:991px) {
  .contact-section .form-container {
    margin-top: 30px;
  }
}

@media(max-width:991px) {
  .contact-section .form-container {
    margin-bottom: 30px;
  }
}

/* Footer */
footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 0 20px;
  width: 100%;
}

footer a {
  color: #fff;
  transition: 0.3s;
}

footer a:hover {
  color: #00b4d8 !important;
  text-decoration: underline;
}

@media(max-width:767px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

.pricing-card ul li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
}


.pricing-card ul li::before {
  content: "";
  margin-right: 8px;
}

.pricing-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-gradient:hover {
  opacity: 0.9;
}

.policy-section {
  background: linear-gradient(135deg, #f8fbff, #e3f8ff);
  padding: 90px 0;
}

.policy-title {
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  -webkit-background-clip: text; /* MUST be enabled */
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.justify-text {
  text-align: justify;
}

/*.feature-card p {*/
/*  text-align: left;*/
/*}*/


.policy-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  padding: 50px;
  transition: all 0.35s ease;
  border-top: 5px solid #00b4d8;
}

.policy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.policy-card h5 {
  color: #0077b6;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 10px;
}

.policy-card ul {
  padding-left: 20px;
}

.policy-card ul li {
  margin-bottom: 8px;
}

.policy-card p {
  line-height: 1.7;
  color: #333;
}

/* Widget container fixed */
#whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* Circle button */
#whatsapp-button {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, background-color 0.3s;
}

#whatsapp-button img {
  width: 30px;
  height: 30px;
}

#whatsapp-button:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

/* Popup message */
#whatsapp-popup {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  width: 220px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* Popup text */
#whatsapp-popup p {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #333;
}

/* Start chat button */
#whatsapp-popup a {
  display: inline-block;
  background-color: #25D366;
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s;
}

#whatsapp-popup a:hover {
  background-color: #128C7E;
}

/* Mobile adjustments */
@media screen and (max-width: 600px) {
  #whatsapp-popup {
    width: 180px;
    bottom: 70px;
  }

  #whatsapp-popup p {
    font-size: 13px;
  }

  #whatsapp-popup a {
    font-size: 13px;
    padding: 5px 10px;
  }
}

.text-bank-blue {
  color: #14477E;
}

/* ================================================
   GLOBAL RESPONSIVE FIXES  
   Add this at the bottom of your CSS  
================================================ */

/* Prevent overflow on mobile */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

.container,
.row,
.col-lg-6,
.col-md-6,
.col-sm-6 {
  /*overflow-x: hidden;*/
}

/* Universal responsive spacing */
section {
  padding-left: 15px;
  padding-right: 15px;
}

/* Fix for big headings on mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem !important;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.7rem !important;
  }

  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero img {
    margin-top: 20px;
  }
}

/* Cards auto stack on mobile */
@media (max-width: 768px) {
  .feature-card,
  .pricing-card,
  .policy-card {
    margin-bottom: 20px;
  }
}

/* Pricing section fix - grid break ho raha tha */
@media (max-width: 767px) {
  .pricing-card {
    padding: 25px;
  }
}

/* Contact form responsive */
@media (max-width: 767px) {
  .contact-section .form-container {
    padding: 30px !important;
    margin-top: 20px;
  }

  .contact-section {
    padding: 70px 0;
  }
}

/* Footer responsive */
@media (max-width: 767px) {
  footer {
    text-align: center;
  }

  footer .col-md-4 {
    margin-bottom: 20px;
  }
}

/* Navbar mobile fix */
@media (max-width: 991px) {
  .navbar-brand img {
    height: 36px;
  }

  .navbar-brand span {
    font-size: 1.2rem;
  }

  .nav-link {
    margin: 6px 0;
    text-align: right;
    padding-left: 5px;
  }
  .navbar-toggler i{
      display:none;
      font-size: 28px;
      padding: 0 1px;
  }
  .navbar-toggler[aria-expanded="true"] span{
      display: none;
  }
  .navbar-toggler[aria-expanded="true"] i{
      display: block;
      color: #14477e;
  }
  #navbarNav{
      position: fixed;
    top: 61px;
    left: 100%;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 15px 25px 15px 15px;
    transition: all 0.2s ease-in-out;
    height:100% !important;
  }
  #navbarNav .navbar-nav{
      opacity: 0;
  }
  #navbarNav.show{
      left:50%;
  }
  #navbarNav.show .navbar-nav{
      opacity: 1;
  }
  #navbarNav .navbar-nav .nav-item{
      text-align: right;
      border-bottom: 1px solid #e9e9e9;
  }
  .navbarOverlay{
      /*display:none;*/
      opacity:0;
      position:fixed;
      top:61px;
      left:100%;
      right:0;
      bottom:0;
      background: #0093c6c2;
      transition: all 0.4s ease-in-out;
  }
  .navbar-toggler[aria-expanded="true"] + .navbarOverlay{
      /*display:block;*/
      opacity:1;
      left:0;
  }
}

/* Fix for shapes in hero overlapping on small screens */
@media (max-width: 767px) {
  .shape {
    display: none;
  }
}

/* WhatsApp widget fix for small screens */
@media (max-width: 480px) {
  #whatsapp-button {
    width: 52px;
    height: 52px;
  }

  #whatsapp-button img {
    width: 26px;
    height: 26px;
  }
}

/* Hero two-column fix */
@media (max-width: 991px) {
  .hero .row {
    text-align: center;
  }

  .hero .col-lg-6 {
    margin-bottom: 20px;
  }
  .contactRightBox1>p.opacity-0{
      display:none;
  }
}
.contactImg{
    max-width:100%;
}
.contactRightBox div.d-flex.align-items-center.mb-3{
    font-size:1rem;
}
/*custome responsive*/
@media only screen and (max-width: 479px){
    .bookDemoBtn{
        margin-top:15px;
    }
    .newLineM{
        display: block !important;
    }
    .contactImg{
        max-width: 100%;
    }
    .contactLeftBox p{
        text-align: left;
    }
    .contactRightBox div{
        justify-content: center;
    }
    .contactRightBox h5{
        margin-left:5px;
        text-align: center;
    }
}
@media only screen and (max-width:359px){
    .contactRightBox div.d-flex.align-items-center.mb-3{
        font-size:0.85rem;
    }
}

.hero-section {
    background: linear-gradient(to right, #023e8a, #42c3e6);
    color: white;
    padding: 50px 0;
}

.postAdBtn:hover{background-color:white;}

.category-grid .card {
    border: none;
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
}
.category-grid .card a{text-decoration:none;}
.category-grid .card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 114px;
    /* text-decoration: none; */
}
.category-grid .card-body i.position-relative {
    width: 48px;
}
.category-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.category-grid .card-body img {
    width: 48px;
    height: auto;
}
.category-grid .card-title {
    margin: 0;
    text-align: left;
    color:#14477E;
}

@media only screen and (max-width:1023px) {
    .hero-section h1{
        font-size: calc(1.375rem + 1.5vw) !important;
    }
    .category-grid .card-body{
        flex-direction: column;
    }
    .category-grid .col-md-2.col-sm-4{
        width:50%;
    }
    .category-grid .col-md-12.col-sm-4{
        width:100%;
    }
    .category-grid .col-md-12.col-sm-4{
        display: block !important;
    }
    .category-grid .col-md-12.col-sm-4 .card-body{
        min-height: auto;
    }
}