html {
  scroll-behavior: smooth;
}

/* ✅ Banner */
.banner {
  background: linear-gradient(135deg, #d8dadd, #a7acb4);
  color: white;
  padding: 40px 0;
}

.banner-img {
  max-height: 320px;
  border-radius: 6px;
}

/* ✅ Sections */
.section-light {
  background: #f8f9fa;
  padding: 70px 0;
}

.section-white {
  background: #ffffff;
  padding: 70px 0;
}

.section-blue {
  background: #eef4ff;
  padding: 70px 0;
}

/* ✅ Quick box */
.quick-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.quick-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ✅ Card hover */
.card {
  border-radius: 12px;
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* ✅ Footer */
.footer {
  background:rgb(15 53 73);
  color: #ccc;
  padding: 40px 0;
}

.footer a {
  color: #bbb;
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  color: #fff;
}



.icon-img {
  width: 50px;
  height: 50px;

}

.logo {
  background: white;
  border-radius: 5px;
}





/* card flip */

.flip-card {
  height: 180px;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
}

.flip-back {
  transform: rotateY(180deg);
}

/* ✅ Ensure card fills full space */
.flip-front .card,
.flip-back .card {
  height: 100%;
}





.banner {
  height: 400px; /* adjust height */

  background: url('../../static/media/banner/banner4_2.jpg') no-repeat center center;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}




.arrow-icon {
  color: green;
  margin-right: 6px;
}


body {
  font-family: 'Source Sans 3', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Chillax', sans-serif;
color: #0f3549;
}

a{
  color: #73d2d2;
}


.btn {
  border-radius: 50px;
  
  font-weight: bold;
 
}



.btn:hover {
  background-color: #0f2d3a;   /* slightly darker on hover */
  color: #fff;
}


.btn-dark
{
 background-color:  #0f3549!important;
}


.pdf-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}