html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
}
/* Fixed Navbar */
.navbar {
  position: fixed; /* Keep fixed position */
  top: 0;
  width: 100%;
  background-color: white;
  transition: top 0.3s;
  z-index: 1030; /* Ensure it is above other elements */
}

.navbar-wrapper {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    align-items: center;
    
}
.dropdown-menu {
  position: fixed; /* Change to fixed */
    z-index: 1031; /* Ensure it is above other elements */
   
}
/* Sticky Navbar */
.sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}
#collapse {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.page-wrapper {
  min-height: 100vh; /* Full height of the viewport */
  display: flex;
  flex-direction: column; /* Stack navbar and content vertically */
}

.display-1 {
  font-weight: normal !important;
}

/* css for navigation bar */
.nav-item {
  font-weight: 400;
  color: black;
  font-size: 1rem;
}
/* .nav-item:hover{
    background-color: #f3f3f3;
    border-radius: 2px;
}  */
.nav-link:active {
  border-bottom: 2px solid blue;
}

/* css for html-cards */
.card {
  border: 0.4px solid rgb(235, 234, 234) !important;
  border-radius: 8px !important;
}
.card:hover {
  box-shadow: 0px 1px 5px rgb(231, 229, 229);
}

.card-body {
  border: 0.4px rounded solid rgb(235, 234, 234);
}

.card img {
  object-fit: fill !important;
}
/* css for container-row */

#row:hover {
  background-color: #f3f3f3;
  border-radius: 2px;
}

/* new update notification badge*/

.notify-badge {
  position: relative;
  background: rgba(3, 118, 134, 0.6);
  height: 3rem;
  top: 6rem;
  left: 15rem;
  width: 3rem;
  padding-top: 15px;
  font-size: 0.8rem;
  line-height: 0.7rem;
  text-align: center;
  border-radius: 100%;
  color: whitesmoke;
  text-decoration: none;
  box-shadow: 5px 2px 5px #888888;
}
.release-desc {
  font-weight: lighter;
}

/* css for dgb-education avatars */
.avatar {
  vertical-align: middle;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.accordion-item {
  border: 0 !important;
  border-bottom: 1px solid #efecec !important;
}

/* css for products-heading animation */
.animator {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content {
  position: relative;
}

/* meeting card */
#card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: #444;
  color: black;
  background-color: white;
}

a.social {
  text-decoration: none;
}

.card-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.info-card {
  margin: 40px;
  position: relative;
  max-width: 250px;
  max-height: 350px;
  box-shadow: 0 40px 60px -6px black;
}

.info-card-title {
  display: block;
  text-align: center;
  color: #fff;
  background-color: #6184a8;
  padding: 2%;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.info-card-image {
  width: 100%;
  height: 98%;
  object-fit: cover;
  display: block;
  position: relative;
}

.info-card-description {
  display: block;
  font-size: 1rem;
  position: absolute;
  height: 0;
  top: 0;
  opacity: 0;
  padding: 18px 8%;
  background-color: white;
  overflow-y: auto;
  transition: 0.8s ease;
  border-radius: 4px;
}

.info-card:hover .info-card-description {
  opacity: 1;
  height: 100%;
}

.info-card-description ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* Header Section */
.header-section {
  background-color: white;
  padding: 60px 0;
  height: 50vh;
}

.header-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-text {
  flex: 1.5;
  margin-right: 50px;
}

.header-title {
  font-size: 40px;
  font-weight: bold;
  color: #00acff;
  margin-bottom: 10px;
}

.header-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  text-align: justify;
}

.header-buttons {
  display: flex;
  gap: 60px;
}

.btn-primary {
  background-color: #007ac3;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-secondary {
  background-color: #007ac3;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.header-image {
  flex: 1.5;
}

.header-laptop-image {
  max-width: 100%;
}

.bluehighlight-text {
  color: #007ac3;
  text-decoration: underline;
}

/* banner-badge-CSS */

.badge-container {
  position: relative;
}

.badge {
  position: absolute;
  top: -50px;
  right: -20px;
  width: 150px;
  height: 150px;
  background-color: #ff5733; /* Bright orange */
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-radius: 0; /* Remove rounded edges */
  clip-path: polygon(
    50% 0%,
    60% 25%,
    95% 15%,
    75% 50%,
    95% 85%,
    60% 75%,
    50% 100%,
    40% 75%,
    5% 85%,
    25% 50%,
    5% 15%,
    40% 25%
  ); /* Create sharp cone-like starburst */
}

.badge-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1.2;
  font-size: 14px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  cursor: pointer;
  background: white;
  border-radius: 8px 8px 0 0;
  margin-bottom: -1px;
  transition: background 0.3s;
}

.section-header:hover {
  background: #f5f5f5;
}

.section-header h3 {
  margin: 0;
  font-size: 18px;
  color: #00acff;
  flex-grow: 1;
  border-bottom: 1px solid #f5f5f5;
}

.section-header .toggle-icon {
  width: 10px;
  height: 10px;
  border: solid #007ac3;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg); /* Default caret pointing down */
  transition: transform 0.3s ease;
}

.section-header:hover .toggle-icon {
  color: #005f9e;
}

.section.open .section-header .toggle-icon {
  transform: rotate(-135deg);
}

.section-content {
  display: none;
  padding: 15px;
  background: #fff;
  border-radius: 0 0 8px 8px;
}

.section.open .section-content {
  display: block;
}

details summary.section-header {
  color: #00acff;
  font-weight: normal;
}

.image-wrapper {
  display: flex;
  justify-content: center; /* Center the image */
}
.section-content img {
  max-width: 60%;
  margin-top: 15px;
  /* border: 1px solid #ddd; */
  border-radius: 5px;
}

.csi-body h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2.12rem;
  font-weight: 700;
  color: #4d5360;
  margin-top: 5vh;
}

.divider-line-center {
  width: 18%;
  height: 3px;
  margin: 1.5rem 1rem 1.3rem 0rem;
  border-radius: 5px;
  background: linear-gradient(#0080ef 0%, #00acff 100%);
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}

/* hexagonal css */

.main {
  display: flex;
  --s: 200px; /* size  */
  --m: 9px; /* margin */
  --f: calc(1.732 * var(--s) + 4 * var(--m) - 1px);
}

.hex-container {
  font-size: 0; /*disable white space between inline block element */
}

.hexagon-item {
  width: var(--s);
  margin: var(--m);
  height: calc(var(--s) * 1.1547);
  display: inline-block;
  font-size: initial;
  clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
  background-color: #ddd; /* Fallback color */
  position: relative;
  overflow: hidden; /* Clip the image to the hexagon */
  margin-bottom: calc(var(--m) - var(--s) * 0.2885);
}

.hex-container::before {
  content: "";
  width: calc(var(--s) / 2 + var(--m));
  float: left;
  height: 120%;
  shape-outside: repeating-linear-gradient(
    #0000 0 calc(var(--f) - 3px),
    #000 0 var(--f)
  );
}

.hexagon-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image fills the hexagon */
  display: block;
}

.overlay-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.2em;
  text-align: center;
  text-shadow: 2px 2px 4px #000; /* Add shadow for readability */
  z-index: 1; /* Ensure text is on top of image */
  pointer-events: none; /* Allow click events to pass to the images if you wanted to handle it */
}
/* navbar active link styling */

.active {
  border-bottom: 2px solid blue;
}



/* main-header stylings */
  
.full-page-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* Set a minimum height for full viewport */
  position: relative;
  background-color: #000;
  color: #fff;
  overflow: hidden;
}

.content-container {
  max-width: 60%;
  padding: 20px;
  text-align: center;
  z-index: 1;
}

.full-page-content .main-heading {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 900;
  transform: translateY(-20px);
}


.full-page-content .sub-heading {
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 700;
  transform: translateY(10px);
}

.full-page-content .body-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
  font-weight: 400;
  transform: translateY(10px);
}

.full-page-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-image: url('/src/assets/images/header-imag.jpg'); /* Replace with your new image URL */
  background-size: cover;
  background-position: center;
  opacity: 0.5; /* Reduced the opacity */
}

/* Optional: button */
.btn-primary {
  background-color: #4a60ff; /* a common blue for buttons*/
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  margin-top: 20px;
  transform: translateY(20px);
}


/* styling for second section for products/services */
.full-page-content-services {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 20px;
  color: #000;
  overflow-y: auto;
}

.services-container {
max-width: 80%;
  width: 100%;
padding: 20px;
display: flex;
  flex-direction: column;
gap: 40px;
z-index: 1;
}

.service-item {
display: flex;
  gap: 30px;
  align-items: flex-start;
}
.service-heading-container {
  flex: 0 0 20%; /* Fixed width */
   align-self: stretch;

}
.service-details {
  flex: 1; /* Take remaining space */
}

.service-heading {
  font-size: 1.3em;
  font-weight: 700;
   margin-bottom: 5px;
   display: flex; /* Keep icon inline with heading */
  align-items: center; /* Align icon vertically with text */
}
.service-heading .service-icon-link {
  text-decoration: none;
  margin-left: 5px;
}
.service-heading .service-icon {
 font-size: 0.9em;
 opacity: 0.8;
}

.service-text {
  font-size: 0.95em;
  line-height: 1.5;
  opacity: 0.8;
}

.service-item:not(:last-child) {
border-bottom: 1px solid #f0f0f0;
 padding-bottom: 20px;
}


/* stylings for ML-services section */
.full-page-content-services {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 20px;
  color: #000;
  overflow-y: auto;
}

.services-container {
max-width: 80%;
  width: 100%;
padding: 20px;
display: flex;
  flex-direction: column;
gap: 40px;
z-index: 1;
}

.service-item {
display: flex;
  gap: 30px;
  align-items: flex-start;
}
.service-heading-container {
  flex: 0 0 20%;
  align-self: stretch;
}
.service-details {
  flex: 1;
  text-align: justify;
}

.service-heading {
  font-size: 1.3em;
  font-weight: 700;
   margin-bottom: 5px;
}
.service-text {
  font-size: 0.95em;
  line-height: 1.5;
  opacity: 0.8;
}

.service-item:not(:last-child) {
border-bottom: 1px solid #f0f0f0;
 padding-bottom: 20px;
}