/*font*/

@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: Helvetica, Arial, sans-serif;
}



/*Header*/



.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background-color: #ccc;
}


.navbar {
  background: #eff4fb;
  padding: 0 40px;
  position: relative;
}

.navbar-brand img {
  height: 52px; /* increased height */
  width: auto;
  max-width: 187px; /* increased width */
}

.navbar-nav {
  gap: 10px;
}

.nav-link {
  font-weight: 600;
  font-size: 1.3vw; /* increased font size */
  color: #000 !important; /* black text */
  position: relative;
  padding-bottom: 4px;
}

/* Underline effect on hover inside span */
.nav-link span {
  position: relative;
}

.nav-link span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #f1c40f;
  transition: width 0.3s ease;
}

.nav-link:hover span::after {
  width: 100%;
}

/* Custom outlined arrow for dropdown */
.nav-item.dropdown .nav-link::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  margin-bottom: 3px;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  padding: 2px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Keep Bootstrap functionality intact */
.dropdown-toggle::after {
  vertical-align: middle;
  margin-left: 5px;
}

.btn-login {
  background-color: #1e4aa8;
  color: white;
  border-radius: 40px;
  padding: 12px 33px;
  font-size: 1.3vw;
}

.btn-login:hover {
  background-color: #16397a;
  color: #fff;
}



.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu {
  margin-top: 0;
  border-radius: unset;
  border: none;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
}
/* Underline hover effect for dropdown items */
.dropdown-menu .dropdown-item {
  position: relative;
  font-weight: 500;
  font-size: 1.3vw;
  padding: 8px 16px;
  color: #000;
  background-color: transparent;
}

.dropdown-menu .dropdown-item span {
  position: relative;
  display: inline-block;
}

.dropdown-menu .dropdown-item span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #f1c40f;
  width: 0;
  transition: width 0.3s ease;
}

.dropdown-menu .dropdown-item:hover span::after {
  width: 100%;
}

.dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: #000;
}



/* Responsive */
@media (max-width: 769px) {

  .navbar-nav {
    gap: 0;
  }

  .navbar-brand img {
    height: 52px;
    max-width: 187px;
  }

  .nav-link {
    font-size: 16px;
  }
  .btn-login
  {
    font-size: 16px;
  }
}

/*Header*/

/* Carousel Start */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
   @media (min-width: 821px) {
  .swiper-pagination {
    text-align: left !important ;
    padding-left: 40px;
  }
}

    .slider-section {
      width: 100%;
      height: 85vh;
      background: url('../images/banner_bg.png') no-repeat center center/cover;
      position: relative;
    }

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3%;
    }

    .slide-content {
      width: 50%;
    }

    .slide-content h2 {
      font-size: 54px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #0a0a0a;
    }

    .highlight {
      position: relative;
      display: inline-block;
    }

    .highlight::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 10px;
      background-color: #f1c40f;
      bottom: 0;
      left: 0;
      z-index: -1;
    }

    .read-more-btn {
      display: inline-flex;
      align-items: center;
      padding: 14px 31px;
/*      background: white;*/
      border: 1px solid #1d4996;
      border-radius: 40px;
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      color: #0a0a0a;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .read-more-btn:hover {
      background-color: #1d4996;
      border-color: #1d4996;
      color:#ffffff;
    }

    .read-more-btn svg {
      margin-left: 10px;
      width: 24px;
    margin-top: 5px;
      transition: transform 0.3s ease;
    }

    .read-more-btn:hover svg {
      transform: translateX(4px);
    }

    .slide-image {
      width: 40%;
    }

    .slide-image img {
/*      width: 100%;*/
      height: auto;
      object-fit: contain;
    }

    .swiper-pagination {
      position: absolute;
      bottom: 40px;
      text-align: center;
    }

    .swiper-pagination-bullet {
      background: #a0b1cf;
      opacity: 0.5;
      width: 13px;
      height: 13px;
    }

    .swiper-pagination-bullet-active {
      background: #1d4996;
      opacity: 1;
    }

    @media (max-width: 821px) {
    .swiper-slide {
      flex-direction: column;
      text-align: center;
      padding: 0 5%;
      justify-content: center;
    }

    .slide-content, .slide-image {
      width: 100%;
      padding-top:1.5rem;
    }

    .slide-content h2 {
      font-size: 32px;
      margin-bottom: 12px; 
    }

    .read-more-btn {
      font-size: 16px;
      padding: 10px 18px;
      margin-bottom: 20px; 
    }

    .slide-image {
      margin-top: 0; 
    }

    .slide-image img {
      max-width: 90%;
      height: auto;
      margin: 0 auto;
    }
    .slider-section {
      height: auto;
}
  }
  
/*About section*/
.about-section {
  padding: 80px 40px;
  padding-bottom: 0px !important;
}
a:hover {
    color: white;
}

.about-content {
  display: flex;
/*  align-items: center;*/
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-content .text {
  flex: 1 1 50%;
  padding-right: 40px;
}

.about-content .text h5 {
  color: #1d4996;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 600;
}

.about-content .text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content .text p {
  font-size: 16px;
  line-height: 1.7;
  color: #2A2D32;
  margin-bottom: 15px;
  /*font-weight: bold;*/
}



.about-content .image {
  flex: 1 1 50%;
  text-align: center;
  position: relative;
}

.about-content .image img {
  max-width: 100%;
  height: auto;
}
.about-content .image img {
  position: static; 
  margin-top: 5rem; 
}

.about-section {
  overflow-x: hidden;
  position: relative;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-content .image img {
    margin-top: 18rem; /* reduce space for iPads and tablets */

  }
  .about-content .text
{
  padding-bottom: 4rem;
}
.navbar-brand
{
  margin-right: 0rem;
}
.slide-content h2 {
    font-size: 49px;
}
.swiper-slide
{
  justify-content: center;
}
.slider-section

 {
  height: auto;
}
}

/* Responsive */
@media (max-width: 769px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-content .text {
    padding: 0;
  }
 .about-content .image img {
    margin-top: 0px;
  }
  .about-content .image {
    margin-top: 30px;
  }
}

/*Counting section*/

.stats-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; 
  background-color: #ffd561;
  padding: 50px 20px;
  text-align: center;
  overflow: hidden;
}

.stat-box {
  flex: 1 1 250px;
  padding: 20px;
}

.stat-box img {
  vertical-align: middle;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.stat-box h2 {
  color: #1d4996;
  font-size: 46px;
  margin: 10px 0;
  font-weight: bold;
}

.stat-box p {
  font-weight: 500;
  color: #222;
  font-size: 16px;
}

@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
    row-gap: 0;
  }

  .stat-box {
    flex: auto;
    padding: 0;
  }

  .stat-box h2 {
    font-size: 36px;
  }
}

/*product card*/

.product-section {
      background: url('../images/bg_img_2.jpg') no-repeat center center/cover;
      padding: 80px 30px;
      position: relative;
      padding-bottom: 10rem;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      max-width: 100%;
      margin: 0 auto 80px;
    }

    .section-header h2 {
      font-size: 28px;
      font-weight: bold;
      color: #0a0a0a;
    }

    .view-all {
      padding: 10px 29px;
      border: 1px solid #1d4996;
      border-radius: 30px;
      text-decoration: none;
      color: #1d4996;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: 0.3s;
    }
    .view-all svg
    {
      width: 24px;
    margin-top: 5px;
    }

    .view-all:hover {
      background-color: #1d4996;
      color: #fff;
    }

    .glide {
      max-width: 100%;
      margin: auto;
      position: relative;
    }

    .glide__slide {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
/*      box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);*/
      position: relative;
      height: auto;
      transition: all 0.3s ease;
    }

    .glide__slide:hover {
      background-color: #1d4996;
      color: #fff;
      box-shadow: rgba(0, 0, 0, 0.31) 0px 8px 10px 0px;
    }
    ul.glide__slides {
    padding-bottom: 3rem;
}

    .glide__slide .icon {
      width: 70px;
      height: 70px;
      background-color: #1d4996;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .glide__slide:hover .icon {
      background-color: #fff;

    }

    /*.glide__slide .icon img {
      width: 40px;
      height: 40px;
    }*/
    .glide__slide:hover .icon img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(91%) saturate(558%) hue-rotate(182deg) brightness(88%) contrast(97%);
}


    .glide__slide h3 {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 10px;
      margin-top: 30px;
    }

    .glide__slide:hover h3,
    .glide__slide:hover p,
    .glide__slide:hover .number {
      color: #fff;
    }

    .glide__slide p {
      font-size: 16px;
      color: #555;
      margin-bottom: 45px;
    }

    .number {
/*      font-weight: bold;*/
      font-size: 18px;
      color: #333;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .number::before {
      content: '';
      width: 60px;
      height: 1px;
      background-color: #1f3c88;
      display: inline-block;
    }

    .glide__slide:hover .number::before {
      background-color: #fff;
    }

    .arrow-top {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #fff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #0056b3;
      display: none;
    }

    .glide__slide:hover .arrow-top {
      display: flex;
    }

    .glide__arrows {
      position: absolute;
      bottom: -50px;
/*      top: 27rem;*/
      right: 20px;
      display: flex;
      gap: 10px;
    }

    .glide__arrow {
      background-color: #1d4996;
      color: white;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      border: none;
      cursor: pointer;
      font-size: 25px;
    }
    .glide__arrow:hover {
  background-color: #ffd561;
  color: black;
}

    @media (max-width: 768px) {
      .glide__slide {
        max-width: 100%;
      }
      .section-header {
        flex-direction: row-reverse;
        gap: 20px;
      }
      .glide__arrows {
        bottom: -45px;
        right: 10px;
      }
      .section-header h2 {
    font-size: 25px;
  }
    }

/*    service section*/
.services-section {
      background: url('../images/bg_img_1.png') no-repeat center center/cover;
      overflow:hidden;
      padding-top: 5rem !important;
      padding-bottom: 5rem !important;
    }

    .service-card {
      background: white;
      border-radius: 25px;
      padding: 30px 45px;
      text-decoration: none;
      color: black;
      display: flex;
      align-items: center;
      gap: 30px;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }


    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
    }

    .service-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      flex-shrink: 0;
    }

    .service-card span {
      font-size: 1.5vw;
      font-weight: 500;
      white-space: nowrap; /* text wrap na ho hover pe */
      color: black;
    }

    /* Gap between cards */
    .services-section .row {
      display: flex;
    align-items: center;
    gap: 27px;
    }
    @media (min-width: 992px) {
    .services-section .col-lg-3 {
        flex: 0 0 auto;
        width: 27%;
    }
}

    /* Mobile spacing fix */
    @media (max-width: 767px) {
      .services-section .row {
        margin-left: 0;
        margin-right: 0;
      }
      .services-section .col-sm-12 {
        padding-left: 15px;
        padding-right: 15px;
      }
      /*.service-card {
        justify-content: center;
        text-align: center;
        flex-direction: row;
        padding: 20px;
        gap:31px;
      }*/
      .service-card span {
    font-size: large;
  }
    }

/*    footer*/

footer {
      background: #fff;
      padding: 60px 40px;
     overflow:hidden;
    }

    .footer-logo img {
/*      max-height: 50px;*/
      margin-bottom: 15px;
    }

    .footer-logo p {
      font-size: 16px;
      color: #333;
      margin-bottom: 10px;
      width: 76%;
    }

    .footer-logo a {
      color: #1d4996;
      font-weight: bold;
      text-decoration: none;
      font-size: 16px;
    }

    .footer-title {
      font-weight: bold;
      margin-bottom: 15px;
      font-size: 16px;
      color: #000;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 8px;
    }

    .footer-links a {
      color: #000;
      text-decoration: none;
      font-size: 16px;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    .footer-bottom {
/*      border-top: 1px solid #ccc;*/
      padding-top: 10px;
/*      margin-top: 20px;*/
      text-align: center;
      font-size: 18px;
/*      color: #666;*/
      padding: 40px 40px;
      background: #f1f5fe;
      margin-left: 15px;
    margin-right: 15px;
    border-radius: 25px;
    }
    .footer-extra
    {
      border-top: 1px solid #ccc;
      padding-top: 40px;
      margin-top: 40px;
/*      text-align: center;*/
      font-size: 16px;

    }
    
    .footer-ifsca
    {
        margin-top: 2rem;
    text-align: center;
    }
    
    .footer-social
    {
   border-top: 1px solid #ccc;   
  display: flex;
  gap: 17px;
  justify-content: center;
  align-items: center;
  margin-top: 67px;
    padding-top: 60px;
    }
    .footer-social a img {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border-radius: 50%;
}

.footer-social a img:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}



    @media (max-width: 767px) {
      .footer-logo {
/*        text-align: center;*/
        margin-bottom: 20px;
      }
      .footer-title {
        margin-top: 20px;
/*        text-align: center;*/
      }
      .footer-links {
/*        text-align: center;*/
      }
    }

/*    About*/

/* Hero Section */
.hero {
  background: url('../images/banner_bg.png') center/cover no-repeat;
/*  color: white;*/
  text-align: center;
  padding: 70px 20px;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}
.section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.section
{
  overflow: hidden;
  padding: 60px 40px;
}
/* Cards */
.values {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.value-card {
  background: #fff;
  padding: 20px;
  flex: 1 1 250px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 10px;
}
.value-card i {
  font-size: 2rem;
  color: #f1c40f;
  margin-bottom: 10px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d4996;
  margin-bottom: 20px;
  position: relative;
}

/*.section-title::after {*/
/*  content: "";*/
/*  width: 60px;*/
/*  height: 4px;*/
/*  background: #f1c40f;*/
/*  position: absolute;*/
/*  bottom: -8px;*/
/*  left: 0%;*/
/*}*/
.alt-bg {
  background: linear-gradient(135deg, #f8f9fc, #eef2f7);
  padding: 60px 40px;
  overflow: hidden;
}

/* WHO WE ARE */
.who-we-are .content {
  flex: 1 1 50%;
  padding: 20px;
}
.who-we-are .image {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.who-we-are .img-overlay {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.who-we-are .img-overlay img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.who-we-are .img-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 60, 120, 0.3);
  mix-blend-mode: multiply;
}
.who-we-are .img-overlay:hover img {
  transform: scale(1.05);
}
.who-we-are
{
  background: linear-gradient(135deg, #f8f9fc, #eef2f7);
  padding: 60px 40px;
  overflow: hidden;
}
.value
{
  background: linear-gradient(135deg, #f8f9fc, #eef2f7);
  padding: 60px 40px;
  overflow: hidden;
}


/* OUR STRENGTHS */

/*#readBtn {*/
/*  background: #0056d2;*/
/*  color: #fff;*/
/*  border: none;*/
/*  padding: 8px 16px;*/
/*  border-radius: 5px;*/
/*  cursor: pointer;*/
/*  margin-top: 10px;*/
/*}*/

.more-text {
  display: none;
}
.read-btn {
  background: #0747a3;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 15px;
  cursor: pointer;
}

.read-btn:hover {
    text-decoration: underline;
}

.strengths .strength-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}

.strength-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  flex: 1 1 250px;
  max-width: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.strength-card p{
    line-height: 1.7;
}
.strength-card i {
  font-size: 2.5rem;
  color: #f1c40f;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.strength-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.strength-card:hover i {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .who-we-are .content {
  flex: auto;
}
  .section-title {
    font-size: 1.6rem;
  }
}

.management-overview {
  padding: 60px 0;
   background: url('../images/banner_bg.png') center/cover no-repeat;
  color: #0c1a2b;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.mo-header {
  text-align: center;
  margin-bottom: 18px;
}
.mo-header h1 {
  font-size: clamp(24px, 2.8vw, 36px);
  margin: 0;
  color: #0c3c78;
  font-weight: 700;
}
.mo-header .subtitle {
  margin-top: 6px;
  color: #55606b;
  font-size: 15px;
}

/* Card look */
.mo-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(12,60,120,0.06);
  padding: 0;
  overflow: hidden;
}
.mo-card .card-body {
  padding: 28px;
}

/* Section headings inside */
.mo-section-title {
  font-size: 1.15rem;
  color: #0c3c78;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.mo-section-title i { color: #f1c40f; }

/* Management list */
.management-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
}
.management-list li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(10,25,40,0.06);
  display: flex;
  flex-direction: column;
}
.management-list li:last-child { border-bottom: none; }

.management-list .name {
  font-weight: 700;
  color: #111827;
  font-size: 1.02rem;
}
.management-list .role {
  color: #5b6770;
  font-style: italic;
  margin-top: 4px;
  font-size: 0.95rem;
}

/* Right column lists */
.simple-list {
  list-style: none;
  margin: 8px 0;
  padding: 0;
}
.simple-list li {
  margin: 8px 0;
  color: #111827;
}
.role-block { color: #5b6770; font-style: normal; margin-left: 6px; }

/* small heading inside card */
.small-heading {
  font-size: 1rem;
  color: #0c3c78;
  margin: 12px 0 6px 0;
}

/* divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(12,60,120,0.05), rgba(12,60,120,0.02));
  margin: 14px 0;
}

/* CTA */
.btn-primary {
  background: #0c3c78;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
}

/* Sticky behaviour on large screens for right column */
.sticky-card {
  position: sticky;
  top: 90px;
}

/* Responsive */
@media (max-width: 991px) {
  .sticky-card { position: static; margin-top: 2rem; }
  .mo-card .card-body { padding: 20px; }
  .management-list li { flex-direction: column; }

}
@media (max-width: 576px) {
  .mo-header h1 { font-size: 22px; }
  .mo-card .card-body { padding: 16px; }
}

/*faq page*/

.faq-section {
  background: url('../images/banner_bg.png') center/cover no-repeat;
}

.faq-title {
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 700;
  color: #0c3c78;
}

.faq-subtitle {
  font-size: 15px;
  color: #5b6770;
}

.accordion-button {
  font-weight: 600;
  color: #1d4996;
  background-color: #fff;
  box-shadow: none !important;
}

.accordion-button:focus {
  border-color: rgba(12,60,120,0.3);
  box-shadow: 0 0 0 0.25rem rgba(12,60,120,0.1);
}

.accordion-body {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

/*contact*/
.contact-heading
{
background: url('../images/banner_bg.png') center/cover no-repeat;
  text-align: center;
  padding: 70px 20px;
}
.contact-section {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        background: white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin: 40px auto;
        max-width: 1100px;
        border-radius: 8px;
        overflow: hidden;
    }
    .contact-form {
        flex: 1;
        padding: 30px;
        background: #f1f3f6;
    }
    .contact-form h2 {
        margin-bottom: 20px;
    }
    .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 5px;
        border: 1px solid #ccc;
        font-size: 14px;
    }
    .contact-form button {
        /*padding: 1vw 3vw 0.8vw;*/
        text-transform: uppercase;
        letter-spacing: 0.1vw;
        padding: 7px 20px;
        border: none;
        background: #0069d9;
        color: white;
        border-radius: 2vw;
        cursor: pointer;
        font-size: 16px;
        transition: background 0.3s;
    }
    .contact-form button:hover {
        background: #0053b3;
        
    }
    
    .contact-form button:active {
      background-color: #0053b3;
      transform: translateY(4px);
    }
    .contact-map {
        flex: 1;
        min-height: 350px;
    }
    .contact-map iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
    .contact-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
        padding: 20px;
    }
    .info-box {
        text-align: center;
        flex: 1 1 192px;
    }
    .info-box i {
        font-size: 30px;
        background: #0069d9;
        color: white;
        border-radius: 50%;
        padding: 15px;
        margin-bottom: 10px;
        display: inline-block;
    }
    @media(max-width: 768px) {
        .contact-section {
            flex-direction: column;
        }
        .contact-map {
            height: 300px;
        }
    }

/*    privacy page*/
.privacy-heading
{
 background: url('../images/banner_bg.png') center/cover no-repeat; 
 text-align: center;
  padding: 70px 20px;
}
/*.privacy::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background-color: #ccc;
}*/

