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

@font-face {
  font-family: 'Degular';
  src: url('/fonts/Degular-Medium.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Degular', sans-serif;
}

/* body {
  font-family: "Manrope", sans-serif !important;
  background-color: #fff;
} */

:root {
  --primary_color: #1E73BE;
  --dark: #323232;
}

a:hover {
  /* color: #000 !important; */
}

.navbar {
  max-height: 90px;
  background: #fff;
}

.navbar-toggler-icon {
  background-image: url(../images/menu.svg);
  content: "";
}

.navbar.scrolled .navbar-toggler-icon {
  background-image: url(../images/white-menu.svg);
  content: "";
}



.navbar-toggler:focus {
  box-shadow: none !important;
}

/* .navbar.background {
  padding: 0;
  background: transparent !important;
  position: absolute;
  z-index: 1;
  width: 100%;
  border-bottom: 1px solid rgb(255 255 255 / .2);
} */

.navbar.background {
  padding: 0;
  /* background: rgba(255, 255, 255, 0.4); */
  background: #fff;
  backdrop-filter: blur(8px);
  /* position: fixed; */
  /* make it stay on top while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* When scrolled */
.navbar.scrolled {
  background-color: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Adjust link color on scroll */
.navbar.scrolled .nav-link {
  color: #000 !important;
}

.navbar .nav-link {
  color: var(--primary_color) !important;
  transition: color 0.3s ease;
}

.navbar .nav-link.dropdown-toggle {
  color: #000 !important;
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-link.dropdown-toggle {
  /* background-color: var(--primary_color); */
  color: #fff !important;
  background: linear-gradient(90deg, #1E73BE, #000000);

}

.navbar.scrolled .login a {
  color: #000;
}



/* When scrolled: black icons on white navbar */
.navbar.scrolled .login a img,
.navbar.scrolled .btn img {
  filter: brightness(0) invert(0);
}



.navbar .navbar-brand img {
  width: 180px;
}

.navbar .nav-link {
  color: #fff;
  font-size: 20px;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover {
  color: #fff !important;
  background-color: var(--primary_color);
  border-radius: 5px;
  padding: 8px 12px;
}

.navbar .nav-link.active-nav {
  color: #fff !important;
  background-color: var(--primary_color);
  border-radius: 5px;
  padding: 8px 12px;
}

.navbar .nav-link[aria-current="page"] {
  color: #fff !important;
  background-color: var(--primary_color);
  border-radius: 5px;
  padding: 8px 12px;
}

.navbar .nav-link.dropdown-toggle:hover,
.navbar .nav-link.dropdown-toggle.active,
.navbar .nav-link.dropdown-toggle.active-nav {
  background-color: var(--primary_color);
  color: #fff !important;
}

/* Modal navigation */
.modal .navbar-nav .nav-link {
  color: #000;
  font-size: 18px;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.modal .navbar-nav .nav-link:hover,
.modal .navbar-nav .nav-link.active-nav {
  color: var(--primary_color);
  background-color: #f8f9fa;
  border-radius: 5px;
  padding-left: 10px;
}

.modal .dropdown-item {
  color: #666;
  transition: color 0.3s ease;
}

.modal .dropdown-item:hover {
  color: var(--primary_color);
}

.navbar .dropdown-menu {
  background: #000;
  padding: 20px;
  min-width: 300px;

  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.navbar .dropdown-menu li {
  /* width: 50%;
  display: inline-block; */
}

.navbar .dropdown-menu .dropdown-item {
  color: #a4a4a4;
  padding: 10px;
  /* display: inline-block; */
  transition: transform 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
  color: #fff;
  background: none;
  transform: translatex(10px);
}

.navbar-nav {
  align-items: center;
}

.navbar .nav-link.dropdown-toggle {
  color: var(--primary_color) !important;

  background-color: transparent;
  border-radius: 5px;
  padding: 8px 12px;
  transition: background-color 0.3s ease;
}

/* .navbar .login a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  display: flex;
  gap: 6px;
  align-items: center;
} */

.navbar .call-us-section {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 6px;
  gap: 10px;
  border: 1px solid #fff;
  border-radius: 10px;
}

.navbar .call-us-section img {
  width: 30px;
}

.navbar .call-us-section p {
  font-size: 12px;
  color: #000;
  margin-bottom: 0px;
}

.navbar .call-us-section a {
  font-size: 16px;
  color: var(--primary_color);
  text-decoration: none;
  
  /* font-weight: 600; */
}

.navbar .btn {
  padding: 0;
  margin-left: 20px;
}

.herosection-1 {
  position: relative;
  z-index: 0;
}

.herosection-1 .swiper-slide::before {
  content: "";
  /* background: linear-gradient(to right,
      rgba(128, 0, 128, 0.6),
      rgba(0, 0, 255, 0.6)
    ); */
  background: rgba(0, 0, 0, 0.66);
  height: 100vh;
  width: 100%;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
}



.herosection-1 .swiper-slide .content {
  height: 80vh;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media screen and (max-width:576px) {
  .herosection-1 .swiper-slide .content {
    padding: 20px;
    height: auto;
    min-height: 80vh;
  }
}

.herosection-1 .swiper-slide .content h1 {
  color: #fff;
  font-size: 50px;
  text-align: center;
  font-weight: bolder;
}

@media screen and (max-width:576px) {
  .herosection-1 .swiper-slide .content h1 {
    font-size: 40px;
  }
}

.herosection-1 .swiper-slide.new-banner::before {
  content: "";
  background: none;
  height: 100vh;
  width: 100%;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
}

.herosection-1 .swiper-slide.new-banner .content {
  padding: 100px 0 0 0;
  display: block;
  margin-left: 100px;
}

@media screen and (max-width:576px) {
  .herosection-1 .swiper-slide.new-banner .content {
    padding: 100px 0 0 0;
    display: flex;
    margin-left: 0px;
  }
}

.herosection-1 .swiper-slide.new-banner .content img {
  width: 150px;
}

.herosection-1 .swiper-slide.new-banner .content h1 {
  text-align: left;
  font-size: 60px;
  font-weight: bolder;
}

@media screen and (max-width:576px) {
  .herosection-1 .swiper-slide.new-banner .content h1 {
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
  }
}

.herosection-1 .swiper-slide.new-banner .content p {
  color: #000;
  font-size: 20px;
  text-align: left;
}

.herosection-1 .swiper-slide.new-banner .image-section img {
  width: 50%;
}



.herosection-1 .swiper-slide .content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
  max-width: 900px;
}

@media screen and (max-width:576px) {
  .herosection-1 .swiper-slide .content p {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.3;
  }
}
/* Mobile */
@media (max-width: 768px){

    .course-title{
        font-size: 14px;
        line-height: 1.2;

        max-width: 320px;
       

        margin: auto;
        text-align: center;
    }

}

/* Add keyframes for fade-in */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply the animation to h1 and p */
.herosection-1 .swiper-slide .content h1,
.herosection-1 .swiper-slide .content p {
  opacity: 0;
  /* start hidden */
  animation: fadeInUp 1s ease forwards;
  /* fade in & move up */
}

/* Delay p so it appears slightly after h1 */
.herosection-1 .swiper-slide .content p {
  animation-delay: 0.5s;
}

.herosection-1 .swiper-slide .content a {
  padding: 16px 24px;
  background: linear-gradient(90deg, #1E73BE, #000000);
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: 1;
  display: inline-block;
}

@media screen and (max-width:576px) {
  .herosection-1 .swiper-slide .content a {
    padding: 12px 20px;
    font-size: 14px;
    margin-top: 15px;
  }
}

.herosection-1 .swiper-slide .content a:hover {
  background: #fff;
  color: var(--primary_color);
}

.herosection-2 {
  padding: 60px 0;
}

.herosection-2 .item {
  padding: 50px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 380px;
  background-color: #fff;
  position: relative;
  margin-bottom: 24px;
  transition: all 0.4s ease;
  /* smooth transition for all properties */
  cursor: pointer;
}

@media screen and (max-width:576px) {
  .herosection-2 .item {
    padding: 30px 20px;
    height: 400px;

  }
}

.herosection-2 .item:hover {
  padding: 60px 50px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 400px;
  /* background-color: #404040; */
  background: linear-gradient(90deg, #1E73BE, #000000);
  position: relative;
  margin-bottom: 24px;

  color: #fff;
  /* changes text color */
  transform: translateY(-10px);
  /* subtle lift effect */
}

.herosection-2 .item h1 {
  font-size: 28px;
  color: #000;
  font-weight: 600;
}

.herosection-2 .item:hover h1 {
  color: #fff;
}

.herosection-2 .item:hover p {
  color: #fff;
}

.herosection-2 .item a {
  display: inline-block;
  /* ensures transform works properly */
  transition: transform 0.3s ease;
  /* smooth movement */
}

.herosection-2 .item:hover a {
  color: #fff;
  transform: translateX(5px);
  /* moves the link 5px to the right */
}

.herosection-2 .item P {
  font-size: 15PX;
  color: #7e7e7e;
  font-weight: 400;
}

.herosection-2 .item a {
  font-size: 18px;
  text-decoration: none;
  color: var(--primary_color);
  display: flex;
  gap: 15px;
  position: absolute;
  bottom: 40px;
  align-items: center;
}

.herosection-2 .item a img {
  width: 20px;
}

.item:hover img {
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}


.herosection-3 {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    
    /* Main Gradient Background */
    background: linear-gradient(
        180deg,
        #F7FBFF 0%,
        #EEF5FC 100%
    );
}

/* Pattern Shape */
/*.herosection-3::before {
      content: "";
    position: absolute;

    bottom: -120px;
    left: -120px;

    width: 420px;
    height: 420px;

    /* Stronger Dots */
    /* background: 
        radial-gradient(
            rgba(30, 115, 190, 0.28) 3px,
            transparent 3px
        );

    background-size: 22px 22px;

    border-radius: 50%;

    filter: blur(0.5px);

    opacity: 1;

    pointer-events: none;
 } */


/* Extra Glow Effect */
.herosection-3::after {
    content: "";
    position: absolute;

    bottom: -180px;
    left: -180px;

    width: 500px;
    height: 500px;

    background: radial-gradient(
        circle,
        rgba(30,115,190,0.12) 0%,
        transparent 70%
    );

    pointer-events: none;
}

.herosection-3 .heading h3 {
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.herosection-3 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  border: none;
}

.herosection-3 ul li {
  list-style: none;
  justify-content: space-between;
}

.herosection-3 ul li a {
  text-decoration: none;
  font-size: 15px;
  color: #7d7d7d;
}

.herosection-3 ul li .nav-link.active {
  color: #7d7d7d;
  border-bottom: 2px solid var(--primary_color);
}

.herosection-3 ul li .nav-link {
  color: #7d7d7d;
  border: none;
}


.herosection-3 .card {
  /* border: 1px solid #dbe1e5; */
  border-radius: 5px;
  min-height: auto;
  position: relative;
  padding: 12px;
  background: linear-gradient(135deg, #FFFFFF, #F4F9FF);
  border: 1px solid #7bb9f7;
  border-radius: 20px;
  transition: 0.6s ease;
  box-shadow: 0 10px 30px rgba(30,115,190,0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}

.herosection-3 .card .image {
  border-radius: 5px;
  overflow: hidden;
  /* padding: 10px; */
  position: relative;
  height: 200px;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.herosection-3 .card .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1E73BE, #000000);
  top: 0;
  opacity: 0.3;


}

.herosection-3 .card .image img {
  width: 100%;
}

.herosection-3 .card .content {
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.herosection-3 .card .content h5 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  height: 55px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 8px 0;
}

.herosection-3 .card .content p {
  font-size: 14px;
  color: #7e7e7e;
  font-weight: 400;
  line-height: 1.4;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}

.herosection-3 .card .duration {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  margin-top: 6px;
}

.herosection-3 .card .duration i,
.herosection-3 .card .duration span {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #7e7e7e;
}

.herosection-3 .card .content-bottom {
  padding-top: 8px;
  margin-top: auto;
  width: 100%;
  min-height: 35px;
  display: flex;
  align-items: flex-end;
}

.herosection-3 .card .content-bottom a {
  font-size: 14px;
  text-decoration: none;
  color: var(--primary_color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* ensures transform works properly */
  transition: transform 0.3s ease;
  /* smooth movement */
  font-weight: 500;
}

.herosection-3 .card .content-bottom a i img {
  margin-left: 10px;
}

.herosection-3 .card .content-bottom:hover a {
  transform: translateX(6px);
  /* moves the link 5px to the right */
  transition: transform 0.3s ease;
  /* smooth movement */
}


.herosection-3 .card .content-bottom a img {
  width: 20px;
}

.herosection-4 {
  background: var(--primary_color);
  padding: 40px 0;
  position: relative;
}

.herosection-4::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;

}

.herosection-4 .heading {
  margin-bottom: 60px;
  z-index: 2;
}

.herosection-4 .heading h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.herosection-4 .heading p {
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.herosection-4 .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.herosection-4 .swiper-slide .student {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.herosection-4 .swiper-slide .student img {
  width: 114px;
  height: 114px;
}

.herosection-4 .swiper-slide .student h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  /* margin-top: 30px; */
  margin-top: 16px;
}

.herosection-4 .swiper-slide .student p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.herosection-4 .swiper-slide .content {
  padding: 0 20px;
}

.herosection-4 .swiper-slide .content p {
  text-align: center;
  color: #fff;
  font-size: 16px;
}

.herosection-5 {
  padding: 60px 30px;
  background-color: #fff;
}



.herosection-5 .col-lg-5 .image {
  display: flex;
  align-items: center;
  position: relative;
}

.herosection-5 .col-lg-5 .image img {
  width: 100%;
  height: auto;
  display: block;
}

.herosection-5 .col-lg-5 .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* adjust opacity here */
  z-index: 1;
}

.herosection-5 .col-lg-5 .image .post-date {
  /* bottom: 30px;
  font-weight: 700;
  max-width: 95px;
  position: absolute;
  right: 30px;
  text-align: center;
  position: absolute;
  background-color: #000;
  padding: 10px; */
  position: absolute;
  bottom: 20px;
  right: 20px;
  /* moved to right side */
  z-index: 2;
  /* above overlay */
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  /* optional backdrop */
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
}

.herosection-5 .col-lg-5 .image .post-date h1 {
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 50px;
  margin-bottom: 0;
}

.herosection-5 .col-lg-5 .image .post-date {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}


.herosection-5 .col-lg-5 .image img::before {
  background-color: rgb(0 0 0 / .3);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.herosection-5 .content {
  padding: 0 50px;
}

@media screen and (max-width:576px) {
  .herosection-5 .content {
    padding: 30px;
  }
}

.herosection-5 .content ul li {
  list-style: none;
}

.herosection-5 .content ul li span img {
  width: 24px;
}

.herosection-5 .content h3 {
  font-size: 40px;
  color: #0a0a0a;
  line-height: 1.091;
  margin-bottom: 15px;
  font-weight: 700;
}

.herosection-5 .content p {
  font-size: 15px;
  color: #7e7e7e;
  line-height: 1.6;
}

.herosection-5 .content ul {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.herosection-5 .content ul {
  margin-top: 25px;
}

.herosection-5 .content ul li {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.herosection-5 .content ul li span {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.herosection-5 .content a {
  text-decoration: none;
  background: var(--primary_color);
  padding: 6px 12px;
  color: #fff;
  font-size: 15px;
  border-radius: 6px;
  margin-top: 50px;
}

.herosection-6 {
  background-color: #fff;
  padding: 60px 0;
}

.herosection-6 .heading h4 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}

.herosection-6 ul {
  background-color: var(--none);
  padding: 10px 15px;
  border-radius: 6px;
}

.herosection-6 ul .nav-link.active {
  color: var(--primary_color);
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
}

.herosection-6 ul .nav-link {
  color: #fff;
  border: none;
  font-size: 15px;
}

.herosection-6 .tab-pane p {
  font-size: 15px;
  padding: 10px 0;
}

/* .herosection-7 {
  background-color: #fff;
}

.herosection-7 form {
  align-items: center;
}

.herosection-7 input.form-control {
  background-color: #fff;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 5px 0 0 5px;
  height: 48px;
  margin-right: 0 !important;
  padding-left: 20px;
  padding-right: 0;
  width: 258px;
  font-size: 14px;
}

.herosection-7 input.form-control:focus {
  box-shadow: none;
}

.herosection-7 i {
  border: 1px solid #ddd;
  border-left: none;
  padding: 11px;
  border-radius: 0 5px 5px 0;
  height: 48px;
} */

.herosection-8 {
  padding: 50px 0;
  background-color: #fff;
}

.herosection-8 h3 {
  font-size: 26px;
  text-align: center;
  font-weight: 600;
}

footer {
  padding: 60px 0 0 0;
  position: relative;
  overflow: hidden;
}

footer::after {
  content: "";
  position: absolute;
  background-image: url(../images/footer-vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: -1;

}

footer .footer-top {
  padding: 60px 0;
}

@media screen and (max-width:576px) {
  footer .footer-top {
    padding: 30px 0;
  }
}

/* footer:before {
  background-image: url(./images/element.png);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: -75px;
  z-index: -1;
} */

@media screen and (max-width:768px) {
  footer .footer-top .footer-content {
    margin-top: 10px;
  }

}

footer .footer-top .footer-content h4 {
  font-size: 20px;
  font-weight: 600;
}

footer .footer-top .footer-content p {
  font-size: 15px;
  color: #747576;
}

footer .footer-top .footer-content a {
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  transition: transform 0.3s ease;
  color: var(--primary_color);
  /* smooth movement */
}

footer .footer-top .footer-content a:hover {
  color: #000;
  transform: translateX(6px);
  /* moves the link 5px to the right */

}

footer .footer-middle .social-media-icons {
  display: flex;
  align-items: center;
}

@media screen and (max-width:576px) {
  footer .footer-middle .social-media-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

footer .footer-middle .logo img {
  width: 180px;
}

footer .footer-middle ul {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
}

@media screen and (max-width:576px) {
  footer .footer-middle ul {
    margin-bottom: 14px;
  }
}

footer .footer-middle ul li {
  list-style: none;
}

footer .footer-middle ul li i {
  width: 24px;
  height: 24px;
}

footer .footer-bottom {
  background-color: #ebeef4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width:576px) {
  footer .footer-bottom {
    background-color: #ebeef4;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

footer .footer-bottom p {
  /* text-align: center; */
  color: #969696;
  font-size: 15px;
  padding: 25px 0;
  margin-bottom: 0;
}

@media screen and (max-width:576px) {
  footer .footer-bottom p {
    text-align: center;
    padding-bottom: 10px;
  }
}

footer .footer-bottom img {
  width: 100px;
}

footer .footer-bottom .left-section {
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

@media screen and (max-width:576px) {
  footer .footer-bottom .left-section {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

footer .footer-bottom .right-section {
  display: flex;
  align-items: center;
  justify-content: end;
}

@media screen and (max-width:576px) {
  footer .footer-bottom .right-section {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.testimonial-section .testimonial-Swiper {
  padding-bottom: 40px;
}

.testimonial-section .testimonial-Swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  width: 10px;
  height: 10px;
}

.testimonial-section .testimonial-Swiper .swiper-pagination .swiper-pagination-bullet-active {
  border: 4px solid #fff;
  background: white;
  opacity: 1;
}

.modal .list-unstyled a {
  text-decoration: none;
}

.modal a img {
  margin-right: 8px;
}

.modal a[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
  transition: 0.3s;
}

.modal a[aria-expanded="false"] .bi-chevron-down {
  transition: 0.3s;
}

.modal .call-us-section {
  gap: 10px;
}

.modal .call-us-section img {
  width: 30px;
}

.modal .call-us-section .right a {
  text-decoration: none;
  color: var(--primary_color);
  font-weight: 600;
  font-size: 14px;
}

.modal .call-us-section p {
  font-size: 10px;
  color: #fff;
  margin-bottom: 0;
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 20px;
  background-color: #fff;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}


.phone {
  position: fixed;
  width: 60px !important;
  height: 60px !important;
  bottom: 100px;
  right: 20px;
  background-color: #fff;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.phone:hover {
  transform: scale(1.1);
}

.phone img {
  width: 50px;
  height: 50px;
}

.callus-no {
  color: var(--primary_color);
  font-weight: 500;
  font-size: 16px;

}

.enquiry {

  width: auto;
  height: auto;
  bottom: 260px;
  right: 20px;
  background: linear-gradient(90deg, #1E73BE, #000000);
  color: #ffffff;
  border-radius: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  padding: 16px;
  text-decoration: none;
  border: 1px solid #fff;
}

 .enquiry:hover {
  transform: scale(1.1);
} 

.enquiry img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}


/*-- ABOUT SECTION --*/

.about-section-top {
  background-image: url(../images/about-section.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.about-section-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.about-section-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.about-section-top .heading h1 {
  font-size: 50px;
  color: #fff;
  text-align: center;
}

.about-section-1 {
  background: var(--primary_color);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.about-section-1::before {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  /* top: 20px; */
  left: 0;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}


.about-section-1 .row {
  display: flex;
  align-items: center;
}

.about-section-1 .content h1 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-section-1 .content p {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.about-section-1 .image-section img {
  width: 100%;
}

.about-section-2 {
  padding: 60px 0;
}

.about-section-2 {
  background: #fff;
}

.about-section-2 .row {
  display: flex;
  align-items: center;
}

/* .about-section-2 .image-section{
  overflow: hidden;
} */

.about-section-2 .image-section img {
  width: 100%;
  border-radius: 50px 0 50px 0;
}

.about-section-2 h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary_color);
}

.about-section-2 .content h5 {
  color: #4B5563;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: center;
}

.about-section-3 {
  background: #fff;
  padding: 60px 0;
}

.about-section-3 .image-section img {
  width: 100%;
}

.about-section-3 .right {
  padding: 0 80px;
}

@media screen and (max-width:576px) {
  .about-section-3 .right {
    padding: 40px;
  }
}

.about-section-3 h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: 1E73BE;
}

.about-section-3 .content p {
 color: #4B5563;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 10px;
}

.about-section-4 {
  padding: 60px 0;
}

.about-section-4 .vision {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  min-height: 300px;
}

.about-section-4 .vision .image {
  display: flex;
  align-items: center;
}

.about-section-4 .vision .image i {
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 10px;
}

.about-section-4 .vision h1 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
  color: var(--primary_color);
}

.about-section-4 .vision p {
  font-size: 18px;
  line-height: 1.6;
  color: #4B5563;
  margin-top: 6px;
}


.about-section-4 .mission {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  min-height: 300px;
}

@media screen and (max-width:992px) {
  .about-section-4 .mission {
    margin-top: 20px;
  }
}

.about-section-4 .mission .image {
  display: flex;
  align-items: center;
}

.about-section-4 .mission .image i {
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 10px;
}

.about-section-4 .mission h1 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
  color: var(--primary_color);
}

.about-section-4 .mission ul {
  padding: 0;
  margin-bottom: 0;
}

.about-section-4 .mission li {
  list-style: none;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  color: #4B5563;
}

.about-section-4 .mission li i {
  margin-right: 10px;
  padding: 10px;
  background-color: #fff;
  flex-shrink: 0;
}

.about-section-4 .mission li i img {
  width: 14px;
}

.about-section-4 .strength {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
}

.about-section-4 .strength .image {
  display: flex;
  align-items: center;
}

.about-section-4 .strength .image i {
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 10px;
}

.about-section-4 .strength h1 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
  color: var(--primary_color);
}

.about-section-4 .strength ul {
  padding: 0;
}

.about-section-4 .strength .right ul:nth-of-type(2) {
  margin-left: 40px;
  /* adjust as needed */
}

.about-section-4 .strength .right {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .about-section-4 .strength .right {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-section-4 .strength .right ul:nth-of-type(2) {
    margin-left: 0;
  }
}

.about-section-4 .strength ul {
  margin-bottom: 0;
}

.about-section-4 .strength li {
  list-style: none;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: #4B5563;
  font-size: 18px;
}

.about-section-4 .strength li i {
  margin-right: 10px;
  padding: 10px;
  background-color: #fff;
  flex-shrink: 0;
}

.about-section-4 .strength li i img {
  width: 14px;
}

/* ==========postgraduate-sections======== */
.postgraduate-section-top {
  background-image: url(../images/postgaraduate-resized.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.postgraduate-section-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.postgraduate-section-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.postgraduate-section-top .heading h1 {
  font-size: 50px;
  color: #fff;
  text-align: center;

}

.postgraduate-section-top p {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

/* =======postgraduate-section-ends========== */




/*--  MANAGEMENT SECTION--*/

.management-section-top {
  background-image: url(../images/management-section-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.management-section-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.management-section-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.management-section-top .heading h1 {
  font-size: 50px;
  color: #fff;
  text-align: center;
}

.management-section-top p {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

.management-section-top .search-container {
  position: absolute;
  z-index: 1;
  top: 70%;
  /* adjust this to control vertical position */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  /* you can adjust the width as needed */
}

.management-section-top .search-container input {
  width: 100%;
  height: 62px;
  background: white;
  border-radius: 40px;
  padding-left: 20px;
  padding-right: 170px;
  box-sizing: border-box;
  font-size: 16px;
  border: 1px solid #ccc;
}

.management-section-top .search-container form {
  display: flex;
  align-items: center;
}

.management-section-top .search-container form input {
  position: relative;
}

.management-section-top .search-container a {
  display: flex;
  align-items: center;
  background: var(--primary_color);
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
  gap: 4px;
  position: absolute;
  right: 20px;
  border-radius: 20px;
}

.management-section-1 .card {
  border: 1px solid rgb(219, 225, 229);
  border-radius: 5px;
  min-height: 490px;
  position: relative;
  padding: 14px;
}

.management-section-1 .card .image {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.management-section-1 .card .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1E73BE, #000000);
  top: 0;
  opacity: 0.3;


}

.management-section-1 .card .image img {
  width: 100%;
}

.management-section-1 .card .content {
  padding: 14px 0;
}

.management-section-1 .card .content h5 {
  font-size: 22px;
  font-weight: 600;
}

.management-section-1 .card .content p {
  font-size: 14px;
  color: #7e7e7e;
  font-weight: 400;
}

.management-section-1 .card .content-bottom {
  padding: 10px;
  /* border: 1px solid #dbe1e5; */
  border-bottom: none;
  border-left: none;
  border-right: none;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.management-section-1 .card .content-bottom a {
  font-size: 14px;
  text-decoration: none;
  color: var(--primary_color);
  display: inline-block;
  /* ensures transform works properly */
  transition: transform 0.3s ease;
  /* smooth movement */
}

.management-section-1 .card .content-bottom a i img {
  margin-left: 10px;
}

.management-section-1 .card .content-bottom:hover a {
  transform: translateX(6px);
  /* moves the link 5px to the right */
  transition: transform 0.3s ease;
  /* smooth movement */
}


.management-section-1 .card .content-bottom a img {
  width: 20px;
}



/*--  LEADING PEOPLE SECTION--*/

.leading-people-top {
  background-image: url(../images/leading-people.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.leading-people-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.leading-people-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.leading-people-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.leading-people-section-1 {
  padding: 60px 0;
  background: #fff;
}

.leading-people-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.leading-people-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.leading-people-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.leading-people-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .leading-people-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.leading-people-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.leading-people-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.leading-people-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.leading-people-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .leading-people-section-1 ul li .content {
    padding: 0 20px;
  }
}

.leading-people-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.leading-people-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.leading-people-section-2 {
  padding: 60px 0;
}

.leading-people-section-2 .col-lg-6 {
  padding: 0;
}

.leading-people-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.leading-people-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .leading-people-section-2 .skills {
    padding: 30px;
  }
}

.leading-people-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.leading-people-section-2 .skills ul {
  padding: 0;
}

.leading-people-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: center;
  color: #fff;
  display: flex;
}

.leading-people-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.leading-people-section-2 .skills ul li i img {
  width: 14px;
}
.leading-people-section-2 .skills ul li p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.leading-people-section-2 .skill-image img {
  width: 100%;
}

.leading-people-section-3 ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.leading-people-section-3 ul li .whatsapp,
.call,
.enroll {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  min-width: 180px;
  border-radius: 30px;
}

.leading-people-section-3 ul {
  padding: 0;
}

.leading-people-section-3 ul li {
  list-style: none;
  margin-top: 10px;
}

.leading-people-section-3 ul li p {
  font-size: 15px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 600;
}

.leading-people-section-3 ul li .whatsapp {
  background-color: #25d366;
  justify-content: center;
}

.leading-people-section-3 ul li .call {
  background-color: var(--primary_color);
  justify-content: center;
}

.leading-people-section-3 ul li .enroll {
  background-color: #dbcd04;
  justify-content: center;
}



/* Modal styles */
.custom-enquiry-modal {
  position: fixed;
  top: auto;
  bottom: 70px;
  /* slightly above the enquiry button */
  right: 20px;
  width: 320px;
  /* background: rgba(0, 0, 0, 0.4); */
  display: none;
  justify-content: flex-end;
  z-index: 1050;
}

@media screen and (max-width:425px) {
  .custom-enquiry-modal {
    right: 0;
  }
}

.custom-enquiry-modal h3 {
  font-size: 22px;
  font-weight: bold;
  padding: 6px 0;
  text-align: center;
  border-bottom: 1px solid #bcbcbc;
}

.custom-enquiry-modal .modal-content label {
  margin-bottom: 10px;
}

.custom-enquiry-modal .modal-content input {
  padding: 10px;
}

.custom-enquiry-modal .modal-content {
  background: #fff;
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease forwards;
  position: relative;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

.custom-enquiry-modal .modal-content form button {
  background: var(--primary_color);
  padding: 10px;
  color: #fff;
  border-radius: 10px;
  border: none;
}




/*--  CONTACT US SECTION--*/

.contact-us-top {
  background-image: url(../images/contact-us-top.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.contact-us-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.contact-us-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.contact-us-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.contact-us-section-1 .left-section {
  background: var(--primary_color);
  padding: 100px;
  font-weight: 600;
}

@media screen and (max-width:576px) {
  .contact-us-section-1 .left-section {
    background: var(--primary_color);
    padding: 20px;
  }
}

.contact-us-section-1 .left-section ul {
  padding: 0;
}

.contact-us-section-1 .left-section h1 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
}

.contact-us-section-1 .left-section ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
}

.contact-us-section-1 .left-section ul li p {
  margin: 0;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

.contact-us-section-1 .left-section ul li i {
  padding: 10px;
}

.contact-us-section-1 .right-section {
  padding: 30px;
  background: #fff;
}

.contact-us-section-1 .right-section h1 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
}

.contact-us-section-1 .right-section input {
  padding: 10px;
  border-radius: 6px;
}

.contact-us-section-1 .right-section label {
  margin-bottom: 10px;
}

.contact-us-section-1 .right-section .form-select {
  padding: 10px;
  border-radius: 6px;
}

.contact-us-section-1 .right-section button {
  background: var(--primary_color);
  padding: 10px;
  color: #fff;
  border-radius: 10px;
  border: none;
}




/*--  BUSINESS INTELLIGENCE SECTION--*/

.business-intelligence-section-top {
  background-image: url(../images/business-intelligence-section.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.business-intelligence-section-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.business-intelligence-section-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.business-intelligence-section-top .heading h1 {
  font-size: 50px;
  color: #fff;
  text-align: center;
}

.business-intelligence-section-top p {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

.business-intelligence-section-top .search-container {
  position: absolute;
  z-index: 1;
  top: 70%;
  /* adjust this to control vertical position */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  /* you can adjust the width as needed */
}

.business-intelligence-section-top .search-container input {
  width: 100%;
  height: 62px;
  background: white;
  border-radius: 40px;
  padding-left: 20px;
  padding-right: 170px;
  box-sizing: border-box;
  font-size: 16px;
  border: 1px solid #ccc;
}

.business-intelligence-section-top .search-container form {
  display: flex;
  align-items: center;
}

.business-intelligence-section-top .search-container form input {
  position: relative;
}

.business-intelligence-section-top .search-container a {
  display: flex;
  align-items: center;
  background: var(--primary_color);
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
  gap: 4px;
  position: absolute;
  right: 20px;
  border-radius: 20px;
}

.business-intelligence-section-1 .card {
  border: 1px solid rgb(219, 225, 229);
  border-radius: 5px;
  min-height: 490px;
  position: relative;
  padding: 14px;
}

.business-intelligence-section-1 .card .image {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.business-intelligence-section-1 .card .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1E73BE, #000000);
  top: 0;
  opacity: 0.3;


}

.business-intelligence-section-1 .card .image img {
  width: 100%;
}

.business-intelligence-section-1 .card .content {
  padding: 14px 0;
}

.business-intelligence-section-1 .card .content h5 {
  font-size: 22px;
  font-weight: 600;
}

.business-intelligence-section-1 .card .content p {
  font-size: 14px;
  color: #7e7e7e;
  font-weight: 400;
}

.business-intelligence-section-1 .card .content-bottom {
  padding: 10px;
  /* border: 1px solid #dbe1e5; */
  border-bottom: none;
  border-left: none;
  border-right: none;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.business-intelligence-section-1 .card .content-bottom a {
  font-size: 14px;
  text-decoration: none;
  color: var(--primary_color);
  display: inline-block;
  /* ensures transform works properly */
  transition: transform 0.3s ease;
  /* smooth movement */
}

.business-intelligence-section-1 .card .content-bottom a i img {
  margin-left: 10px;
}

.business-intelligence-section-1 .card .content-bottom:hover a {
  transform: translateX(6px);
  /* moves the link 5px to the right */
  transition: transform 0.3s ease;
  /* smooth movement */
}


.business-intelligence-section-1 .card .content-bottom a img {
  width: 20px;
}




/*--  CYBER SECURITY SECTION--*/

.cyber-security-section-top {
  background-image: url(../images/cyber-security-section.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.cyber-security-section-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.cyber-security-section-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.cyber-security-section-top .heading h1 {
  font-size: 50px;
  color: #fff;
  text-align: center;
}

.cyber-security-section-top p {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

.cyber-security-section-top .search-container {
  position: absolute;
  z-index: 1;
  top: 70%;
  /* adjust this to control vertical position */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  /* you can adjust the width as needed */
}

.cyber-security-section-top .search-container input {
  width: 100%;
  height: 62px;
  background: white;
  border-radius: 40px;
  padding-left: 20px;
  padding-right: 170px;
  box-sizing: border-box;
  font-size: 16px;
  border: 1px solid #ccc;
}

.cyber-security-section-top .search-container form {
  display: flex;
  align-items: center;
}

.cyber-security-section-top .search-container form input {
  position: relative;
}

.cyber-security-section-top .search-container a {
  display: flex;
  align-items: center;
  background: var(--primary_color);
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
  gap: 4px;
  position: absolute;
  right: 20px;
  border-radius: 20px;
}

.cyber-security-section-1 .card {
  border: 1px solid rgb(219, 225, 229);
  border-radius: 5px;
  min-height: 490px;
  position: relative;
  padding: 14px;
}

.cyber-security-section-1 .card .image {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.cyber-security-section-1 .card .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1E73BE, #000000);
  top: 0;
  opacity: 0.3;


}

.cyber-security-section-1 .card .image img {
  width: 100%;
}

.cyber-security-section-1 .card .content {
  padding: 14px 0;
}

.cyber-security-section-1 .card .content h5 {
  font-size: 22px;
  font-weight: 600;
}

.cyber-security-section-1 .card .content p {
  font-size: 14px;
  color: #7e7e7e;
  font-weight: 400;
}

.cyber-security-section-1 .card .content-bottom {
  padding: 10px;
  /* border: 1px solid #dbe1e5; */
  border-bottom: none;
  border-left: none;
  border-right: none;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.cyber-security-section-1 .card .content-bottom a {
  font-size: 14px;
  text-decoration: none;
  color: var(--primary_color);
  display: inline-block;
  /* ensures transform works properly */
  transition: transform 0.3s ease;
  /* smooth movement */
}

.cyber-security-section-1 .card .content-bottom a i img {
  margin-left: 10px;
}

.cyber-security-section-1 .card .content-bottom:hover a {
  transform: translateX(6px);
  /* moves the link 5px to the right */
  transition: transform 0.3s ease;
  /* smooth movement */
}


.cyber-security-section-1 .card .content-bottom a img {
  width: 20px;
}




/*--  DATA SCIENCE SECTION--*/

.data-science-section-top {
  background-image: url(../images/data-science-section.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.data-science-section-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.data-science-section-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.data-science-section-top .heading h1 {
  font-size: 50px;
  color: #fff;
  text-align: center;
}

.data-science-section-top p {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

.data-science-section-top .search-container {
  position: absolute;
  z-index: 1;
  top: 70%;
  /* adjust this to control vertical position */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  /* you can adjust the width as needed */
}

.data-science-section-top .search-container input {
  width: 100%;
  height: 62px;
  background: white;
  border-radius: 40px;
  padding-left: 20px;
  padding-right: 170px;
  box-sizing: border-box;
  font-size: 16px;
  border: 1px solid #ccc;
}

.data-science-section-top .search-container form {
  display: flex;
  align-items: center;
}

.data-science-section-top .search-container form input {
  position: relative;
}

.data-science-section-top .search-container a {
  display: flex;
  align-items: center;
  background: var(--primary_color);
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
  gap: 4px;
  position: absolute;
  right: 20px;
  border-radius: 20px;
}

.data-science-section-1 .card {
  border: 1px solid rgb(219, 225, 229);
  border-radius: 5px;
  min-height: 490px;
  position: relative;
  padding: 14px;
}
@media screen and (max-width:576px) {
  .data-science-section-1 .card {
    padding: 10px;
    gap: 10px;
    min-height: auto;
  }
}

.data-science-section-1 .card .image {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.data-science-section-1 .card .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1E73BE, #000000);
  top: 0;
  opacity: 0.3;


}

.data-science-section-1 .card .image img {
  width: 100%;
}

.data-science-section-1 .card .content {
  padding: 14px 0;
}

.data-science-section-1 .card .content h5 {
  font-size: 22px;
  font-weight: 600;
}

.data-science-section-1 .card .content p {
  font-size: 14px;
  color: #7e7e7e;
  font-weight: 400;
}

.data-science-section-1 .card .content-bottom {
  padding: 10px;
  /* border: 1px solid #dbe1e5; */
  border-bottom: none;
  border-left: none;
  border-right: none;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.data-science-section-1 .card .content-bottom a {
  font-size: 14px;
  text-decoration: none;
  color: var(--primary_color);
  display: inline-block;
  /* ensures transform works properly */
  transition: transform 0.3s ease;
  /* smooth movement */
}

.data-science-section-1 .card .content-bottom a i img {
  margin-left: 10px;
}

.data-science-section-1 .card .content-bottom:hover a {
  transform: translateX(6px);
  /* moves the link 5px to the right */
  transition: transform 0.3s ease;
  /* smooth movement */
}


.data-science-section-1 .card .content-bottom a img {
  width: 20px;
}




/*--  DIGITAL MARKETING SECTION--*/

.digital-marketing-section-top {
  background-image: url(../images/digital-marketing-section.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.digital-marketing-section-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.digital-marketing-section-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.digital-marketing-section-top .heading h1 {
  font-size: 50px;
  color: #fff;
  text-align: center;
}

.digital-marketing-section-top p {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

.digital-marketing-section-top .search-container {
  position: absolute;
  z-index: 1;
  top: 70%;
  /* adjust this to control vertical position */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  /* you can adjust the width as needed */
}

.digital-marketing-section-top .search-container input {
  width: 100%;
  height: 62px;
  background: white;
  border-radius: 40px;
  padding-left: 20px;
  padding-right: 170px;
  box-sizing: border-box;
  font-size: 16px;
  border: 1px solid #ccc;
}

.digital-marketing-section-top .search-container form {
  display: flex;
  align-items: center;
}

.digital-marketing-section-top .search-container form input {
  position: relative;
}

.digital-marketing-section-top .search-container a {
  display: flex;
  align-items: center;
  background: var(--primary_color);
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
  gap: 4px;
  position: absolute;
  right: 20px;
  border-radius: 20px;
}

.digital-marketing-section-1 .card {
  border: 1px solid rgb(219, 225, 229);
  border-radius: 5px;
  min-height: 490px;
  position: relative;
  padding: 14px;
}

.digital-marketing-section-1 .card .image {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.digital-marketing-section-1 .card .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1E73BE, #000000);
  top: 0;
  opacity: 0.3;


}

.digital-marketing-section-1 .card .image img {
  width: 100%;
}

.digital-marketing-section-1 .card .content {
  padding: 14px 0;
}

.digital-marketing-section-1 .card .content h5 {
  font-size: 22px;
  font-weight: 600;
}

.digital-marketing-section-1 .card .content p {
  font-size: 14px;
  color: #7e7e7e;
  font-weight: 400;
}

.digital-marketing-section-1 .card .content-bottom {
  padding: 10px;
  /* border: 1px solid #dbe1e5; */
  border-bottom: none;
  border-left: none;
  border-right: none;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.digital-marketing-section-1 .card .content-bottom a {
  font-size: 14px;
  text-decoration: none;
  color: var(--primary_color);
  display: inline-block;
  /* ensures transform works properly */
  transition: transform 0.3s ease;
  /* smooth movement */
}

.digital-marketing-section-1 .card .content-bottom a i img {
  margin-left: 10px;
}

.digital-marketing-section-1 .card .content-bottom:hover a {
  transform: translateX(6px);
  /* moves the link 5px to the right */
  transition: transform 0.3s ease;
  /* smooth movement */
}


.digital-marketing-section-1 .card .content-bottom a img {
  width: 20px;
}




.gradient-text {
  background: linear-gradient(60deg, #2e8fe4, #000000);
  -webkit-background-clip: text;
  /* for Safari/Chrome */
  -webkit-text-fill-color: transparent;
  /* makes text transparent */
}

.herosection-2 .item:hover .gradient-text {
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  /* for Safari/Chrome */
  -webkit-text-fill-color: transparent;
  /* makes text transparent */
}

.navbar-top {
  background: var(--primary_color);
  border-bottom: 1px solid #989898;
}

.navbar-top p {
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  padding: 6px 0;
}



.herosection-7 {
    padding: 80px 0;
}



.herosection-7 .container {
    background: linear-gradient(135deg, #1E73BE, #155A96);

    /* border-radius: 32px; */
    overflow: hidden;

    padding: 0;

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}



.herosection-7 .row {
    align-items: stretch;
}



.herosection-7 .left-section {
    height: 100%;
    min-height: 100%;
    overflow: hidden;
}



.herosection-7 .left-section img {
    width: 100%;
    height: 100%;

    object-fit: fill;
    object-position: center;

    display: block;

    transition: transform 0.6s ease;
}



.herosection-7 .container:hover .left-section img {
    transform: scale(1.05);
}



.herosection-7 .right-section {
    height: 100%;

    padding: 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}



.herosection-7 .right-section .top-section {
    margin-bottom: 30px;
}

.herosection-7 .right-section .top-section ul {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.herosection-7 .right-section .top-section ul li {
    list-style: none;
}

.herosection-7 .right-section .top-section ul li img {
    width: auto;
    max-height: 48px;

    object-fit: contain;
    display: block;
}



.herosection-7 .right-section .heading h3 {
    color: #ffffff;

    font-size: 36px;
    font-weight: 700;

    line-height: 1.2;

    margin-bottom: 0px;
}



.herosection-7 .right-section .content p {
    color: rgba(255,255,255,0.82);

    font-size: 18px;
    line-height: 1.8;

    margin-bottom: 24px;
}



.herosection-7 .right-section .content h3 {
    color: #ffffff;

    font-size: 22px;
    font-weight: 600;

    margin-bottom: 20px;
}



.herosection-7 .hilights-content {
    padding-left: 18px;
}

.herosection-7 .hilights-content li {
    color: rgba(255,255,255,0.95);

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 16px;
}



@media screen and (max-width: 991px) {

    .herosection-7 {
        padding: 50px 0;
    }

    .herosection-7 .container {
        /* border-radius: 24px; */
    }

    .herosection-7 .right-section {
        padding: 40px 30px;
    }

    .herosection-7 .right-section .heading h3 {
        font-size: 28px;
    }

    .herosection-7 .right-section .content p {
        font-size: 16px;
    }

    .herosection-7 .hilights-content li {
        font-size: 15px;
    }

    .herosection-7 .left-section {
        height: 400px;
    }
}

/* --------------MOBILE--------------- */

@media screen and (max-width: 576px) {

    .herosection-7 .right-section {
        padding: 30px 20px;
    }

    .herosection-7 .right-section .top-section ul {
        gap: 8px;
        flex-wrap: wrap;
    }

    .herosection-7 .right-section .top-section ul li img {
        max-height: 32px;
    }

    .herosection-7 .right-section .heading h3 {
        font-size: 28px;
    }

    .herosection-7 .right-section .content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .herosection-7 .hilights-content li {
        font-size: 14px;
        line-height: 1.7;
    }

    .herosection-7 .left-section {
        height: 300px;
    }
}

.herosection-3 .card .duration {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.herosection-3 .card .duration span {
  font-size: 14px;
  color: #151515;
}


.herosection-6 .content {
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  margin-top: 20px;
  border-radius: 10px;
}

.herosection-6 .content h2 {
  font-size: 20px;
  font-weight: 700;
}

.herosection-6 .content p {
  font-size: 16px;
  margin-bottom: 0;
}

.herosection-6 .content ul {
  background: none;
}





/*--  BUSINESS ANALYSIS SECTION--*/

.business-analysis-top {
  background-image: url(../images/business_analysis-new.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.business-analysis-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.business-analysis-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.business-analysis-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.business-analysis-section-1 {
  padding: 60px 0;
  background: #fff;
}

.business-analysis-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.business-analysis-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.business-analysis-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.business-analysis-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .business-analysis-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.business-analysis-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.business-analysis-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.business-analysis-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.business-analysis-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .business-analysis-section-1 ul li .content {
    padding: 0 20px;
  }
}

.business-analysis-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.business-analysis-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.business-analysis-section-2 {
  padding: 60px 0;
}

.business-analysis-section-2 .col-lg-6 {
  padding: 0;
}

.business-analysis-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.business-analysis-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .business-analysis-section-2 .skills {
    padding: 30px;
  }
}

.business-analysis-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.business-analysis-section-2 .skills ul {
  padding: 0;
}

.business-analysis-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: center;
  color: #fff;
  display: flex;
}

.business-analysis-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.business-analysis-section-2 .skills ul li i img {
  width: 14px;
}

.business-analysis-section-2 .skill-image img {
  width: 100%;
}
.business-analysis-section-2 .skills ul li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

.business-analysis-section-3 ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.business-analysis-section-3 ul li .whatsapp,
.call,
.enroll {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  min-width: 180px;
  border-radius: 30px;
}

.business-analysis-section-3 ul {
  padding: 0;
}

.business-analysis-section-3 ul li {
  list-style: none;
  margin-top: 10px;
}

.business-analysis-section-3 ul li p {
  font-size: 15px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 600;
}

.business-analysis-section-3 ul li .whatsapp {
  background-color: #25d366;
  justify-content: center;
}

.business-analysis-section-3 ul li .call {
  background-color: var(--primary_color);
  justify-content: center;
}

.business-analysis-section-3 ul li .enroll {
  background-color: #dbcd04;
  justify-content: center;
}





/*--  BUSINESS STATISTICS SECTION--*/

.business-statistics-top {
  background-image: url(../images/business-analysis.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.business-statistics-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.business-statistics-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.business-statistics-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.business-statistics-section-1 {
  padding: 60px 0;
  background: #fff;
}

.business-statistics-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.business-statistics-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.business-statistics-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.business-statistics-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .business-statistics-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.business-statistics-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.business-statistics-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.business-statistics-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.business-statistics-section-1 ul li .content {
  padding: 0 30px 0 16px;
}

@media screen and (max-width:576px) {
  .business-statistics-section-1 ul li .content {
    padding: 0 20px;
  }
}

.business-statistics-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.business-statistics-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.business-statistics-section-2 {
  padding: 60px 0;
}

.business-statistics-section-2 .col-lg-6 {
  padding: 0;
}

.business-statistics-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.business-statistics-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .business-statistics-section-2 .skills {
    padding: 30px;
  }
}

.business-statistics-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.business-statistics-section-2 .skills ul {
  padding: 0;
}

.business-statistics-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: center;
  color: #fff;
  display: flex;
}

.business-statistics-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.business-statistics-section-2 .skills ul li i img {
  width: 14px;
}

.business-statistics-section-2 .skill-image img {
  width: 100%;
}
.business-statistics-section-2 .skills ul li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
  
}



/*--  DATA ANALYTICS SECTION--*/

.data-analytics-top {
  background-image: url(../images/data-analytics.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.data-analytics-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.data-analytics-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.data-analytics-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.data-analytics-section-1 {
  padding: 60px 0;
  background: #fff;
}

.data-analytics-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.data-analytics-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.data-analytics-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.data-analytics-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .data-analytics-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.data-analytics-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.data-analytics-section-1 ul {
  display: flex;
  flex-direction: column;
}

.data-analytics-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.data-analytics-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .data-analytics-section-1 ul li .content {
    padding: 0 20px;
  }
}

.data-analytics-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.data-analytics-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.data-analytics-section-2 {
  padding: 60px 0;
}

.data-analytics-section-2 .col-lg-6 {
  padding: 0;
}

.data-analytics-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.data-analytics-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .data-analytics-section-2 .skills {
    padding: 30px;
  }
}

.data-analytics-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.data-analytics-section-2 .skills ul {
  padding: 0;
}

.data-analytics-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: flex-start;
  color: #fff;
  display: flex;
}

.data-analytics-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.data-analytics-section-2 .skills ul li i img {
  width: 14px;
}

.data-analytics-section-2 .skill-image img {
  width: 100%;
}





/*--  CYBER CRIME SECTION--*/

.cyber-crime-top {
  background-image: url(../images/cyber-crime.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.cyber-crime-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.cyber-crime-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.cyber-crime-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.cyber-crime-section-1 {
  padding: 60px 0;
  background: #fff;
}

.cyber-crime-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.cyber-crime-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.cyber-crime-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.cyber-crime-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .cyber-crime-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.cyber-crime-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.cyber-crime-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.cyber-crime-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.cyber-crime-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .cyber-crime-section-1 ul li .content {
    padding: 0 20px;
  }
}

.cyber-crime-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.cyber-crime-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.cyber-crime-section-2 {
  padding: 60px 0;
}

.cyber-crime-section-2 .col-lg-6 {
  padding: 0;
}

.cyber-crime-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.cyber-crime-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .cyber-crime-section-2 .skills {
    padding: 30px;
  }
}

.cyber-crime-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.cyber-crime-section-2 .skills ul {
  padding: 0;
}

.cyber-crime-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: center;
  color: #fff;
  display: flex;
}

.cyber-crime-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.cyber-crime-section-2 .skills ul li i img {
  width: 14px;
}

.cyber-crime-section-2 .skill-image img {
  width: 100%;
}
.cyber-crime-section-2 .skills ul li p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}





/*--  CYBER SECURITY SECTION--*/

.cyber-security-top {
  background-image: url(../images/cyber-security.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.cyber-security-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.cyber-security-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.cyber-security-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.cyber-security-section-1 {
  padding: 60px 0;
  background: #fff;
}

.cyber-security-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.cyber-security-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.cyber-security-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.cyber-security-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .cyber-security-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.cyber-security-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.cyber-security-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.cyber-security-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.cyber-security-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .cyber-security-section-1 ul li .content {
    padding: 0 20px;
  }
}

.cyber-security-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.cyber-security-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.cyber-security-section-2 {
  padding: 60px 0;
}

.cyber-security-section-2 .col-lg-6 {
  padding: 0;
}

.cyber-security-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.cyber-security-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .cyber-security-section-2 .skills {
    padding: 30px;
  }
}

.cyber-security-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.cyber-security-section-2 .skills ul {
  padding: 0;
}

.cyber-security-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: center;
  color: #fff;
  display: flex;
}

.cyber-security-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.cyber-security-section-2 .skills ul li i img {
  width: 14px;
}

.cyber-security-section-2 .skill-image img {
  width: 100%;
}
.cyber-security-section-2 .skills ul li p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}




/*--  CYBER THREAT SECTION--*/

.cyber-threat-top {
  background-image: url(../images/cyber-threat.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.cyber-threat-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.cyber-threat-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.cyber-threat-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.cyber-threat-section-1 {
  padding: 60px 0;
  background: #fff;
}

.cyber-threat-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.cyber-threat-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.cyber-threat-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.cyber-threat-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .cyber-threat-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.cyber-threat-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.cyber-threat-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.cyber-threat-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.cyber-threat-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .cyber-threat-section-1 ul li .content {
    padding: 0 20px;
  }
}

.cyber-threat-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.cyber-threat-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.cyber-threat-section-2 {
  padding: 60px 0;
}

.cyber-threat-section-2 .col-lg-6 {
  padding: 0;
}

.cyber-threat-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.cyber-threat-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .cyber-threat-section-2 .skills {
    padding: 30px;
  }
}

.cyber-threat-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.cyber-threat-section-2 .skills ul {
  padding: 0;
}

.cyber-threat-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: center;
  color: #fff;
  display: flex;
}

.cyber-threat-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.cyber-threat-section-2 .skills ul li i img {
  width: 14px;
}

.cyber-threat-section-2 .skill-image img {
  width: 100%;
}
.cyber-threat-section-2 .skills ul li p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
 
}




/*--  ENTERPRISE SECURITY SECTION--*/

.enterprise-security-top {
  background-image: url(../images/enterprise-security-management.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.enterprise-security-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.enterprise-security-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.enterprise-security-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.enterprise-security-section-1 {
  padding: 60px 0;
  background: #fff;
}

.enterprise-security-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.enterprise-security-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.enterprise-security-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.enterprise-security-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .enterprise-security-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.enterprise-security-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}


.enterprise-security-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.enterprise-security-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.enterprise-security-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .enterprise-security-section-1 ul li .content {
    padding: 0 20px;
  }
}

.enterprise-security-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.enterprise-security-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.enterprise-security-section-2 {
  padding: 60px 0;
}

.enterprise-security-section-2 .col-lg-6 {
  padding: 0;
}

.enterprise-security-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.enterprise-security-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .enterprise-security-section-2 .skills {
    padding: 30px;
  }
}

.enterprise-security-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.enterprise-security-section-2 .skills ul {
  padding: 0;
}

.enterprise-security-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: center;
  color: #fff;
  display: flex;
}

.enterprise-security-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.enterprise-security-section-2 .skills ul li i img {
  width: 14px;
}

.enterprise-security-section-2 .skill-image img {
  width: 100%;
}
.enterprise-security-section-2 .skills ul li p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}



/*--  ARTIFICIAL INTELLIGENCE SECTION--*/

.ai-section-top {
  background-image: url(../images/ai.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.ai-section-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.ai-section-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.ai-section-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.ai-section-1 {
  padding: 60px 0;
  background: #fff;
}

.ai-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.ai-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.ai-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.ai-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .ai-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.ai-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.ai-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.ai-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.ai-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .ai-section-1 ul li .content {
    padding: 0 20px;
  }
}

.ai-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.ai-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.ai-section-2 {
  padding: 60px 0;
}

.ai-section-2 .col-lg-6 {
  padding: 0;
}

.ai-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.ai-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .ai-section-2 .skills {
    padding: 30px;
  }
}

.ai-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.ai-section-2 .skills ul {
  padding: 0;
}

.ai-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: center;
  color: #fff;
  display: flex;
}

.ai-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.ai-section-2 .skills ul li i img {
  width: 14px;
}

.ai-section-2 .skill-image img {
  width: 100%;
}
.ai-section-2 .skills ul li p {
  font-size: 16px !important;
  line-height: 1.6;
  margin: 0;
  
}




/*--  BIG DATA SECTION--*/

.big-data-top {
  background-image: url(../images/big-data.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.big-data-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.big-data-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.big-data-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.big-data-section-1 {
  padding: 60px 0;
  background: #fff;
}

.big-data-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.big-data-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.big-data-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.big-data-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .big-data-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.big-data-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.big-data-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.big-data-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.big-data-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .big-data-section-1 ul li .content {
    padding: 0 20px;
  }
}

.big-data-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.big-data-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.big-data-section-2 {
  padding: 60px 0;
}

.big-data-section-2 .col-lg-6 {
  padding: 0;
}

.big-data-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.big-data-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .big-data-section-2 .skills {
    padding: 30px;
  }
}

.big-data-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.big-data-section-2 .skills ul {
  padding: 0;
}

.big-data-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: center;
  color: #fff;
  display: flex;
}

.big-data-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.big-data-section-2 .skills ul li i img {
  width: 14px;
}

.big-data-section-2 .skill-image img {
  width: 100%;
}
.big-data-section-2 .skills ul li p {
  font-size: 16px !important;
  line-height: 1.6;
  margin: 0;

}





/*--  MACHINE LEARNING DATA SECTION--*/

.machine-learning-top {
  background-image: url(../images/machine-learning.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.machine-learning-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.machine-learning-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.machine-learning-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.machine-learning-section-1 {
  padding: 60px 0;
  background: #fff;
}

.machine-learning-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.machine-learning-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.machine-learning-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.machine-learning-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .machine-learning-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.machine-learning-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.machine-learning-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.machine-learning-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.machine-learning-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .machine-learning-section-1 ul li .content {
    padding: 0 20px;
  }
}

.machine-learning-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.machine-learning-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.machine-learning-section-2 {
  padding: 60px 0;
}

.machine-learning-section-2 .col-lg-6 {
  padding: 0;
}

.machine-learning-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.machine-learning-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .machine-learning-section-2 .skills {
    padding: 30px;
  }
}

.machine-learning-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.machine-learning-section-2 .skills ul {
  padding: 0;
}

.machine-learning-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: center;
  color: #fff;
  display: flex;
}

.machine-learning-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.machine-learning-section-2 .skills ul li i img {
  width: 14px;
}

.machine-learning-section-2 .skill-image img {
  width: 100%;
}
.machine-learning-section-2 .skills ul li p {
  font-size: 16px !important;
  line-height: 1.6;
  margin: 0;

}




/*--  CONTENT MARKETING SECTION--*/

.content-marketing-top {
  background-image: url(../images/content-marketing.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.content-marketing-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.content-marketing-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.content-marketing-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.content-marketing-section-1 {
  padding: 60px 0;
  background: #fff;
}

.content-marketing-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.content-marketing-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.content-marketing-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.content-marketing-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .content-marketing-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.content-marketing-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.content-marketing-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.content-marketing-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.content-marketing-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .content-marketing-section-1 ul li .content {
    padding: 0 20px;
  }
}

.content-marketing-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.content-marketing-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.content-marketing-section-2 {
  padding: 60px 0;
}

.content-marketing-section-2 .col-lg-6 {
  padding: 0;
}

.content-marketing-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.content-marketing-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .content-marketing-section-2 .skills {
    padding: 30px;
  }
}

.content-marketing-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.content-marketing-section-2 .skills ul {
  padding: 0;
}

.content-marketing-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: center;
  color: #fff;
  display: flex;
}

.content-marketing-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.content-marketing-section-2 .skills ul li i img {
  width: 14px;
}

.content-marketing-section-2 .skill-image img {
  width: 100%;
}
.content-marketing-section-2 .skills ul li p {
  font-size: 16px !important;
  line-height: 1.6;
  margin: 0;
 
}




/*--  DIGITAL RETAIL SECTION--*/

.digital-retail-top {
  background-image: url(../images/digital-retail.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.digital-retail-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.digital-retail-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.digital-retail-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.digital-retail-section-1 {
  padding: 60px 0;
  background: #fff;
}

.digital-retail-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.digital-retail-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.digital-retail-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.digital-retail-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .digital-retail-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.digital-retail-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.digital-retail-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.digital-retail-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.digital-retail-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .digital-retail-section-1 ul li .content {
    padding: 0 20px;
  }
}

.digital-retail-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.digital-retail-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.digital-retail-section-2 {
  padding: 60px 0;
}

.digital-retail-section-2 .col-lg-6 {
  padding: 0;
}

.digital-retail-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.digital-retail-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .digital-retail-section-2 .skills {
    padding: 30px;
  }
}

.digital-retail-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.digital-retail-section-2 .skills ul {
  padding: 0;
}

.digital-retail-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: center;
  color: #fff;
  display: flex;
}

.digital-retail-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.digital-retail-section-2 .skills ul li i img {
  width: 14px;
}

.digital-retail-section-2 .skill-image img {
  width: 100%;
}
.digital-retail-section-2 .skills ul li p {
  font-size: 16px !important;
  line-height: 1.6;
  margin: 0;
  
 
}



/*--  GLOBAL BRAND SECTION--*/

.global-brand-top {
  background-image: url(../images/global-brand.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.global-brand-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.global-brand-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.global-brand-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.global-brand-section-1 {
  padding: 60px 0;
  background: #fff;
}

.global-brand-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.global-brand-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.global-brand-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.global-brand-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .global-brand-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.global-brand-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.global-brand-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.global-brand-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.global-brand-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .global-brand-section-1 ul li .content {
    padding: 0 20px;
  }
}

.global-brand-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.global-brand-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.global-brand-section-2 {
  padding: 60px 0;
}

.global-brand-section-2 .col-lg-6 {
  padding: 0;
}

.global-brand-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.global-brand-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .global-brand-section-2 .skills {
    padding: 30px;
  }
}

.global-brand-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.global-brand-section-2 .skills ul {
  padding: 0;
}

.global-brand-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items:center;
  color: #ffffff;
  display: flex;
  
}

.global-brand-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.global-brand-section-2 .skills ul li i img {
  width: 14px;
}

.global-brand-section-2 .skill-image img {
  width: 100%;
}
.global-brand-section-2 .skills ul li p{
  font-size: 16px !important;
  line-height: 1.6;
  margin: 0;

}




/*--  STRATEGIC MARKETING SECTION--*/

.strategic-marketing-top {
  background-image: url(../images/strategic-marketing.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.strategic-marketing-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.strategic-marketing-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.strategic-marketing-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.strategic-marketing-section-1 {
  padding: 60px 0;
  background: #fff;
}

.strategic-marketing-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.strategic-marketing-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.strategic-marketing-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.strategic-marketing-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .strategic-marketing-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.strategic-marketing-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.strategic-marketing-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.strategic-marketing-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.strategic-marketing-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .strategic-marketing-section-1 ul li .content {
    padding: 0 20px;
  }
}

.strategic-marketing-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.strategic-marketing-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
  
}

.strategic-marketing-section-2 {
  padding: 60px 0;
}

.strategic-marketing-section-2 .col-lg-6 {
  padding: 0;
}

.strategic-marketing-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.strategic-marketing-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .strategic-marketing-section-2 .skills {
    padding: 30px;
  }
}

.strategic-marketing-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.strategic-marketing-section-2 .skills ul {
  padding: 0;
}

.strategic-marketing-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: center;
  color: #fff;
  display: flex;
}

.strategic-marketing-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.strategic-marketing-section-2 .skills ul li i img {
  width: 14px;
}

.strategic-marketing-section-2 .skill-image img {
  width: 100%;
}
.strategic-marketing-section-2 .skills ul li p {
  font-size: 16px !important;
  line-height: 1.6;
  margin: 0;
}




/*--  BUSINESS SUSTAINABILITY SECTION--*/

.business-sustainability-top {
  background-image: url(../images/business-sustainability.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.business-sustainability-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.business-sustainability-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.business-sustainability-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.business-sustainability-section-1 {
  padding: 60px 0;
  background: #fff;
}

.business-sustainability-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.business-sustainability-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.business-sustainability-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.business-sustainability-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .business-sustainability-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.business-sustainability-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.business-sustainability-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.business-sustainability-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.business-sustainability-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .business-sustainability-section-1 ul li .content {
    padding: 0 20px;
  }
}

.business-sustainability-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.business-sustainability-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.business-sustainability-section-2 {
  padding: 60px 0;
}

.business-sustainability-section-2 .col-lg-6 {
  padding: 0;
}

.business-sustainability-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.business-sustainability-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .business-sustainability-section-2 .skills {
    padding: 30px;
  }
}

.business-sustainability-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.business-sustainability-section-2 .skills ul {
  padding: 0;
}

.business-sustainability-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: flex-start;
  color: #fff;
  display: flex;
}

.business-sustainability-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.business-sustainability-section-2 .skills ul li i img {
  width: 14px;
}

.business-sustainability-section-2 .skill-image img {
  width: 100%;
}
.business-sustainability-section-2 .skills ul li p {
  font-size: 16px !important;
  line-height: 1.6;
  margin: 0;
  
}




/*--  CROSS CULTURE SECTION--*/

.cross-culture-top {
  background-image: url(../images/cross-cultural.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.cross-culture-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.cross-culture-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.cross-culture-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.cross-culture-section-1 {
  padding: 60px 0;
  background: #fff;
}

.cross-culture-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.cross-culture-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.cross-culture-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.cross-culture-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .cross-culture-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.cross-culture-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  COLOR: #4B5563;
}

.cross-culture-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.cross-culture-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.cross-culture-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .cross-culture-section-1 ul li .content {
    padding: 0 20px;
  }
}

.cross-culture-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.cross-culture-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.cross-culture-section-2 {
  padding: 60px 0;
}

.cross-culture-section-2 .col-lg-6 {
  padding: 0;
}

.cross-culture-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.cross-culture-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .cross-culture-section-2 .skills {
    padding: 30px;
  }
}

.cross-culture-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.cross-culture-section-2 .skills ul {
  padding: 0;
}

.cross-culture-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: flex-start;
  color: #fff;
  display: flex;
}

.cross-culture-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.cross-culture-section-2 .skills ul li i img {
  width: 14px;
}

.cross-culture-section-2 .skill-image img {
  width: 100%;
}
.cross-culture-section-2 .skills ul li p {
  font-size: 16px !important;
  line-height: 1.6;
  margin: 0;
}



/*--  FINANCIAL MANAGEMENT SECTION--*/

.financial-management-top {
  background-image: url(../images/financial-management.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.financial-management-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.financial-management-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.financial-management-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.financial-management-section-1 {
  padding: 60px 0;
  background: #fff;
}

.financial-management-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.financial-management-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.financial-management-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.financial-management-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .financial-management-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.financial-management-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.financial-management-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.financial-management-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.financial-management-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .financial-management-section-1 ul li .content {
    padding: 0 20px;
  }
}

.financial-management-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.financial-management-section-1 ul li p {
  font-size: 16px !important;
  line-height: 1.6;
  margin: 0;
 
}

.financial-management-section-2 {
  padding: 60px 0;
}

.financial-management-section-2 .col-lg-6 {
  padding: 0;
}

.financial-management-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.financial-management-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .financial-management-section-2 .skills {
    padding: 30px;
  }
}

.financial-management-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.financial-management-section-2 .skills ul {
  padding: 0;
}

.financial-management-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: flex-start;
  color: #fff;
  display: flex;
}

.financial-management-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.financial-management-section-2 .skills ul li i img {
  width: 14px;
}

.financial-management-section-2 .skill-image img {
  width: 100%;
}
.financial-management-section-2 .skills ul li p {
  font-size: 16px !important;
  line-height: 1.6;
  margin: 0;
}




/*--  PROFESSIONAL SKILLS SECTION--*/

.professional-skills-top {
  background-image: url(../images/business-skills.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.professional-skills-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

.professional-skills-top .heading {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 40%;
}

.professional-skills-top .heading h1 {
  font-size: 50px;
  color: #fff;
}

.professional-skills-section-1 {
  padding: 60px 0;
  background: #fff;
}

.professional-skills-section-1 .image-section {
  /* position: relative; */
  position: relative;
  display: inline-block;
}

.professional-skills-section-1 .image-section::before {
  content: "";
  position: absolute;
  top: 20px;
  /* Adjust vertical offset */
  left: -20px;
  /* Adjust horizontal offset */
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  /* Blue box */
  z-index: 0;
  border-radius: 10px;
  /* Optional rounded corners */
}

.professional-skills-section-1 .image-section img {
  width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
}

.professional-skills-section-1 .content {
  padding: 30px;
}

@media screen and (max-width:576px) {
  .professional-skills-section-1 .content {
    padding: 20px;
    margin-top: 10px;
  }
}

.professional-skills-section-1 .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
}

.professional-skills-section-1 ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 14px;
}

.professional-skills-section-1 ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.professional-skills-section-1 ul li .content {
  padding: 0 30px;
}

@media screen and (max-width:576px) {
  .professional-skills-section-1 ul li .content {
    padding: 0 20px;
  }
}

.professional-skills-section-1 ul li h2 {
  font-size: 18px;
  margin-bottom: 3px;
}

.professional-skills-section-1 ul li p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 0;
}

.professional-skills-section-2 {
  padding: 60px 0;
}

.professional-skills-section-2 .col-lg-6 {
  padding: 0;
}

.professional-skills-section-2 .skills {
  background: var(--primary_color);
  padding: 90px;
  position: relative;
}

.professional-skills-section-2 .skills::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  /* ✅ Repeat image */
  background-size: auto;
  /* keep natural size */
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  /* cover full area */
  opacity: 0.1;
  /* optional, to make it subtle */
  z-index: 0;
}

@media screen and (max-width:425px) {
  .professional-skills-section-2 .skills {
    padding: 30px;
  }
}

.professional-skills-section-2 .skills .heading h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.professional-skills-section-2 .skills ul {
  padding: 0;
}

.professional-skills-section-2 .skills ul li {
  list-style: none;
  margin-bottom: 10px;
  align-items: flex-start;
  color: #fff;
  display: flex;
}

.professional-skills-section-2 .skills ul li i {
  margin-right: 10px;
  padding: 10px;
}

.professional-skills-section-2 .skills ul li i img {
  width: 14px;
}

.professional-skills-section-2 .skill-image img {
  width: 100%;
}



.scholarship_lists .scholarship_list_card {
  background-color: #f5f5f5;
  color: #000;
  padding: 14px;
  border-radius: 10px;
  margin-top: 20px;
  min-height: 180px;


}

.about-section-3.scholarship_lists .right {
  padding: 0;
}

.about-section-3.scholarship_lists {
  padding: 0 0 40px 0;
}

.scholarship_lists .scholarship_list_card h4 {
  font-size: 22px;
  color: #151515;
  font-weight: 600;
}

.scholarship_lists .scholarship_contact a {
  color: var(--primary_color);
  text-decoration: none;
  margin-left: 10px;
}

.scholarship_lists .scholarship_contact a:hover {
  color: #0d6efd;

}

.scholarship-section-top {
  background-image: url(../images/scholarship-section-breadcrumbs.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}

.scholarship-section-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}

/* FAQ Accordion Custom Styles */
#faqAccordion .accordion-item {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  background-color: transparent;
}

#faqAccordion .accordion-button {
  font-size: 20px;
  font-weight: 500;
  border: none;
  background-color: #fff;
  border-radius: 8px !important;
  box-shadow: none !important;
  color: #333;
  display: flex;
  align-items: center;
}

#faqAccordion .accordion-button::before {
  content: "?";
  display: inline-block;
  margin-right: 12px;
  color: var(--primary_color);
  font-size: 20px;
  font-weight: 800;
  background: #f0f6fc;
  width: 34px;
  height: 34px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  flex-shrink: 0;
}

#faqAccordion .accordion-button:not(.collapsed) {
  background-color: #fff;
  color: var(--primary_color);
  box-shadow: none;
}

#faqAccordion .accordion-collapse {
  background-color: transparent;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

#faqAccordion .accordion-body {
  font-size: 16px;
  color: #555;
  padding-top: 5px;
}

/* ============popup-two-columnlayout============= */
/* Mega Menu Customization */
.dropdown-menu.mega-menu {
  background: #fff !important;
  padding: 0 !important;
  min-width: 300px !important;
  min-height: 100px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea !important;
  display: none;
  grid-template-columns: unset !important;
  /* override the 1fr 1fr */
}

/* Bridge gap so hover isn't lost */
.dropdown-menu.mega-menu::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 0;
  width: 100%;
  height: 34px;
  background: transparent;
}

@media (min-width: 992px) {

  .nav-item.dropdown:hover .dropdown-menu.mega-menu,
  .dropdown-menu.mega-menu.show {
    display: block !important;
    margin-top: 34px;
    /* Adjust dropdown gap */
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
  }
}

.dropdown-menu.mega-menu.show {
  display: block !important;
}

.dropdown-menu.mega-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  z-index: 10;
}

.dropdown-menu.mega-menu::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 9px 9px 9px;
  border-style: solid;
  border-color: transparent transparent #eaeaea transparent;
  z-index: 9;
}

.mega-menu .text-primary-dark {
  color: #1e3a5f !important;
  font-size: 15px;
}

.mega-menu .mega-list .dropdown-item {
  color: #4a5568 !important;
  padding: 12px 0 12px 0 !important;
  font-size: 14px;
  display: block;
  background: transparent !important;
  transition: all 0.3s ease;
}

.mega-menu .mega-list .dropdown-item:hover {
  color: var(--primary_color) !important;
  transform: translateX(5px) !important;
}

.mega-menu .mega-list .dropdown-item i {
  font-size: 11px;
  color: #a0aec0;
  transition: all 0.3s ease;
}

.mega-menu .mega-list .dropdown-item:hover i {
  color: var(--primary_color);
}

@media (min-width: 992px) {
  .border-end-lg {
    border-right: 1px solid #eaeaea;
  }
}

/* Modal Mega Menu adjustments */
#menuModal .mega-menu {
  min-width: 100%;
  position: static;
  transform: none;
  border: none !important;
  border-radius: 0;
  background: transparent !important;
  margin-top: 0;
}

#menuModal .mega-menu::before,
#menuModal .mega-menu::after {
  display: none;
}

#menuModal .mega-menu .mega-menu-section {
  padding: 10px 0 !important;
}

#menuModal .mega-menu .dropdown-item {
  color: #ffffff !important;
}

#menuModal .mega-menu .dropdown-item:hover {
  color: #ccc !important;
}

#menuModal .mega-menu .text-dark,
#menuModal .mega-menu .text-primary-dark {
  color: #fff !important;
}
/* ========OUR-COURSE=======//*/
 .mega-menu-section h6,
 .mega-menu-section span {
    line-height: 1.4;
    white-space: nowrap; 
    transition: color 0.3s ease;
}
.mega-menu-section:hover h6,
.mega-menu-section:hover span {
  color: var(--primary_color) !important;
}
    .custom-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%); 
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    pointer-events: none;
    margin-top: 36px;
}

.custom-dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding-top: 10px;
}

.custom-dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding-top: 10px;
}
  .custom-dropdown {
    position: relative;
}
  
    .enq-fab {
      position: fixed;
      bottom: 176px;
      right: 25px;
      z-index: 9999;
      background: linear-gradient(135deg, #003c72, #0071BC);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 14px 24px;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 28px rgba(0, 60, 114, 0.40);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .enq-fab:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(0, 60, 114, 0.50);
    }

    .enq-fab-icon {
      font-size: 18px;
    }

    .enq-panel {
      position: fixed;
      bottom: 90px;
      right: 28px;
      z-index: 9998;
      width: 340px;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
      overflow: hidden;
      transform: translateY(20px);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .enq-panel.enq-open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .enq-panel-header {
      background: linear-gradient(135deg, #003c72, #0071BC);
      padding: 20px 22px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .enq-panel-header h4 {
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      margin: 0;
    }

    .enq-panel-header p {
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.78rem;
      margin: 4px 0 0;
    }

    .enq-close-btn {
      background: rgba(255, 255, 255, 0.15);
      border: none;
      color: #fff;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      cursor: pointer;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s;
    }

    .enq-close-btn:hover {
      background: rgba(255, 255, 255, 0.28);
    }

    .enq-panel-body {
      padding: 20px 22px 22px;
    }

    .enq-field {
      margin-bottom: 14px;
    }

    .enq-field label {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      color: #444;
      margin-bottom: 5px;
    }

    .enq-field input,
    .enq-field select {
      width: 100%;
      padding: 10px 13px;
      border: 1.5px solid #e0e8f0;
      border-radius: 8px;
      font-size: 0.88rem;
      color: #0d1b2a;
      outline: none;
      transition: border-color 0.2s;
      background: #f8fbff;
      box-sizing: border-box;
    }

    .enq-field input:focus,
    .enq-field select:focus {
      border-color: #0071BC;
      background: #fff;
    }

    .enq-submit-btn {
      width: 100%;
      padding: 12px;
      background: linear-gradient(135deg, #003c72, #0071BC);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      margin-top: 4px;
      transition: opacity 0.2s;
    }

    .enq-submit-btn:hover {
      opacity: 0.88;
    }

    .enq-success {
      display: none;
      text-align: center;
      padding: 24px 16px;
    }

    .enq-success .enq-tick {
      font-size: 42px;
    }

    .enq-success p {
      color: #0071BC;
      font-weight: 700;
      font-size: 0.95rem;
      margin-top: 10px;
    }

    @media (max-width: 480px) {
      .enq-panel {
        width: calc(100vw - 32px);
        right: 16px;
      }

      .enq-fab {
        right: 16px;
        bottom: 20px;
      }
    }
    .justify-text{
            text-align: justify !important;
        }
    
    
      
                                                     