/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Logo Styling */
/* Logo Section */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;

  margin-right: 10px;
}


.site-header {
  background-color: #002f4b4b;
  padding:0;
  color: white;
   /* position: fixed; */
   /* position: static; */
   /* position: sticky; */

  top: 0;
  z-index: 1000;
}
/* .banner .navbar {
  padding: 0px 106px;

} */
.navbar {
  padding: 0px 106px;

}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin-left: 20px;
  transition: color 0.3s ease;

}

.navbar-nav .nav-link:hover {
  color: #00ff33 !important;
  /* optional hover color (orange) */
}

.animated-collapse {
  transition: all 0.4s ease;
  transform-origin: top;
}

.collapsing {
  height: auto !important;
  transition: all 0.4s ease;
  overflow: hidden;
  transform: scaleY(0);
  opacity: 0;
}

.collapse.show {
  transform: scaleY(1);
  opacity: 1;
}

.dropdown-menu li a {
  color: #fff;
}
   .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
      background-color: #05bf21b1;

    }
    /* .dropdown:hover .dropdown-menu h6 a{
   
      color: #3200fc;
      text-decoration: none ;
    } */

    /* Full-width mega menu */
    .dropdown-fullwidth .dropdown-menu {
      width: 100%;
      left: 0;
      right: 0;
      top: 100%;
      border-radius: 0;
    }
    .dropdown-menu1 {
      background-color: #00ad14;
    }
     .dropdown-menu1 li {
      padding: 5px;

    }
    .dropdown-menu1 li:hover{
      padding: 5px;
      background-color: #fff;
    }
.dropdown-menu1 a.nav-link {
    padding: 0.25rem 0;
    display: block;
  }
 

    .dropdown-fullwidth .dropdown-menu > .container {
      display: flex;
      flex-wrap: wrap;
    }
/* //// */
    .mega-column {
      min-width: 180px;
      margin-bottom: 20px;
    }

    .mega-column h6 a {
      font-weight: 600;
      font-size: 1rem;
       color: #3200fc;
      text-decoration: none ;
       padding: 5px;

    }
    .mega-column h6 a:hover {
    background-color: #fff;
       color: #05bf21b1;
       padding: 5px;
       border-radius: 5px;
    
    }

    .mega-column .dropdown-item {
      font-size: 0.875rem;
      padding: 0.25rem 0;
      color: #fff;
    }
     .mega-column .dropdown-item:hover {

      color: #000000;
    }
      .mega-column .dropdown-item:hover {
     background: none;
    }


    .dropdown-menu {
      border: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    

/* banner start */

.carousel-section {
  position: relative;
  padding: 0px;
}

.carousel-item {
  position: relative;
  /* height: 100vh; */
  /* min-height: 400px; */
  height: 700px;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
}

.carousel-caption {
  position: absolute;
  
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: white;
  z-index: 2;
}

.carousel-caption h5 {
  font-size: 60px;
  font-weight: 600;
}

.carousel-caption p {
  font-size: 17px;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 25, 55, 0.5);
  /* dark overlay */
  z-index: 1;
}

/* Animation Classes */
.slide-in-left {
  animation: slideInLeft 1s ease forwards;
}

.zoom-in {
  animation: zoomIn 1s ease forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.6s;
}

.delay-2 {
  animation-delay: 0.9s;
}

/* Keyframes */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Styling */
.btn-primary {
  background-color: #004aad;
  border-color: #004aad;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 30px;
}

.btn-outline-light {
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-outline-light:hover {
  /* background-color: #ffffff; */
  color: #004aad;
  border-color: #ffffff;
}


/* //// */

/* .hero {
  background: linear-gradient(to right, #002f4b, #00587a);
  color: white;
  padding: 5rem 1rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .btn {
  display: inline-block;
  background-color: #ffd700;
  color: #002f4b;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  margin-top: 1rem;
  border-radius: 5px;
} */

section {
  padding: 4rem 0;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #002f4b;
}

/* About Section Layout start */

.about-section {
  background: linear-gradient(to right, #f9f9f9, #ffffff);
}

.section-title.gradient-text {
  background: linear-gradient(to right, #004aad, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.abou-text-cntn-bx{
  position: relative;
  z-index: 1;

}
.abou-text-cntn-bx::before{
 content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url(../asset/images/Group\ 165.webp);
  background-size: cover;
  background-position: center;
  opacity: 0.2; /* set between 0 (transparent) and 1 (fully visible) */
  z-index: -1;/
}
.about-section h2 {
  text-align: left;
}

.about-description {
  font-size: 1.05rem;
  color: #444;
}

.about-highlights li {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
}

.icon-style {
  color: #007bff;
  margin-right: 10px;
  font-size: 1.2rem;
}

.read-more-btn {
    background: linear-gradient(135deg, #04d520, #032a0965);

  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  /* border: none; */
  /* border: 1px solid #00ad14; */
}
.read-more-btn2{
border: 1px solid #00ad14;
  color: #00ad14;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.read-more-btn:hover {
  transform: translateY(-2px);
border: 1px solid #00ad14;
  color: #00ad14;
  background: none;
}

.read-more-btn2:hover {
  transform: translateY(-2px);
      background: linear-gradient(135deg, #04d520, #032a0965);
color: #fff;
}

.about-img-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.about-img-wrapper .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 74, 173, 0.05);
  transition: 0.4s ease-in-out;
}

.about-img-wrapper:hover .img-overlay {
  background: rgba(0, 74, 173, 0.15);
}



/* About Section Layout end*/

/* video play section start */

/* .firm-video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.video-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(0, 47, 75, 0.6));
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.video-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

.video-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.5s;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .video-content h2 {
    font-size: 2rem;
  }

  .video-content p {
    font-size: 1rem;
  }
} */

/* video play section end */


/* Service Boxes-section start */

.services-section {
    background-image: url(../asset/images/Group\ 165.png);
  /* background-size: cover; */
  background-position: center;
  background-repeat: no-repeat;
  background-color: #004aad;
  /* background: linear-gradient(135deg, #004aad, #1b263b); */
  /* background-color: #004aad; */

  position: relative;
  overflow: hidden;
}

.service-card-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
   height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Keeps button at bottom */
}

.service-card-glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.btn-glass {
  background: #07ea2d69;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-glass:hover {
  background: #ffffff;
  color: #0d1b2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}


/* Service Boxes-section end */

/* staff sectiin start */
 /* .staff-section{
  background-image: url(../asset/images/Group\ 165.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #00ad14;
 } */
.bg-white {
  background: #f4f6f8 !important;
}

.text-gradient-dark {
  background: linear-gradient(to right, #004aad, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.staff-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.staff-desc {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.staff-card-glass {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease-in-out;
  text-align: center;
  position: relative;
}

.staff-card-glass:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.staff-img-wrapper {
  overflow: hidden;
  position: relative;
  height: 320px;
}

.staff-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.staff-card-glass:hover .staff-img {
  transform: scale(1.05);
}

.staff-info-box {
  padding: 20px;
  background: #120861;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.staff-info-box h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 5px;
}

.staff-info-box p {
  color: #909090;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.staff-info-box span {
  font-weight: 500;
  color: #007bff;
}

/* Swiper custom buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #333;
}



/* staff sectiin end */


/* dedicated suppoert start */

.support-section {
  position: relative;
  background: #f4f6f8;
  overflow: hidden;
}

.support-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002f4b;
  margin-bottom: 20px;
  text-align: left;
}
.speck-exrt-cntnt-bx{
  position: relative;
  z-index: 1;
}
.speck-exrt-cntnt-bx::before{
    content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url(../asset/images/Group\ 165.webp);
   background-size: cover;
  background-position: center;
  opacity: 0.2; /* set between 0 (transparent) and 1 (fully visible) */
  z-index: -1;
}
.support-desc {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn-primary-custom {
  /* background-color:  #07410c; */
  background: linear-gradient(135deg, #014509, #51a65e);

  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #06307d;
  background: linear-gradient(135deg, #012345, #5e51a6);

  color: #ffffff;
}

.support-img img {
  border-radius: 16px;
  max-height: 400px;
  object-fit: cover;
}

/* Decorative shapes */
.support-shape-left,
.support-shape-right {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: linear-gradient(135deg, #002f4b, #fdb913);
}

.support-shape-left {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.support-shape-right {
  width: 250px;
  height: 250px;
  bottom: -100px;
  right: -80px;
}

/* dedicated suppoert end */


/* artical section start */

.articles-section {
  /* background: linear-gradient(135deg, #004aad, #007bff); */
  background: linear-gradient(135deg, #004aad, #1b263b);

  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-description {
  font-size: 1.05rem;
  line-height: 1.6;
}

.article-card-alt {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
  height: 340px;
}

.article-card-alt:hover {
  transform: translateY(-10px);
}

.article-img {
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
  transition: 0.5s ease;
}

.article-card-alt:hover .article-img {
  filter: brightness(1);
}

.article-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  transition: 0.3s ease-in-out;
  color: #fff;
  backdrop-filter: blur(4px);
}

.article-overlay h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.article-overlay p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 12px;
}

.btn-read-glow {
  background: #ffffff;
  color: #14ad00;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-read-glow:hover {
  background: #004aad;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}



/* artical section end */

/* event section start */

.events-updates-section {
  background: #f8fafc;
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  color: #002f4b;
  font-weight: bold;
}

.section-subtitle {
  color: #555;
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
}

/* 🎉 Event Box */
.event-box {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.event-box:hover {
  transform: scale(1.03);
}

.event-content {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 20px;
  width: 100%;
}

.event-date {
  background: #188903;
  color: #ffffff;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.event-date .day {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

/* ⏳ Updates */
.updates-heading {
  font-size: 2rem;
  color: #002f4b;
}

.update-box {
  background: #fff;
  border-left: 5px solid #1361fd;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.update-box:hover {
  transform: translateY(-4px);
}

.update-date {
  font-weight: bold;
  color: #002f4b;
  font-size: 1rem;
  margin-bottom: 10px;
}

.update-content h5 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: #222;
}

.update-content p {
  margin: 0;
  color: #555;
}

/* event section end */

/* insight section start */



.insight-section-new {
  /* background: linear-gradient(135deg, #004aad, #007bff); */
  background: linear-gradient(135deg, #004aad, #1b263b);

  position: relative;
  overflow: hidden;
  color: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
}

.insight-card-new {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.insight-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.insight-card-new picture,
.insight-card-new img {
  width: 100%;
  height: 200px; /* Fixed height for all images */
  object-fit: cover;
  display: block;
}

.insight-content-new {
  padding: 20px;
  color: #333;
}

.insight-content-new h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #004aad;
}

.insight-content-new p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #555;
}

.btn-read {
  background: #00ad14;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-read:hover {
  background: #00357f;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* Optional wave shape at the bottom */
.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('https://www.svgrepo.com/show/491116/wave.svg') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
  opacity: 0.2;
}



/* insight section end */

/* career section satrt */

.career-section {
  /* background: linear-gradient(135deg, #f0f6ff, #e8edff); */
  background-image: url(../asset/images/Rectangle\ 110.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: center;
}

.career-box {
  background: #ffffff9f;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 47, 75, 0.1);
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.career-box:hover {
  transform: translateY(-5px);
}

.career-sticker img {
  width: 100px;
  animation: bounce 3s infinite;
  margin-right: 30px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.career-content {
  flex: 1;
  min-width: 250px;
  margin-left: 20px;
  display: flex !important;
  align-items: center !important;
  /* justify-content: center !important; */

}

.career-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #002f4b;
  /* margin-bottom: 15px; */
  margin-right: 50px !important;
}

.career-btn {
  display: inline-flex;
  align-items: center;
  background: #002f4b;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.career-btn .arrow {
  margin-left: 10px;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.career-btn:hover {
  background: #004070;
}

.career-btn:hover .arrow {
  transform: translateX(5px);
}

/* Responsive */


@media (max-width: 768px) {
  .career-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .career-title {
    font-size: 1.5rem;
  }
  
  .career-content {
    margin-left: 0;
    margin-top: 20px;
  }

  .career-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .career-sticker img {
    max-width: 120px;
  }
}

/* Extra small devices (phones below 480px) */
@media (max-width: 480px) {
  .site-header{
    padding: 0px;
  }
  .navbar{
    padding: 0px;
  }
  .carousel-caption h5{
    font-size: 40px;
  }
  .career-box {
    padding: 1rem;
    gap: 1rem;
    /* height: 500px; */
    /* display: block !important; */
  }
  .support-desc{
    margin-bottom: 0px;
  }
.support-img img{
  margin-top: 30px;
}
  .career-title {
    font-size: 1.25rem;
    /* margin: 0px !important; */
    margin-right: 0px !important;
    margin-bottom: 10px;
  }
 .career-content {
   display: grid !important;
   margin: 0px;
  }
  .career-btn {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
        display:flow-root !important;
  }

  .career-sticker img {
    max-width: 50px;
  }
}

/* career section end */



/* footer section start */

.footer-section {
  background-color: #e3e3e3;
  color: #111;
  font-family: 'Segoe UI', sans-serif;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 1px solid #999;
  padding-bottom: 0.5rem;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.5rem;
  font-size: 14px;
  
}

.footer-list li i {
  margin-right: 8px;
}

.footer-list a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-text {
  font-size: 13px;
  margin-bottom: 0.8rem;
}

.newsletter-form input[type="email"] {
  font-size: 14px;
  padding: 8px 10px;
}

.newsletter-form button {
  font-size: 14px;
  padding: 8px 10px;
}

.footer-title {
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ffc107;
  text-decoration: underline;
}
.list-unstyled li a{
  text-decoration: none;
  color: #fff;
}
.list-unstyled li a:hover{
    color: #068d23;

}
.list-unstyled li a i{
margin-right: 10px;
}

/* footer section end */

/* contact page start*/

   .info-box {
      background: #fff;
      border-radius: 1rem;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
      padding: 30px;
      transition: transform 0.3s ease;
    }
    .info-box:hover {
      transform: translateY(-5px);
    }
    .info-box2{
      background: #0532c840;
      border-radius: 1rem;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
      padding: 30px;
      transition: transform 0.3s ease;
    }
     .info-box2:hover {
      transform: translateY(-5px);
    }
     .info-box3{
      background: #010d04bd;
      border-radius: 1rem;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
      padding: 30px;
      transition: transform 0.3s ease;
      color: #fff;
    }
    .info-box3 a{
   color: #fff;
   text-decoration: none;
    }
     .info-box3:hover {
      transform: translateY(-5px);
    }
    .contact-info-icon {
      color: #0d6efd;
      font-size: 1.5rem;
    }
    .contact-info-icon:hover {
      color: #0dfd59;
      font-size: 1.5rem;
    }
     .decor-wave {
      position: relative;
      height: 120px;
      background: url('https://svgshare.com/i/12xv.svg') no-repeat center bottom / cover;
      margin-top: -50px;
    }
    .contact-highlight {
      background: linear-gradient(135deg, #d0ebff, #e6fcf5);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .contact-highlight::before {
      content: "";
      position: absolute;
      top: -40px;
      left: -40px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(13, 109, 253, 0.326) 40%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }
    .contact-highlight::after {
      content: "";
      position: absolute;
      bottom: -60px;
      right: -60px;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgb(4, 209, 72) 40%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }
    .contact-highlight h2,
    .contact-highlight p {
      position: relative;
      z-index: 1;
    }
    .contact-highlight h2 {
      font-size: 2.4rem;
      font-weight: 600;
      color: #084298;
    }
    .contact-highlight p {
      font-size: 1.1rem;
      color: #495057;
      margin: 20px auto;
      max-width: 720px;
    }
    .map-card iframe {
      border: none;
      border-radius: 1rem;
      width: 100%;
      height: 350px;
    }
      .info-box3 i {
      min-width: 30px;
    }

    iframe {
      width: 100%;
      height: 300px;
      border: 0;
    }

