body {
  font-family: "DM Sans", sans-serif;
  margin: 0;
  padding: 0;
  color: #103756;

}
html, body {
  overflow-x: hidden;
}
.hero-section {
  background-image: url("images/Hero_Background.svg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 15%; /* Space for overlay */
}

.container {
  z-index: 2;
  position: relative;
  padding-bottom: 50px;
}

/* Navbar styles */
.navbar {
  padding: 2rem 4rem;
}

.btn-primary {
  background-color: transparent;
  color: white;
  border: none;
}

.btn-outline-primary {
  background-color: transparent;
  color: white;
  border: none;
}

.btn-primary :hover {
  background-color: white;
  color: #4eb4ff;
  border: 1px solid white;
}

.btn-outline-primary :hover {
  background-color: white;
  color: #4eb4ff;
  border: 1px solid white;
}

/* Heading and subheading */
.hero-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-subheading {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
}

/* Buttons */
.btn-gradient {
  background: linear-gradient(90deg, #1573ff, #4eb4ff);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  margin-top: 15px;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #4eb4ff, #1573ff);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  margin-top: 15px;
}

.btn-gradient + .btn-gradient {
  margin-left: 0.7rem;
}

.dashboard-overlay {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 0.5rem;
  z-index: 1;
  margin-top: 5px;
}

/* Dashboard image */
.dashboard-image {
  width: 100%;
  height: auto;
  z-index: 2;
  object-fit: cover;
}

@media (max-width: 412px) {
  .hero-heading {
    font-size: 1.2rem;
    /* Smaller font for very small screens */
    line-height: 28px;
    padding: 0 15px;
  }

  .hero-subheading {
    font-size: 1rem;
    /* Adjust subheading size */
    padding: 0 15px;
  }

  .btn-gradient {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    /* Reduce button size */
  }

  .btn-primary,
  .btn-outline-primary {
    padding: 0.5rem 1rem;
    /* Adjust padding for small screens */
  }

  .dashboard-overlay {
    width: 100%;
    /* Full width for very small screens */
    padding: 0.5rem;
    bottom: -20%;
    /* Adjust positioning for small screens */
  }

  .hero-section {
    height: 60vh;
    /* Reduce hero section height on small screens */
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 1.5rem;
    padding: 0 20px;
    line-height: 40px;
  }
  .container {
    flex-direction: column;
  }

  .hero-subheading {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .dashboard-overlay {
    width: 90%;
    padding: 0.5rem;
    bottom: 0%;
  }

  .hero-section {
    height: 70vh;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .hero-section {
    height: 100vh;
  }

  .dashboard-overlay {
    max-width: 1000px;
  }
}

/* For very small screens (less than 412px) including 360px */
@media (max-width: 360px) {
  .hero-heading {
    font-size: 1.1rem;
    /* Smaller font size for small screens */
    line-height: 26px;
    padding: 0 12px;
    /* Less padding for smaller screens */
  }

  .hero-subheading {
    font-size: 0.9rem;
    /* Smaller subheading size */
    padding: 0 12px;
  }

  .btn-gradient {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    /* Smaller button size */
  }

  .btn-primary,
  .btn-outline-primary {
    padding: 0.5rem 1rem;
    /* Reduce button size */
  }

  .dashboard-overlay {
    position: relative;
    /* Make the overlay relative */
    width: 100%;
    /* Full width for small screens */
    padding: 0.5rem;
    top: 5%;
    /* Move the overlay further down by using top */
  }

  .hero-section {
    height: 80vh;
    /* Further reduce the height on very small screens */
  }
}
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh; /* Ensure it takes full viewport height */
  }

  .dashboard-overlay {
    max-width: 1000px;
  }
}

.navbar-collapse {
  transition: transform 0.3s ease-in-out;
}

/* Small Screens (Right Slide-in Navbar) */
@media (min-width: 768px) and (max-width: 992px) , (max-width: 768px){
  .navbar-collapse {
      position: fixed;
      top: 0;
      right: 0;
      width: 70%; 
      height: 100%;
      background: linear-gradient(to right, #4E9BFF, #1573FF); 
      transform: translateX(100%); 
      z-index: 1050;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
      overflow-y: auto;
      padding: 2.5rem;
  }
  .navbar .btn{
    padding-left:0% ;
    padding-right: 0%;
    padding-top: 20px;
  }
  .navbar-collapse.show {
      transform: translateX(0); 
  }

  .navbar-toggler {
      position: relative;
      z-index: 1100;
  }

  .navbar-nav {
    margin-top: 50px;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;

  }

  .nav-item a {
      color: white;
      font-size: 1rem;
      text-decoration: none;
  }

  .dropdown-menu {
      background-color: #444;
      border: none;
  }

  .dropdown-item {
      color: white;
  }
  .navbar {
    padding: 2rem 2rem;
}
}





.info-section {
  margin-top: 15%;
  margin-bottom: 5%;
}
.cta-section {
  background: linear-gradient(90deg, #1573ff, #4eb4ff);
  color: white;
  padding: 100px 0;
}

.btn-cta {
  background: linear-gradient(90deg, #1b45b4, #1c2792); /* Solid background */
  color: white;
  padding: 12px 25px;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  border: 1px solid #1c2792; /* Hover effect */
  color: #1c2792;
  background: none;
}
/* Adjust the image size */
.resized-image {
  width: 70%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  display: block;
}


/* Trusted Leaders Section */
.trusted-leaders-section {
  display: flex;
  align-items: flex-start;
  padding: 20px 20px;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #ffffff;
  gap: 20px;
}

/* Left Section - Title */
.trusted-leaders-title {
  flex: 1;
  text-align: left;
}

.trusted-leaders-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1c2792;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle shadow on the title */
}

/* Right Section - Cards */
.trusted-leaders-container {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.trusted-leader-card {
  background: linear-gradient(145deg, #1b45b4, #4eb4ff); /* Adding gradient background */
  color: #ffffff;
  border-radius: 15px;
  border-top-left-radius: 80px;
  padding: 30px 40px;
  flex: 1 1 calc(40% - 10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.trusted-leader-photo {
  width: 170px; /* Slightly increased image size */
  height: 170px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow around image */
}

.trusted-leader-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.trusted-leader-content {
  text-align: center;
  margin-top: 5px;
}

.trusted-leader-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffffff;
  transition: color 0.3s ease;
}
.trusted-leader-role {
  font-size: 1.1rem;
  color: #4eb4ff;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.trusted-leader-description {
  font-size: 1rem;
  line-height: 1.5;
  text-align: justify;
  margin: 0;
  padding: 0;
}
.trusted-leader-description p {
  margin-bottom: 1rem; 
}

.trusted-leader-description::before {
  content: '';
  display: block;
  height: 2px;
  background-color: #4eb4ff;
  margin: 10px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .trusted-leaders-section {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px; /* Reduce padding for mobile */
  }

  .trusted-leaders-title {
    text-align: center;
    margin-bottom: 20px;
  }

  .trusted-leaders-title h2 {
    font-size: 2rem; /* Reduce font size for smaller screens */
  }

  .trusted-leaders-container {
    flex-direction: column;
    gap: 50px;
    margin-top: 70px;
  }

  .trusted-leader-card {
    flex: 1 1 100%; 
    padding: 20px; 
    margin-bottom: 20px;
  }

  .trusted-leader-photo {
    width: 140px; /* Increased size for mobile */
    height: 140px;
  }

  .trusted-leader-name {
    font-size: 1.4rem; 
  }

  .trusted-leader-role {
    font-size: 1rem;
  }

  .trusted-leader-description {
    font-size: 0.95rem; 
    line-height: 1.5; 
  }
}



@media (max-width: 767px) {
  .info-section {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    margin-top: 0%;
  }
  .resized-image {
    margin-bottom: 10px;
  }
}


.team-section {
  padding: 4rem 2rem;
  text-align: center;
}

.team-heading {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1b45b4;
  font-weight: bold;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-photo {
  width: 100%; /* Team member ki full width */
  aspect-ratio: 3 / 2; /* Adjust as per your image's ratio */
  background-size: cover;
  background-position: center;
}



.member-info {
  padding: 1.5rem;
  text-align: left;
}

.member-name {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: #1573FF;
}

.member-role {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
}

.member-description {
  font-size: 0.9rem;
  color: #777;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-member {
    margin: 0 auto;
  }
  .team-heading {
    font-size: 2rem;
  }
}
.footer {
  position: relative;
  background: linear-gradient(
    90deg,
    #1b45b4,
    #1c2792
  ); /* Dark background color */
  color: white;
  padding: 50px 0;
  box-shadow: 0px -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social .social-icon {
  font-size: 26px;
  color: white;
  transition: color 0.3s ease;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2); /* Transparent background */
}

.footer-social .social-icon:hover {
  color: #2196f3; /* Hover effect color */
  background: rgba(255, 255, 255, 0.4);
}

.footer-links,
.footer-right {
  margin-top: 20px;
}

.footer-links h4,
.footer-right h4, .footer-cert-column h4 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #fff;
}

.footer-links ul,
.footer-right ul {
  list-style-type: none;
  padding-left: 0;
}

.footer-links ul li,
.footer-right ul li {
  margin-bottom: 12px;
}

.footer-links ul li a,
.footer-right ul li {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-right ul li:hover {
  color: #70a9ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

.footer-bottom hr {
  border-color: #1573ff;
  width: 90%;
  margin: 20px auto;
}

.footer-bottom p {
  margin-top: 10px;
  font-size: 14px;
}
/* Mobile Responsive Design */
@media (max-width: 767px) {
  .footer .row {
    text-align: center;
  }

  .footer-left,
  .footer-links,
  .footer-right {
    margin-bottom: 40px;
  }

  .footer-logo {
    max-width: 140px;
  }

  .footer-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .footer-social .social-icon {
    font-size: 22px;
    margin: 0 12px;
  }

  .footer-links ul li,
  .footer-right ul li {
    font-size: 14px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
  .footer-social {
    justify-content: center;
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
}

.footer-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px; /* Set the width of the shape */
  height: 150px; /* Set the height of the shape */
  background: url("images/shape_2.svg") no-repeat center center;
  background-size: cover; /* Ensures that the shape image fits correctly */
  z-index: 1; /* Ensures it's above the background image */
}
.footer-cert-column {
  margin-top: 20px;
}

.logo-box {
  width: 170px;
  height: 65px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  overflow: hidden;
}

.cert-logo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* force logo to fill box equally */
}

.cert-logo-link {
  text-decoration: none;
  color: white;
}

.cert-number {
  font-size: 14px;
  margin-top: 6px;
  font-weight: 500;
  color: #fff;
}