* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Responsive container defaults */
.container-fluid {
  padding-left: clamp(12px, 3vw, 24px);
  padding-right: clamp(12px, 3vw, 24px);
}

.container {
  padding-left: clamp(12px, 3vw, 15px);
  padding-right: clamp(12px, 3vw, 15px);
}

@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;
  font-size: clamp(13px, 2vw, 16px);
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --primary_color: #3E5490;
  --dark: #323232;
  --background_color: rgb(90, 161, 183,.1);
  
}
.web-heading{
  font-size: 40px;
  color: #0071BC;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #3E5490; 
  padding-bottom: 14px;
  width: fit-content;

}
.web-heading-center{
   font-size:42px;
    color:var(--primary_color);
    margin-bottom:15px;
    font-weight:600;
    border-bottom: 2px solid #3E5490; 
    padding-bottom: 14px;
    width: fit-content;
    margin: 0 auto;
}


a:hover {
  /* color: #000 !important; */
}

.navbar {
  min-height: 80px;
  background: #fff;
  padding: 16px 0;
}

.navbar-toggler-icon {
  background-image: url(../images/hamburg-menu-white.svg);
  content: "";
}

.navbar.scrolled .navbar-toggler-icon {
  background-image: url(../images/hamburg-menu-white.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: #3E5490;
  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: white !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, #3e5490, #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: 200px;
  margin-right: 10px;
}

.navbar .nav-link {
  color: #fff;
  font-size: 18px;
  margin-left: 16px;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover {
  color: var(--primary_color) !important;
  background-color: white;
  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:var(--primary_color) !important;
  background-color: white;
  border-radius: 5px;
  padding: 8px 12px;
}
@media screen and (max-width:576px) {
  .navbar .nav-link [aria-current="page"] {
    font-size: 16px;
    color: var(--primary_color) !important;
 
  }
}

.navbar .nav-link.dropdown-toggle:hover,
.navbar .nav-link.dropdown-toggle.active,
.navbar .nav-link.dropdown-toggle.active-nav {
  background-color: white;
  color: var(--primary_color) !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: white;
}

.navbar .dropdown-menu {
  background: #fff;
  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: #000;
  padding: 10px;
  /* display: inline-block; */
  transition: transform 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
  color: #3E5490;
  background: none;
  transform: translatex(10px);
}

.navbar-nav {
  align-items: center;
}

.navbar .nav-link.dropdown-toggle {
  color: white !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;
    padding: 6px 12px;
    border-radius: 10px;
}

.navbar .call-us-btn {
    display: flex;
    align-items: center; /* Vertically centers icon and text */
    gap: 10px;
}

.navbar .call-us-section .left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .call-us-section img {
    width: 30px;
    display: block;
}

.navbar .call-us-section p {
    font-size: 12px;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.navbar .call-us-section a {
    font-size: 16px;
    color: var(--primary_color);
    text-decoration: none;
    line-height: 1.2;
}

.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: 80vh;
  width: 100%;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
}
.herosection-1 .swiper-slide{
    height: 80vh;
    min-height: 600px; /* optional */
}



.herosection-1 .swiper-slide .content {
  height: 100vh;
  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: 30px;
  }
}

.herosection-1 .swiper-slide.new-banner::before {
  content: "";
  background: none;
  height: 80vh;
  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%;
  border-radius: 18px;
}



.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: 0% 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: 10px;
  font-weight: 700;
  text-align: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  border-bottom: 2px solid var(--primary_color);
  padding-bottom: 10px;
}

.herosection-3 ul {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  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 #dbdbdb;
  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: 30px;
  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: 10px;
  width: fit-content;
  min-height: 35px;
  display: flex;
  align-items: flex-end;
  background: rgba(134, 83, 0.1);
  border-radius: 6px;
  padding:  12px;
  

}

.herosection-3 .card .content-bottom a {
  font-size: 14px;
  text-decoration: none;
  color:white;
  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;
  font-weight: 600;
  color: var(--primary_color);
  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 var(--primary_color);
}

 .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-us-page-banner-new.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(--background_color);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}




.about-section-1 .row {
  display: flex;
  align-items: center;
}

.about-section-1 .content h1 {
  font-size: 40px;
  color: #3E5490;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #3E5490; 
  padding-bottom: 14px;
  width: fit-content;
}

.about-section-1 .content p {
  color: #434750;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  padding-right: 14px;
}

.about-section-1 .image-section img {
  width: 100%;
  border-radius: 18px;
}

    .justify-text{
            text-align: start !important;
        }
        /* ===============fddc============ */
        .mission-vision-section .content p {
  font-size: 16px;
        }
        /* =========================================
   FOOTWEAR DEVELOPMENT DESIGN STYLE
========================================= */

.mission-vision-section {
    padding: 60px 0;
    background:white;
    gap: 40px;
}

/* =========================================
   COMMON CARD DESIGN
========================================= */

.vision-card,
.mission-card {
    position: relative;

    overflow: hidden;

    border-radius: 28px;

    padding: 60px;

    transition: all 0.4s ease;
}

/* Hover Effect */

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* =========================================
   VISION CARD
========================================= */

.vision-card {

    background-color: rgb(134, 83, 0, 0.1);

    background-image:
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #3e5490, #5AA1B7);

    background-size:
    24px 24px,
    cover;
}

/* Icon */

.vision-card .icon {
    width: 75px;
    height: 75px;

    border-radius: 18px;

    background: rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    backdrop-filter: blur(10px);
}

.vision-card .icon i {
    font-size: 34px;

    color: #ffffff;
}

/* Heading */

.vision-card h2 {

    font-size: 30px;
    font-weight: 700;
    color: #ffffff;

    margin-bottom: 18px;

    letter-spacing: -1px;
}

/* Paragraph */

.vision-card p {

    max-width: 900px;

    font-size: 17px;

    line-height: 1.8;

    color: rgba(255,255,255,0.9);

    font-weight: 300;
}

/* Decorative Background */

.vision-card .bg-shape {

    position: absolute;

    right: -20px;
    bottom: -40px;

    display: flex;

    gap: 20px;

    opacity: 0.05;

    pointer-events: none;
}

.vision-card .bg-shape span {

    font-size: 260px;

    line-height: 1;

    color: #ffffff;
}

/* =========================================
   MISSION CARD
========================================= */
.mission-card .bg-shape {

    position: absolute;

    right: -20px;
    bottom: -40px;

    display: flex;

    gap: 20px;

    opacity: 0.05;

    pointer-events: none;
}

.mission-card .bg-shape span {

    font-size: 260px;

    line-height: 1;

    color: #ffffff;
}


.mission-card {

    background: linear-gradient(
    to left,
    rgb(90, 161, 183) 0%,
    rgb(255, 255, 255) 100%
);

    border: 1px solid #D9E3EE;

    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* Mission Icon */

.mission-card .mission-icon {

    width: 75px;
    height: 75px;

    border-radius: 18px;

    background:
    linear-gradient(
        135deg,
        #3e5490,
        #3e5490
    );

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;
}

.mission-card .mission-icon i {

    color: #ffffff;

    font-size: 32px;
}

/* Heading */

.mission-card h2 {

    font-size: 30px;
    font-weight: 700;

    color: #3e5490;

    margin-bottom: 20px;

    letter-spacing: -1px;
}
.mission-card li{
    color: #4B5563;

    font-size: 17px;

    line-height: 1.8;

    font-weight: 500;
}
.mission-card ul{
    padding-left: 22px;

    margin: 0;
}

/* =========================================
   LIST DESIGN
========================================= */



/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 991px) {

    .mission-vision-section {
        padding: 70px 0;
    }

    .vision-card,
    .mission-card {
        padding: 45px;
    }

    .vision-card h2 {
        font-size: 42px;
    }

    .mission-card h3 {
        font-size: 38px;
    }

    .vision-card p {
        font-size: 19px;
    }

    .mission-card ul li {
        font-size: 16px;
    }

    .vision-card {
        min-height: auto;
    }
}

/* =========================================
   MOBILE DESIGN
========================================= */

@media (max-width: 576px) {

    .mission-vision-section {
        padding: 50px 0;
    }

    .vision-card,
    .mission-card {

        padding: 20px 24px;

        border-radius: 20px;
    }

    .vision-card .icon,
    .mission-card .mission-icon {

        width: 60px;
        height: 60px;

        border-radius: 14px;
    }

    .vision-card .icon i,
    .mission-card .mission-icon i {

        font-size: 24px;
    }

    .vision-card h2 {

        font-size: 28px;

        margin-bottom: 20px;
    }

    .mission-card h3 {

        font-size: 28px;

        margin-bottom: 25px;
    }

    .vision-card p {

        font-size: 16px;

        line-height: 1.7;
    }

    .mission-card ul {

        gap: 14px;
    }

    .mission-card ul li {

        font-size: 16px;

        line-height: 1.7;

        padding-left: 16px;
        text-align: start !important;
    }

    .mission-card ul li::before {

        width: 10px;
        height: 10px;

        top: 10px;
    }

    .vision-card .bg-shape span {

        font-size: 160px;
    }
}


/* =========================================
   CORE ACTIVITIES SECTION
========================================= */

.about-section-2 {
    padding: 60px 0;

    background:
    linear-gradient(
        180deg,
        #F7FAFD 0%,
        #EEF5FB 100%
    );

    position: relative;

    overflow: hidden;
}

/* =========================================
   CARD DESIGN
========================================= */

.card-for-core-activities {

    position: relative;

    height: 100%;

    padding: 45px 38px;

    border-radius: 28px;

    background:
    linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F9FCFF 100%
    );

    border: 1px solid #DCE7F2;

    overflow: hidden;

    transition: all 0.45s ease;

    box-shadow:
    0 10px 30px rgba(15,23,42,0.04);

    z-index: 1;
    min-height: auto;
}

/* =========================================
   TOP BLUE ACCENT
========================================= */

.card-for-core-activities::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: var(--primary_color);
    

    transition: 0.4s ease;
}

/* =========================================
   HOVER EFFECT
========================================= */

.card-for-core-activities:hover {

    transform: translateY(-10px);

    box-shadow:
    0 25px 60px rgba(240, 230, 204, 0.08);

    border-color: rgba(255, 249, 238, 0.18);
}

/* =========================================
   ICON BOX
========================================= */

.card-icon-box {

    width: 85px;
    height: 85px;

    border-radius: 22px;

    background:#3E5490;
    

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 32px;

    position: relative;

    transition: 0.4s ease;
}

/* Icon Glow */

.card-icon-box::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background:
    radial-gradient(
        circle,
        rgba(90, 161, 183,.10),
        transparent 70%
    );

    opacity: 0;

    transition: 0.4s ease;
}

/* Hover */

.card-for-core-activities:hover .card-icon-box {

    transform: rotate(-4deg) scale(1.05);
}

.card-for-core-activities:hover .card-icon-box::before {

    opacity: 1;
}

/* =========================================
   ICON IMAGE
========================================= */

.card-icon-box img {

    width: 42px;
    height: 42px;

    object-fit: contain;

    display: block;
}

/* =========================================
   CONTENT
========================================= */

.card-content-box h3 {

    font-size: 28px;
    font-weight: 700;

    line-height: 1.3;

    color: #3E5490;

    margin-bottom: 20px;

    letter-spacing: -0.5px;
}
.event-content{
    flex: 1;
    padding: 50px;
    
}
     .upcoming-event{
    padding: 80px 0;
    background: #ffffff;
}

.event-heading{
    text-align: center;
    margin-bottom: 50px;
}



.event-heading p{
    color: #666;
    margin-top: 16px;
     line-height: 1.7;
}

.event-card{
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #3E5490;
    background-color: var(--background_color);
}

.event-image{
    flex: 1;
}

.event-image img{
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}



.event-tag{
    display: inline-block;
    background:white;
    color: #3E5490;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.event-content h3{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #3E5490;
}

.event-content p{
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.prime-button{
    display: inline-block;
    padding: 14px 30px;
    background: #3E5490;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}


.prime-button:hover{
    
    background-color: white;
    color: #3E5490;
    border: 1px solid #3E5490;
}
/* =====board-members===== */
@media (max-width: 768px){

    .event-card{
        flex-direction: column;
    }

    .event-content{
        padding: 30px 20px;
        text-align: center;
    }

    .event-content h3{
        font-size: 28px;
    }
    .event-image img{
        height: auto;
        object-fit: fill;  
    }

}
/* Paragraph */

.card-content-box p {

    font-size: 16px;

    line-height: 1.9;

    color: #5B6472;

    margin-bottom: 0;
}

/* =========================================
   CARD BACKGROUND PATTERN
========================================= */

.card-for-core-activities::after {

    content: "";

    position: absolute;

    right: -40px;
    bottom: -40px;

    width: 180px;
    height: 180px;

    background:
    radial-gradient(
        rgba(0,113,188,0.05),
        transparent 70%
    );

    z-index: -1;
}

/* =========================================
   COLUMN SPACING
========================================= */

.about-section-2 .col-lg-4 {

    margin-bottom: 30px;
}

/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 991px) {

    .about-section-2 {

        padding: 70px 0;
    }

    .card-for-core-activities {

        padding: 38px 30px;

        border-radius: 22px;
    }

    .card-content-box h3 {

        font-size: 24px;
    }

    .card-content-box p {

        font-size: 15px;

        line-height: 1.8;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .about-section-2 {

        padding: 50px 0;
    }

    .card-for-core-activities {

        padding: 30px 24px;

        border-radius: 20px;
    }

    .card-icon-box {

        width: 70px;
        height: 70px;

        border-radius: 18px;

        margin-bottom: 24px;
    }

    .card-icon-box img {

        width: 34px;
        height: 34px;
    }

    .card-content-box h3 {

        font-size: 22px;

        margin-bottom: 16px;
    }

    .card-content-box p {

        font-size: 14px;

        line-height: 1.7;
    }
}
/* .about-section-2 .container h2 { 
  font-size: 40px;
  font-weight: 700;
  color: #865300;
  /* margin-bottom: 60px; 
  text-align: start;
   margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #865300; 
  padding-bottom: 14px;
  width: fit-content;*/

@media (max-width: 991px) {
  .about-section-2 .container h2 {
    font-size: 30px;
    font-weight: 700;
    color: #865300;
    text-align: center;
    margin-bottom: 16PX;
    width: fit-content;
  }
}
/* =========================================
   ABOUT SECTION 3
========================================= */

.about-section-3 {
    padding: 0px 0;
    overflow: hidden;
    background: white;
}

/* =========================================
   ROW STRETCH
========================================= */

.about-section-3 .row{
    display: flex;
    align-items: stretch;
}

/* =========================================
   LEFT IMAGE COLUMN
========================================= */


.about-section-3 .left{
    padding: 0 !important;
    display: flex;
}

/* =========================================
   IMAGE SECTION
========================================= */

.about-section-3 .image-section{
    width: 100%;
    min-height: 100%;
}

/* =========================================
   IMAGE
========================================= */

.about-section-3 .image-section img{
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}
@media (max-width: 991px) {
    .about-section-3 .image-section img{
        min-height: 300px;
        padding: 18px !important;
        border-radius: 18px;

    }
}
/* =========================================
   RIGHT CONTENT SIDE
========================================= */

.about-section-3 .right {

    background: #ffffff;

    display: flex;
    align-items: center;

    padding: 70px 60px;

    position: relative;
    padding-left: 75px !important;

    z-index: 2;
}

/* =========================================
   CONTENT
========================================= */

.about-section-3 .content {

    width: 100%;
}

/* =========================================
   HEADING
========================================= */

.about-section-3 .content h1 {

    font-size: 40px;
    font-weight: 700;
    

    margin-bottom: 40px;
   
  
  border-bottom: 2px solid #3E5490; 
  padding-bottom: 14px;
  width: fit-content;

    line-height: 1.1;
}

/* =========================================
   LIST
========================================= */

.about-section-3 .content ul {

    padding-left: 22px;

    margin: 0;
}

/* =========================================
   LIST ITEMS
========================================= */

.about-section-3 .content ul li {

    font-size: 17px;

    line-height: 1.9;

    color: #4B5563;

    margin-bottom: 14px;

    font-weight: 500;
}

/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 991px) {

    .about-section-3 .row {

        min-height: auto;

        flex-direction: column-reverse;
    }

    /* IMAGE */

    .about-section-3 .left {

        height: 450px;
    }

    /* CONTENT */

    .about-section-3 .right {

        /* padding: 50px 35px; */
    }

    /* HEADING */

    .about-section-3 .content h1 {

        font-size: 42px;
    }

    /* LIST */

    .about-section-3 .content ul li {

        font-size: 17px;

        line-height: 1.8;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .about-section-3 {
        padding: 50px 0;
    }

    /* IMAGE */

    .about-section-3 .left {

        height: 300px;
    }

    /* CONTENT */

    .about-section-3 .left {

       padding: 35px 22px; 
    }

    /* HEADING */

    .about-section-3 .content h1 {

        font-size: 32px;

        margin-bottom: 25px;
    }

    /* LIST */

    .about-section-3 .content ul li {

        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 12px;
    }
}




         .custom-new-footer {
           background: linear-gradient(
              135deg,
              #3E5490 20%,
              #3e5490 100%
              );
            overflow: hidden;
            font-family: 'Degular', sans-serif;
            border: none;
        }
        .custom-new-footer-divider {
            border-right: 1px solid #535353;
        }
        @media (max-width: 991px) {
            .custom-new-footer-divider {
                border-right: none;
                border-bottom: 1px solid #535353;
                padding-bottom: 20px;
                margin-bottom: 20px;
            }
            .custom-new-footer .contact-us-col {
                padding-left: 10px !important;
                text-align: start;
            }
        }

        @media (max-width: 576px) {
            .custom-new-footer {
                padding-top: 30px !important;
                padding-bottom: 20px !important;
            }

            .custom-new-footer h5 {
                font-size: 12px;
                font-weight: 600;
                letter-spacing: 0.3px;
            }

            .custom-new-footer h6 {
                font-size: 13px;
                font-weight: 500;
                letter-spacing: 0.3px;
                margin-top: 8px;
            }

            .custom-new-footer a.footer-link {
                font-size: 12px;
            }

            .custom-new-footer .social-link {
                font-size: 18px;
            }

            .custom-new-footer .row {
                margin: 0;
            }

            .custom-new-footer .col-lg-3,
            .custom-new-footer .col-md-6,
            .custom-new-footer .col-md-12 {
                margin-bottom: 15px;
                text-align: start;
            }

            .custom-new-footer .col-md-6 {
                text-align: start;
            }

            .custom-new-footer img {
                max-width: 100%;
                height: auto;
            }
        }
        .custom-new-footer a.footer-link {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            transition: color 0.3s ease;
            text-decoration: none;
        }
        .custom-new-footer a.footer-link:hover {
            color: #000000;
        }
        .custom-new-footer .social-link {
            color: #7d7d7d;
            font-size: 20px;
            transition: color 0.3s ease;
        }
        .custom-new-footer .social-link:hover {
            color: rgba(255, 255, 255, 0.7);
        }
        /* .custom-new-footer .enquire-btn-new { 
            background-color: #000000;
            border: 1px solid #ffffff;
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
             transition: all 0.3s ease; */
         /*  }
        .custom-new-footer .enquire-btn-new:hover {
            background-color: #333333;
            border-color: #333333;
            color: #ffffff;
         } */
/* ==========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/page-top-banner-1.png);
  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--*/

.gallery-top {
  background-image: url(../images/gallery-top-banner-image-new.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 200px;
  padding-bottom: 250px;
  background-position: center;
}
.gallery-top .heading h1 {
  font-size: 50px;
  color: #fff;
}
.gallery-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.7);
  z-index: 0;
}
.gallery-section h2{
  font-size: 40px;
  font-weight: 700;
  border-bottom: 2px solid#3e5490;
  padding-bottom: 10px;
  width: fit-content;
  margin: auto;

}
.gallery-header{
  margin-bottom: 40px;
  margin-top: 40px;
}
.gallery-header p{
  margin-top: 16px;
}

.gallery-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============ */
.contact-us-top {
  background-image: url(../images/top-banner-images-2.png);
  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;
  font-size: clamp(13px, 2.5vw, 16px);
  width: 100%;
}

.contact-us-section-1 .right-section label {
  margin-bottom: 10px;
  font-size: clamp(12px, 2vw, 14px);
}

.contact-us-section-1 .right-section .form-select {
  padding: 10px;
  border-radius: 6px;
  font-size: clamp(13px, 2.5vw, 16px);
  width: 100%;
}

.contact-us-section-1 .right-section button {
  background: var(--primary_color);
  padding: 10px;
  color: #fff;
  border-radius: 10px;
  border: none;
  width: 100%;
  font-size: clamp(13px, 2.5vw, 16px);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.contact-us-section-1 .right-section button:hover {
  opacity: 0.9;
}




/*--  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(90deg, #3E5490, #5AA1B7);
  -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: white;
  border-bottom: 1px solid #989898;
}

.navbar-top p {
  font-size: 14px;
  color: var(--primary_color);
  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;
}


/*--  RESPONSIVE IMPROVEMENTS--*/

/* Responsive Iframe Container */
.map-responsive {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  /* 4:3 aspect ratio */
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Section Responsive */
.contact-us-top .heading {
  width: 85%;
  max-width: 600px;
}

.contact-us-top .heading h1 {
  font-size: clamp(32px, 5vw, 50px);
}

/* Contact Section Padding Responsive */
.contact-us-section-1 .left-section {
  padding: clamp(20px, 5vw, 100px);
}

.contact-us-section-1 .left-section h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}

.contact-us-section-1 .left-section ul li p {
  font-size: clamp(14px, 2.5vw, 16px);
}

/* Contact Right Section */
.contact-us-section-1 .right-section {
  padding: clamp(15px, 3vw, 30px);
}

.contact-us-right-section h1 {
  font-size: clamp(24px, 3.5vw, 30px);
}

/* Navbar Responsiveness */
.navbar .navbar-brand img {
  width: clamp(150px, 25vw, 200px);
  margin-right: 10px;
}

.navbar .nav-link {
  font-size: clamp(14px, 2.5vw, 18px);
  margin-left: clamp(8px, 1.5vw, 16px);
}

/* .navbar .call-us-section {
  flex-wrap: wrap;
  gap: clamp(5px, 1vw, 10px);
} */

/* Footer Responsiveness */
.custom-new-footer h5 {
  font-size: clamp(12px, 2vw, 14px);
}

.custom-new-footer h6 {
  font-size: clamp(13px, 2.2vw, 16px);
}

.footer-link {
  font-size: clamp(12px, 2vw, 14px);
}

/* Tablet (768px and below) */
@media screen and (max-width: 768px) {
  .contact-us-top {
    padding-top: 120px;
    padding-bottom: 150px;
  }

  .contact-us-section-1 .left-section {
    margin-bottom: 20px;
    padding: 30px 20px;
  }

  .contact-us-section-1 .left-section ul li {
    gap: 12px;
    padding: 12px 0;
  }

  .contact-us-section-1 .right-section {
    padding: 20px;
  }

  .map-responsive {
    padding-bottom: 66.66%;
    /* Adjust aspect ratio for mobile */
  }

  .navbar .nav-link {
    font-size: 16px;
    margin-left: 8px;
  }
}

/* Mobile (576px and below) */
@media screen and (max-width: 576px) {
  .contact-us-top {
    padding-top: 100px;
    padding-bottom: 120px;
  }

  .contact-us-top .heading {
    width: 90%;
    top: 50%;
  }

  .contact-us-top .heading h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .contact-us-section-1 .left-section {
    padding: 25px 20px;
    margin-bottom: 25px;
  }

  .contact-us-section-1 .left-section h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .contact-us-section-1 .left-section ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 0;
  }

  .contact-us-section-1 .left-section ul li i {
    padding: 5px;
  }

  .contact-us-section-1 .left-section ul li p {
    font-size: 14px;
  }

  .contact-us-section-1 .right-section {
    padding: 20px;
  }

  .contact-us-section-1 .right-section h1 {
    font-size: 24px;
  }

  .contact-us-section-1 .right-section input,
  .contact-us-section-1 .right-section .form-select {
    padding: 8px;
    font-size: 14px;
  }

  .contact-us-section-1 .right-section button {
    padding: 10px;
    font-size: 14px;
  }

  .navbar .navbar-brand img {
    width: 140px;
  }

  .navbar .nav-link {
    font-size: 14px;
    margin-left: 5px;
    padding: 6px 8px !important;
  }

  .navbar .call-us-section {
    flex-direction: column;
    gap: 8px;
  }

  .navbar .call-us-section p {
    font-size: 11px;
  }

  .navbar .call-us-section a {
    font-size: 14px;
  }
}

/* Extra Small Devices (425px and below) */
@media screen and (max-width: 425px) {
  .contact-us-top {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .contact-us-top .heading h1 {
    font-size: 24px;
  }

  .contact-us-section-1 .left-section {
    padding: 20px 15px;
  }

  .contact-us-section-1 .left-section h1 {
    font-size: 22px;
  }

  .contact-us-section-1 .right-section {
    padding: 15px;
  }

  .contact-us-section-1 .right-section h1 {
    font-size: 20px;
  }

  .map-responsive {
    padding-bottom: 75%;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar .navbar-brand img {
    width: 120px;
  }

  .navbar .nav-link {
    font-size: 13px;
    margin-left: 2px;
  }

  .navbar .call-us-section {
    gap: 5px;
    padding: 4px;
  }

  .navbar .call-us-section img {
    width: 24px;
  }
}

.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 .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;
}
  
    .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;
        }

  .expo-content h3{
    font-size: 24px;
    font-weight: 600;
    color: var(--primary_color);
    margin-bottom: 20px;
  } 
  .expo-content p{
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 20px;
  } 

.board-members {
    padding: 80px 20px;
    text-align: center;
}

.board-members h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--primary_color);
    border-bottom: 2px solid #3E5490;
    padding-bottom: 14px;
    width: fit-content;
    margin: 0 auto;
}


.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.member-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.member-card:hover {
    transform: translateY(-8px);
}

.member-card img {
    width: 100%;
    height: 280px;
    object-fit: fill;
}

.member-card h3 {
    margin: 15px 0 5px;
    color: #151515;
    font-size: 22px;
    font-weight: 600;
}

.member-card p {
    color: #3E5490;
    font-weight: 600;
    margin-bottom: 20px;
}
@media (max-width: 576px) {
    .board-members h2 {
        font-size: 28px;
    }
    .member-card img {
        height: 350px;
        object-fit: fill;
    }
}
.brochure-section{
    padding:80px 20px;
    background:#f8f8f8;
}

.section-header{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:50px;
}

.section-header h2{
    font-size:42px;
    color:var(--primary_color);
    margin-bottom:15px;
    font-weight:600;
    border-bottom: 2px solid #3e5490;
    padding-bottom: 14px;
    width: fit-content;
    margin: 0 auto;
}

.section-header p{
    color:#666;
    line-height:1.7;
    margin: 16px 0;
}

.brochure-gallery{
    max-width:1100px;
    margin:auto;
}

.hero-image img,
.poster-image img{
    width:100%;
    object-fit:fill;
    border-radius:20px;
}

.sub-images{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin:20px 0;
}

.sub-images img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:20px;
}

.poster-image{
    margin-bottom:35px;
}


.prime-button-outline{
    display:flex;
    align-items:center;
    justify-content:center;
    background:transparent;
    border:2px solid #3e5490;
    color:#3e5490;
    width:fit-content;
    margin:auto;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    padding:14px 32px;
    height:50px;
    }
    .button-box{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-direction:row;
    width:fit-content;
    margin:auto;
    }
    @media (max-width: 576px) {
    .button-box{
        flex-direction:column;
        width:100%;
    } 
    .prime-button,
    .prime-button-outline{
        width:100%;
        height:50px;
        padding:0 24px;
        display: flex;
        justify-content: center;
        align-items: center;
    }



@media (max-width: 768px) {
    .hero-image img,
    .poster-image img {
        object-fit: fill;
    }
    .sub-images {
        grid-template-columns: 1fr;
    }
    .sub-images img {
        height: 200px;
    }
    .section-header h2{
    font: size 30px;
    }
}

@media (max-width: 480px) {
    .hero-image img,
    .poster-image img {
      object-fit: fill;
        
    }
    .sub-images {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 15px 0;
    }
    .sub-images img {
        height: 150px;
        object-fit: fill;
    }
    .brochure-gallery {
        padding: 0 10px;
    }
    .brochure-btn,
    .brochure-btn-outline {
        height:50px;
        padding: 0 24px;
        font-size: 14px;
        width:100%;
    }
}
    color:var(--primary_color);
    margin-bottom:15px;
}
}
.learn-btn {
  background: var(--primary_color);
  color: #fff;
  padding: 12px 28px;
  height: 50px;
  border-radius: 50px;
  font-size: 14px;
  width: 150px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  justify-content: center;
  display: flex;
  align-items: center;
}
.learn-btn:hover {
  background: #1A0C05;
}
/* ==========gallery-dummy-content=========== */
    .gallery-placeholder{
    text-align:center;
    padding:80px 20px;
}

.gallery-placeholder h2{
  color: var(--primary_color);
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  
  border-bottom: 2px solid var(--primary_color);
  padding-bottom: 10px;
}

.gallery-placeholder p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}


/* ================dummy-ends-here============ */
.fddc-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;

    background: url("../images/home-banner-new.png") center/cover no-repeat;
    overflow: hidden;
    object-fit: fill;
}

.fddc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.fddc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}
.fddc-hero .color-font{
  color: #5AA1B7;
}

.fddc-hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.fddc-hero-content p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255,.80);
}

.text-primary {
    color: #F5A623; /* Change to your brand color */
}

/* Tablet */
@media (max-width: 768px) {
    .fddc-hero-content h1 {
        font-size: 36px;
    }

    .fddc-hero-content p {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .fddc-hero {
        min-height: 70vh;
    }

    .fddc-hero-content h1 {
        font-size: 30px;
    }

    .fddc-hero-content p {
        font-size: 16px;
    }
}
.text-primary{
    color: var(--primary_color) !important;
}
/* ==============about-us-drop-down=========== */
.nav-item.dropdown {
    position: relative;
    list-style: none;
}

.dropdown-toggle {
    display: block;
    text-decoration: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 260px;
    padding: 10px 0;
    margin: 0;

    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

    list-style: none;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.3s ease;
    z-index: 999;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #000000;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #865300;
}
@media (max-width: 768px) {
    .nav-item.dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* =================drop-down-ends=============== */
  .nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 9999;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 12px 20px;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}  
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    z-index: 9999;
    
    
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.dropdown-item:hover {
    background-color: #f8f8f8;
    color: #865300;
}
.gallery-masonry{
    column-count:3;
    column-gap:20px;
}

.gallery-item{
    break-inside:avoid;
    margin-bottom:20px;
    overflow:hidden;
    border-radius:16px;
}

.gallery-item img{
    width:100%;
    display:block;
    border-radius:16px;
    transition:.4s ease;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

.gallery-item.large img{
    min-height:420px;
    object-fit:cover;
}

.hidden-gallery{
    display:none;
}

.gallery-btn-wrap{
    text-align:center;
    margin-top:40px;
}

.gallery-btn-wrap button{
    background:#3e5490;
    color:#fff;
    border:none;
    padding:14px 32px;
    border-radius:50px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.gallery-btn-wrap button:hover{
    transform:translateY(-3px);
}

@media(max-width:992px){
    .gallery-masonry{
        column-count:2;
    }
}

@media(max-width:768px){
    .gallery-masonry{
        column-count:1;
    }
}
/* =======events-drop-down */
/* Mobile dropdown */

@media (max-width: 768px) {

    .modal .dropdown-menu {
        display: none;
        position: static;
        border: none;
        box-shadow: none;
        padding-left: 15px;
        margin-top: 5px;
    }

    .modal .dropdown.active .dropdown-menu {
        display: block;
    }

    .modal .dropdown-item {
        padding: 8px 0;
    }
}
/* ----------desk-------------- */
@media (min-width: 992px) {

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all .3s ease;
        margin-top: 0;
    }

    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
/* ===== PREMIUM DROPDOWN ===== */

.custom-dropdown {
    width: 500px;
    padding: 0;
    border: none;
    overflow: hidden;

    border-radius: 20px;

    background: #fff;

    box-shadow:
        0 25px 50px rgba(0,0,0,.15);

    margin-top: 20px;
}

/* Header Area */

.dropdown-header {
    padding: 25px;

    background:
    linear-gradient(
        135deg,
        #3e5490,
        #5AA1B7
    );

    color: white;
}

.dropdown-header h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.dropdown-header p {
    margin: 8px 0 0;
    font-size: 14px;
    opacity: .9;
}

/* Body */

.dropdown-body {
    padding: 15px;
}

/* Items */

.custom-item {
    display: flex !important;
    align-items: center;

    gap: 18px;

    padding: 18px !important;

    border-radius: 14px;

    transition: .35s ease;
}

/* Attractive Hover */

.custom-item:hover {
    background: #f4f8ff;
    transform: translateX(8px);
}

/* Icon */

.item-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background:
    linear-gradient(
        135deg,
        rgba(30,115,190,.15),
        rgba(62,84,144,.25)
    );

    color: #3e5490;
    font-size: 24px;
}

/* Content */
.item-content h6 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #111;
}

.item-content p {
    margin-top: 4px;
    margin-bottom: 0;

    font-size: 13px;
    color: #666;
}

/* Animation */

@media(min-width:992px){

    .custom-dropdown{
        display:block;
        opacity:0;
        visibility:hidden;

        transform:
        translateY(20px)
        scale(.95);

        transition:.35s ease;
    }

    .custom-nav-dropdown:hover .custom-dropdown{
        opacity:1;
        visibility:visible;

        transform:
        translateY(0)
        scale(1);
    }

}
.custom-dropdown{
    border:1px solid rgba(30,115,190,.1);
    box-shadow:
        0 20px 60px rgba(30,115,190,.15),
        0 10px 20px rgba(0,0,0,.08);
}
/* ==========================
   MOBILE DROPDOWN FIX
========================== */

@media (max-width: 768px) {

    .custom-dropdown {
        width: 100% !important;
        max-width: 100% !important;

        margin-top: 10px;
        border-radius: 12px;

        box-shadow: none;
        border: 1px solid #eee;

        position: static !important;
        transform: none !important;
    }

    .custom-dropdown::before {
        display: none;
    }

    .dropdown-header {
        padding: 15px;
    }

    .dropdown-header h5 {
        font-size: 16px;
    }

    .dropdown-header p {
        font-size: 12px;
    }

    .custom-item {
        padding: 12px !important;
        gap: 12px;
    }

    .item-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }

    .item-content h6 {
        font-size: 15px;
    }

    .item-content p {
        font-size: 12px;
    }

    /* Hidden by default */
    .modal .dropdown-menu {
        display: none;
    }

    /* Show when clicked */
    .modal .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Disable desktop animation */
    .custom-nav-dropdown:hover .custom-dropdown {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}
      
                                                     