* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: Jost, sans-serif;
}

body {
  font-family: Jost, sans-serif;
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* CHANGED: Prevents horizontal scrolling */
}

header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}

.fixed {
  background-color: #003366;
  color: white;
  z-index: 1000;
  box-shadow: 0 4px 10px #0000001a;
}

header img {
  width: 150px;
  height: auto;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 15px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  nav {
    padding: 12px 10px;
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 10px 8px;
    gap: 5px;
  }
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #FFF;
  font-weight: 600;
  display: inline-block;
  font-size: 15px;
}
@media (max-width: 768px) {
  nav a {
    margin-left: 8px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  nav a {
    margin-left: 5px;
    font-size: 12px;
  }
}
/* Home Button Styling */
.home-btn {
  background: none;
  border: none;
  color: #FFF;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  transition: color 0.2s ease;
  display: inline-block;
  font-weight: 600;
  margin-left: 20px;
}

.home-btn:hover {
  color: #b3d9ff;
  background: none;
  transform: none;
  box-shadow: none;
}

.home-btn:active {
  transform: none;
}
.dropdown-wrapper {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.header-dropdown-btn {
  background: none;
  border: none;
  color: #FFF;
  cursor: pointer;
  font-size: 15px;
  padding: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: inline-block;
  font-weight: 600;
}

@media (max-width: 480px) {
  .header-dropdown-btn {
    font-size: 11px;
  }
}

.header-dropdown-btn.story-dropdown-trigger {
  margin: 0;
  font-size: 15px;
  padding: 0;
}
@media (max-width: 768px) {
  .header-dropdown-btn.story-dropdown-trigger {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .header-dropdown-btn.story-dropdown-trigger {
    font-size: 11px;
  }
}

.header-dropdown-btn.story-dropdown-trigger::after {
  content: ' ▼';
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), margin 0.3s ease;
  display: inline-block;
}

.header-dropdown-btn.story-dropdown-trigger.active::after {
  transform: rotate(180deg) translateY(-2px);
  margin-left: 5px;
}

.header-dropdown-btn.story-dropdown-trigger.active {
  transform: scale(1.05);
}

.header-dropdown-btn:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

.header-dropdown-btn.active {
  opacity: 0.9;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #002952;
  min-width: 100px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  padding: 0;
  z-index: 1001;
  border-radius: 8px;
  top: 100%;
  left: -50px;
  margin-top: 10px;
  animation: slideDown 0.3s ease;
}

.dropdown-menu.active {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  background: none;
  border: none;
  color: #FFF;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s ease;
  font-size: 14px;
}

.dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}

.dropdown-item:hover {
  background-color: #003d7a;
}

.hero {
  text-align: center;
  padding: 0;
  background: url('Assets/background_images/banner.jpg');
  background-color: #013F72;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  position: relative;
  opacity: 1;
  transition-duration: 2s;
  display: grid;
  grid-template-columns: 1fr;

  .hero h1,
  .hero p,
  .hero .btn {
    position: relative;
    z-index: 2;
  }
}

@media (min-width: 768px) {
  .hero {
    text-align: center;
    padding: 0;
    min-height: 750px;
  }
}

.hero .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}


.hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (min-width: 1200px) {
  .hero-img {
    width: 100%;
    max-width: 900px;
    height: auto;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  z-index: 10;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.headline1 {
  opacity: 1;
  transition-duration: 2s;
  padding-right: 0;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
padding-top: 120px;
}

@media (max-width: 768px) {
  .headline1 {
    font-size: 1.2rem;
    padding-top: 70px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .headline1 {
    font-size: 1rem;
    padding-top: 60px;
    margin-bottom: 10px;
  }
}    

.headline1 span {
  font-size: 20px;
  display: block;
  font-weight: 400;
  padding-top: 10px;
}

@media (min-width: 992px) {
  .headline1 span {
    font-size: 30px;
  }
}

@media (min-width: 768px) {
  .headline1 {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .hero-content {
    align-items: flex-start;
  }

  .headline1 {
    text-align: left;
    font-size: 2rem;
    padding-right: 0;
    max-width: 900px;
    padding-top: 150px;
    max-width: 900px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1200px) {
  .headline1 {
    font-size: 50px;
  }
}

.heading2 {
  opacity: 1;
  transition-duration: 2s;
  transform: translate(0, 0);
}

.heading1 {
  font-size: 2rem;
}

@media (min-width: 992px) {
  .heading1 {
    font-size: 3rem;
  }
}

.heading.hidden {
  opacity: 0;
  transform: translate(-50%, -50%);
}

.headingp {
  opacity: 1;
  transition-duration: 2s;
}

.heading {
  text-align: center;
  color: #ffffff;
  background: url('Assets/background_images/photo1-1478760329108-5c3ed9d495a0.avif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 18px 50px;
  font-size: 22px;
  font-weight: 400;
  margin: 40px 20px;
  border-radius: 12px;
}
@media (max-width: 992px) {
  .heading {
    margin: 30px 60px;
    padding: 16px 40px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .heading {
    padding: 14px 20px;
    margin: 20px 15px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .heading {
    padding: 12px 12px;
    margin: 15px 10px;
    font-size: 14px;
  }
  .headingp {
    font-size: 22px !important;
  }
}

.learnbtn {
  background-color: #003366;
  color: white;
  padding: 12px 24px;
  margin-top: 5%;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.learnbtn:hover {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 12px 24px;
  margin-top: 5%;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 1;
  transition-duration: 2s;
}

.btn,
.contact-form button {
  color: #FFF;
  border: #FFF solid 1px;
}

.btn:hover {
  background-color: #FFF;
  color: #003366;
}

section {
  padding: 70px 150px;
  background-image: url("Assets/background_images/4873411.jpg");
  object-fit: cover;
  margin: auto;
}
@media (max-width: 992px) {
  section {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 20px 12px;
  }
}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

.features {
  display: grid;
  /* This is already responsive! auto-fit is great. */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  opacity: 1;
  transition-duration: 2s;
}


.card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 100, 0.1);
  text-align: center;
  height: 330px;
}

.hidden {
  opacity: 0;
}

.card img {
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.slider div {
  flex: 0 0 300px;
  scroll-snap-align: center;
  background-color: #cce0ff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.slider img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

.providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.providers img {
  width: 100px;
  height: auto;
}

.about,
.careers {
  background-color: #d9ecff;
  padding: 40px 20px;
}

.about {
  background-image: url('Assets/background_images/48734112.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: #003366;
  padding: 0;
}

.about-overlay {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  background-image: url("Assets/background_images/4873411.jpg");
  background-size: cover;
  background-position: center;
}

.about-content {
  max-width: 1200px;
  width: 100%;
  min-height: auto;
  text-align: center;
  background: transparent;
  padding: 40px 20px;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  transition-duration: 2s;
}

.about-content:hover {
  transform: none;
}

.about-content h2 {
  margin-bottom: 20px;
  font-size: 3rem;
  color: #003366;
  font-weight: 700;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #003366;
  text-align: left;
  margin-bottom: 16px;
  
}

.careers {
  padding: 60px 20px;
  background-color: #f4faff;
}

.careers-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.careers-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.2);
  opacity: 1;
  transition-duration: 2s;
}

.careers-content {
  flex: 1 1;
  max-width: 670px;
  opacity: 1;
  transition-duration: 2s;
}

.careers-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #003366;
}

.careers-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.careers-content .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #003366;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.careers-content .btn:hover {
  background-color: #0055aa;
}

/* Hero Section Styling */
.contact-section {
  background-image: url('Assets/background_images/istockphoto-1443811154-612x612.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 30px 100px; /* CHANGED: Risky, overridden in mobile */
  border-radius: 16px;
  text-align: center;
  max-width: 1200px;
  opacity: 1;
  transition-duration: 2s;
  margin: 40px auto;
}

.contact-section h2 {
  font-size: 2rem;
  max-width: 1000px;
  margin: 0 auto 20px;
  font-weight: 500;
}

/* Button Styling */
.contact-button {
  background-color: #fff;
  color: #0d2d5c;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
  width: 20%; /* CHANGED: Risky, overridden in mobile */
  
}

.contact-button:hover {
  background-color: #e6e6e6;
}

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Modal Styling */
.contact-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  
}

.contact-modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 30px;
  width: 90%;
  max-width: 1000px;
  border-radius: 10px;
  position: relative;
  
  
}

.contact-modal-content img {
  width: 100%;
  height: auto;
}

.close {
  position: absolute;
  top: 5px;
  padding: 0;
  right: 5px;
  font-size: 24px;
  cursor: pointer;
  background: #FFF;
  border-radius: 30px;
  display: flex;
  height: 24px;
  width: 24px;
  border: #ddd solid 1px;
  align-items: center;
  justify-content: center;
}

.certificate-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.certificate-modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 30px;
  width: 90%;
  max-width: 700px;
  border-radius: 10px;
  position: relative;
}


/* Form Layout */
.form-container form {
  margin-top: 20px;
}

.row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.row input,
.row select {
  flex: 1;
  padding: 5px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  max-width: calc(50% - 7px); /* CHANGED: Risky, overridden in mobile */
}

textarea {
  width: 100%;
  padding: 10px;
  height: 100px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
}

.submit-btn {
  background-color: #0d2d5c;
  color: white;
  padding: 10px 24px;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.partners-section {
  background: url('Assets/background_images/satellites-bg.png') no-repeat center center/cover;
  position: relative;
  padding: 4rem 2rem;
  color: #000060;
}

.partners-overlay {
  background-color: rgba(0, 0, 0, 0);
  padding: 4rem 0;
}

.partners-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.partners-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.partners-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.partner-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.partner-track {
  display: flex;
  gap: 40px;
  animation: scrollLogos 20s linear infinite;
  align-items: center;
  padding: 10px 0;
}

.partner-track img {
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.features-section {
  padding: 60px 20px;
  background-color: #f5f9ff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #0d2d5c;
  margin-bottom: 40px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .section-title {
    font-size: 3rem;
  }
}

.sub-heading {
  max-width: 100%;
  margin: 0 auto 20px;
}

@media (min-width: 992px) {
  .sub-heading {
    max-width: 80%;
  }
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid #dce3f0;
  border-left: 6px solid #0d2d5c;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(13, 45, 92, 0.05);
  opacity: 1;
  transition-duration: 2s;
}

.feature-icon {
  flex-shrink: 0;
  margin-right: 20px;
}

.feature-icon img {
  width: 48px;
  height: 48px;
}

.feature-content h3 {
  color: #0d2d5c;
  font-size: 1.1rem;
  margin: 0 0 8px;
  font-weight: 600;
}

.feature-content p {
  color: #444;
  margin: 0;
  font-size: 0.95rem;
}

.satellite-section {
  background-image: url('Assets/background_images/48734112.jpg');
}

.satellite-slider {
  position: relative;
  width: 100%;
  z-index: 1;
}

.background-image {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  border-radius: 30px;
}

.bg-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 1;
}

.zoomed-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.zoomed-img-border {
  border: 4px solid #ffffff;
  border-radius: 8px;
  overflow: hidden;
  padding: 4px;
}

.image-caption {
  margin-top: 8px;
  color: #fff;
  padding: 8px;
  border-radius: 6px;
  max-width: 280px;
  text-align: left;
}

.zoomed-images {
  position: relative;
  width: 40%;
  max-width: 200px;
  margin: 0 auto;
  margin-top: 5%;
  margin-right: 50%;
}


.zoomed-img {
  position: absolute;
  max-width: 200px;
  animation: popUp 1s ease forwards;
  opacity: 0;
  transform: scale(0.8);
}

/* Random positions for both zoomed images */
.zoomed-img.first {
  top: 25%;
  left: 28%;
}

.zoomed-img.second {
  top: 39%;
  left: 55%;
}

.zoomed-img-container {
  margin-bottom: 77%;
  text-align: center;
}

.zoomed-img {
  opacity: 1;
  transition-duration: 2s;
  border-radius: 10px;
  overflow: hidden;
}

.zoomed-img img {
  width: 105%;
  display: block;
  border-radius: 6px;
}

.image-caption {
  margin-top: 10px;
  color: white;
  font-size: 14px;
}

.timestamp {
  font-weight: bold;
}

.data-text {
  opacity: 1;
  font-size: 17px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.satellite-slider-alt {
  position: relative;
  width: 100%;
  padding: 200px 0;
  margin-top: -12%;
  z-index: 1;
}

.background-image-alt {
  position: absolute;
  width: 100%;
  height: 77%;
  z-index: -1;
  overflow: hidden;
  border-radius: 30px;
}

.bg-img-alt {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 1;
}

.timestamp-overlay {
  position: absolute;
  top: 20px;
  left: 86%; /* CHANGED: Risky, overridden in mobile */
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 5px;
  z-index: 2;
}

.zoomed-images-alt {
  position: relative;
  width: 100%;
  height: 500px;
  /* adjust as needed */
}

/* Common image container styling */
.zoomed-img-container-alt {
  position: absolute;
  width: 250px;
  /* or your preferred size */
}

/* First image - top-left */
.zoomed-img-container-alt:nth-child(1) {
  top: 290px;
  left: 750px; /* CHANGED: This is very bad for responsive design */
}

/* Second image - lower and right-shifted */
.zoomed-img-container-alt:nth-child(2) {
  top: 300px;
  left: 170px; /* CHANGED: This is very bad for responsive design */
}

/* Third image - mid-height, far right */
.zoomed-img-container-alt.third {
  top: 300px;
  right: 800px; /* CHANGED: This is very bad for responsive design */
}


.zoomed-img-alt {
  opacity: 1;
  transition-duration: 2s;
  border: 4px solid white;
  border-radius: 10px;
  box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.3);
  /* blur glow */
  overflow: hidden;
}

.zoomed-img-alt img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.image-caption-alt {
  margin-top: 10px;
  color: white;
  font-size: 14px;
}

.satellite-slider-alt.active .zoomed-img-alt {
  opacity: 1;
  transform: scale(1);
}

.hidden {
  opacity: 0;
  translate: translateX(100%);
  transform: scale(0.5);
}

.show {
  opacity: 1;
  translate: translateX(0%);
  transform: scale(1);
}

@media screen and (max-width: 768px) {
  .partners-content h2 {
    font-size: 1.5rem;
  }

  .partner-logos {
    gap: 1rem;
  }

  .partner-logos img {
    max-height: 50px;
  }
}

/* Footer Styling */
.footer {
  position: relative;
  background-color: #fff;
  padding: 40px 20px 20px;
  font-size: 0.9rem;
  color: #333;
  border-top: 1px solid #ddd;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-logo p {
  margin: 0;
  color: #666;
}

.footer-links {
  display: flex;
  gap: 40px;
}

  
.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}
.footer-section h5 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
  margin-left: 10px;
}


.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
}

.footer-section ul li a {
  color: #333;
  text-decoration: none;
}

.footer-section p,
.footer-section a {
  color: #666;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  color: #999;
  font-size: 0.85rem;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.footer-bottom a {
  color: #666;
  text-decoration: none;
  margin: 0 5px;
}

.social-links {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.social-links a {
  margin: 0 8px;
}

/* Social Links Responsive */
@media (max-width: 1024px) {
  .social-links {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
  }

  .social-links a {
    margin: 0 6px;
  }
}

@media (max-width: 768px) {
  .social-links {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .social-links a {
    margin: 0 5px;
  }
}

@media (max-width: 480px) {
  * {
    box-sizing: border-box;
  }

  body {
    font-size: 14px;
  }

  header {
    padding: 0;
  }

  header img {
    width: 110px;
    margin: 5px 0;
  }

  nav {
    padding: 8px 6px;
    gap: 4px;
  }

  nav a,
  .home-btn,
  .header-dropdown-btn {
    font-size: 11px;
    margin-left: 3px;
  }

  .hero {
    min-height: 350px;
    padding: 0;
  }

  .headline1 {
    font-size: 0.95rem;
    padding-top: 50px;
    margin-bottom: 12px;
  }

  .headline1 span {
    font-size: 14px;
  }

  section {
    padding: 20px 12px;
  }

  h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .heading {
    padding: 10px 10px;
    margin: 12px 8px;
    font-size: 12px;
  }

  .card {
    height: auto;
    padding: 12px;
    margin: 0 auto;
  }

  .card img {
    height: 50px;
    margin-bottom: 30px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .slider {
    gap: 12px;
  }

  .slider div {
    flex: 0 0 100%;
    margin-right: 0;
  }

  .slider img {
    height: 120px;
  }

  .providers {
    gap: 10px;
  }

  .providers img {
    width: 45px;
  }

  .learnbtn,
  .btn,
  .contact-button {
    padding: 9px 14px;
    font-size: 12px;
  }

  .about-overlay {
    padding: 20px 12px;
  }

  .about-content {
    padding: 15px;
  }

  .about-content h2 {
    font-size: 1.4rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }

  .contact-section {
    padding: 25px 12px;
  }

  .contact-section h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .row input,
  .row select {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .info-boxes {
    gap: 30px;
    flex-direction: column;
  }

  .info-box {
    flex: 0 1 100%;
    padding: 25px 20px;
  }

  .box-icon {
    width: 70px;
    height: 70px;
  }
  .social-links {
    /* position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; */
    gap: 6px;
    margin-top: 12px;
  }

  .social-links a {
    margin: 0 2px;
    padding: 5px !important;
    font-size: 14px !important;
  }
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .footer-section h4,
  .footer-section h5 {
    font-size: 0.95rem;
  }

  .footer-section ul li {
    margin-bottom: 4px;
    font-size: 0.85rem;
  }

  .leader-card {
    width: 100%;
    max-width: 280px;
  }

  .leader-photo {
    height: 200px;
  }
}



@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.3rem;
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    text-align: center;
    gap: 6px;
  }
   header img {
    width: 120px;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .card {
    height: auto;
    padding: 15px;
  }

  .slider div {
    flex: 0 0 85%;
    margin-right: 12px;
  }

  .providers img {
    width: 50px;
  }

  .learnbtn {
    padding: 10px 16px;
    font-size: 13px;
  }
}


/* === NEW: Tablet Styles === */
@media (max-width: 992px) {
  section {
    padding: 50px 40px; /* CHANGED: Reduced padding */
  }

  .heading {
    margin: 30px 60px; /* CHANGED: Reduced margin */
  }

  .contact-section {
    padding: 30px 40px; /* CHANGED: Reduced padding */
  }

  .careers-content h2 {
    font-size: 2.5rem;
  }

  .about-content h2 {
    font-size: 2.5rem;
  }

  /* CHANGED: Start adjusting absolute positions for tablets */
  .zoomed-images-alt {
    height: 400px; /* Reduce height */
  }

  .zoomed-img-container-alt {
    width: 200px; /* Smaller images */
  }

  .zoomed-img-container-alt:nth-child(1) {
    top: 220px;
    left: 65%; /* Use percentages */
  }

  .zoomed-img-container-alt:nth-child(2) {
    top: 230px;
    left: 10%; /* Use percentages */
  }

  .zoomed-img-container-alt.third {
    top: 230px;
    right: 60%; /* This is likely wrong without HTML, adjust as needed */
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
  
  
}


/* === Mobile Friendly Styles === */
@media (max-width: 768px) {
  /* Global mobile styles */
  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    padding: 0;
    min-height: 400px; /* CHANGED: Switched from fixed height */
    text-align: center;
  }

  .headline1 {
    padding-top: 80px; /* CHANGED: Reduced top padding */
    font-size: 1.3rem; /* CHANGED: Slightly smaller font */
  }

  /* Heading */
  .heading {
    font-size: 20px;
    padding: 10px 20px;
    margin: 20px auto;
    width: 90%;
  }

  .learnbtn {
    font-size: 14px;
    padding: 10px 20px;
    margin: 10px auto;
  }

  /* Section */
  section {
    padding: 30px 20px;
  }

  /* Features */
  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    height: auto;
    padding: 20px;
    margin: 0 auto;
    width: 100%;
  }

  /* About */
  .about-overlay {
    flex-direction: column;
    padding: 30px 15px;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0%;
  }

  .about-content {
    width: 100%;
    padding: 20px;
    min-height: auto; /* CHANGED: Removed fixed min-height */
  }

  .about-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .about-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  /* Careers */
  .careers-container {
    flex-direction: column;
    padding: 20px;
    align-items: center;
  }

  .careers-content {
    padding: 0;
    width: 100%;
    text-align: center;
  }

  .careers-content h2 {
    font-size: 2rem;
  }

  .careers-content p {
    font-size: 1rem;
  }

  /* Contact */
  .contact-section {
    padding: 40px 20px;
    text-align: center;
  }

  .contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .contact-button {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }
  
  /* CHANGED: Form .row styles for mobile */
  .row {
    flex-direction: column;
    gap: 0; /* Remove gap, use margin instead */
    margin-bottom: 0;
  }
  
  .row input,
  .row select {
    max-width: 100%;
    width: 100%;
    margin-bottom: 15px; /* Add margin for spacing */
  }

  /* Slider */
  .slider {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .slider div {
    flex: 0 0 80%;
    scroll-snap-align: start;
    margin-right: 15px;
  }

  /* Providers */
  .providers {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .providers img {
    width: 60px;
    height: auto;
  }

  /* CHANGED: Satellite Slider Alt (The absolute positioned one) */
  .satellite-slider-alt {
    padding: 40px 0; /* Reduced padding */
    margin-top: 0;
  }
  
  .background-image-alt {
    height: 100%; /* Make background cover the new height */
    border-radius: 0;
  }
  
  .timestamp-overlay {
    top: 10px;
    left: auto; /* Unset left */
    right: 10px; /* Pin to right */
  }
  
  .zoomed-images-alt {
    position: relative;
    height: auto; /* CHANGED: Let content define height */
    display: flex;
    flex-direction: column; /* CHANGED: Stack them */
    align-items: center;
    gap: 20px;
    padding-top: 40px; /* Add padding to not overlap timestamp */
  }
  
  .zoomed-img-container-alt {
    position: relative; /* CHANGED: Make them flow in the document */
    width: 80%; /* Give them a width */
    max-width: 300px;
    /* Remove all absolute positioning */
    top: auto;
    left: auto;
    right: auto;
  }

  /* Clear specific desktop positions */
  .zoomed-img-container-alt:nth-child(1),
  .zoomed-img-container-alt:nth-child(2),
  .zoomed-img-container-alt.third {
    top: auto;
    left: auto;
    right: auto;
  }
  
  /* CHANGED: Footer styles for mobile */
  .footer-content, .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  

  /* CHANGED: Certificate Modal for mobile */
  .certificate-success-container {
    width: 95%; /* Use percentage width */
    height: auto; /* Auto height */
    max-height: 80vh; /* Max height to prevent overflow */
    margin: 10% auto; /* Center it */
  }
  
  .certificate-success-container img {
    object-fit: contain; /* Ensure image fits */
  }
}


/* === Satellite Section Styles === */
.satellites {
  padding: 100px 0 50px 0;
  text-align: center;
  background-image: url(Assets/background_images/satellites-bg.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #F5F5F5;
  border-top: #eee solid 1px;
}

.satellites h2 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 120%;
  text-align: center;
  color: #000060;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .satellites h2 {
    font-size: 3rem;
  }
}

.satellites h2 span {
  display: block;
  font-weight: 400;
  font-size: 24px;
}

@media (min-width: 992px) {
  .satellites h2 span {
    font-size: 40px;
  }
}

.satellites p {
  color: #000060;
  font-weight: 400;
  font-size: 18px;
}

.satellites p.bold {
  font-weight: 500;
}

.satellites .satellites-sliders {
  display: flex;
  align-items: center;
  padding: 50px 0;
}

.satellites .satellites-sliders img {
  margin: 0 60px;
}

.satellites .satellites-sliders .satellite-slide {
  display: flex;
  align-items: center;
  height: 50px;
  width: 200px !important;
}


.certificate-section {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  margin-bottom: 16px;
  align-items: center;
  text-align: left;
}

.certificate-section p {
  margin-bottom: 0;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .certificate-section {
    grid-template-columns: 1fr;
  }
}

.certificate-section figure {
  margin: 0;
  text-align: center;
}

.certificate-section figure img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: #ddd solid 1px;
  padding: 2px;
}

.modal-link {
  color: #003366;
  text-decoration: underline;
}

.modal-link:hover {
  text-decoration: none;
}


.demo-link {
  color: #474747;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 12px;
  background: #FFFFFF;
  border-radius: 12px;
  display: inline-flex;
  text-decoration: none;
  font-weight: 500;
  width: 200px;
  transition-duration: 2s;
}


.dd-tabs {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  width: 100%;
}

.dd-tab {
  padding: 10px 5px;
  flex-grow: 1;
  flex-shrink: 1;
  text-align: center;
  cursor: pointer;
  background: #f0f7ff;
  margin-right: 3px;
  border-radius: 5px 5px 0 0;
  font-size: 15px;
  position: relative;
  bottom: -1px;
  border: 1px solid #d0dae5;
  font-weight: bold;
}

.dd-tab:last-child {
    margin-right: 0;
  }

.dd-tab.active {
  background: #FFF;
  border-bottom: 1px solid #FFF;
  border-bottom: none;
}

.dd-tab-content {
  display: none;
  padding: 20px;
  background: #fff;
  border: 1px solid #d0dae5;
  border-radius: 5px;
}

.dd-tab-content.active {
  display: block;
}

.recognition {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .recognition {
    flex-direction: column;
  }
}


.recognition img {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin: 0;
  border: #f0f7ff solid 5px;
  box-shadow: 0 0 0 3px rgb(192 221 255);
  border-radius: 5px;
  margin-bottom: 10px;
}

.certificate-image {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.certificate-text {
  display: flex;
  flex-direction: column;
}

.dd-row {
  display: flex;
  gap: 15px;
  margin: 10px 0 0 0;
  padding-bottom: 10px;
  border-bottom: #ddd solid 1px;
}

.dd-row.last-row {
  border-bottom: none;
}

.dd-row .title {
  font-weight: bold;
  width: 160px;
  text-align: left;
}

.download-link {
  background-color: #003366;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 0 0 3px rgb(192 221 255);
  transition: all 1s;
  margin-top: 16px;
}

.download-link:hover {
  background: #f0f7ff;
  color: #003366;
}

#certificateSuccessModal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* overlay */
}

.certificate-success-container {
  background: #fff;
  width: 800px; /* fixed width */
  height: 600px; /* fixed height */
  margin: 50px auto; /* center on screen */
  padding: 20px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate-success-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.certificate-success-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* === Leadership Section Responsive Layout === */
.leadership-cards {
  display: flex;
  flex-direction: column; /* Mobile default: vertical */
  align-items: center;
  gap: 25px;
  width: 100%;
  margin: 0 auto;
}

/* Individual Card */
.leader-card {
  width: 90%;
  max-width: 320px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 18px;
  background: #fafafa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ✅ Uniform Leadership Image Height Fix */
.leader-photo {
  width: 100%;
  height: 260px;           
  object-fit: cover;       
  border-radius: 8px;
  background: #eee;
}

/* --- Tablet mid layout (2 per row) --- */
@media (min-width: 768px) and (max-width: 991px) {
  .leadership-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .leader-card {
    width: 45%;
  }

  .leader-photo {
    height: 230px;         
  }
}

/* --- Laptop/Desktop: Horizontal Alignment --- */
@media (min-width: 992px) {
  .leadership-cards {
    flex-direction: row;    
    justify-content: center; 
    flex-wrap: wrap;         
    gap: 40px;              
  }

  .leader-card {
    width: 220px;            
    max-width: 250px;
  }

  .leader-photo {
    height: 260px;     
  }
}

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  justify-content: center;
  margin-top: 40px;
}

.info-box {
  background-color: #fff;
  padding: 40px 35px;
  border-radius: 15px;
  flex: 0 1 calc(50% - 15px);
  max-width: 320px;
  text-align: center;
  border: 2px solid #e6f0ff;
  box-shadow: 0 4px 16px rgba(0, 51, 102, 0.18);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.info-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 51, 102, 0.18);
  border-color: #003366;
}

.box-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e6f0ff 0%, #d0e8ff 100%);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.box-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2)) brightness(1.05) contrast(1.1);
  transform: translateY(0) scale(1);
  transition: transform 0.35s ease, filter 0.35s ease;
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.info-box:hover .box-icon {
  transform: translateY(-6px) rotate(-2deg) scale(1.03);
  box-shadow: 0 14px 32px rgba(0, 51, 102, 0.25);
}

.info-box:hover .box-icon img {
  transform: scale(1.1) rotate(3deg);
  filter: drop-shadow(0 6px 12px rgba(0, 51, 102, 0.25)) brightness(1.1) contrast(1.15);
}

.info-box h3 {
  font-size: 22px;
  color: #000;
  margin-bottom: 15px;
  font-weight: 700;
}

.info-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
}

.learn-more-btn {
  display: inline-block;
  background-color: #003366;
  color: #fff;
  padding: 10px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 14px;
}

.learn-more-btn:hover {
  background-color: #999;
  transform: scale(1.05);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 900;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  overflow-y: auto;
  overflow-x: hidden;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal.active {
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
  
}

body.modal-open {
  overflow: hidden;
  width: 100%;
  position: fixed;
}


.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
  padding: 0;
  border-radius: 0px;
  max-width: 100%;
  width: 100%;
  height: auto;
  overflow-y: visible;
  position: relative;
  box-shadow: none;
  border: none;
  animation: slideUp 0.4s ease;
  display: block;
  
  box-sizing: border-box;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-btn {
  position: fixed;
  right: 30px;
  top: 30px;
  font-size: 32px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 1001;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.close-btn:hover {
  color: #003366;
  transform: scale(1.2);
}

.modal-content h2 {
  color: #003366;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, #003366 0%, #005599 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #003366 0%, #007bff 50%, #003366 100%);
  border-radius: 20px 20px 0 0;
}

/* About Modal Hero Section */
.about-modal-hero {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: url('Assets/background_images/banner.jpg');
  background-color: #013F72;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-modal-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.about-modal-hero-image{
  width: 100%;
  height: 50%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-modal-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 51, 102, 0.3);
  z-index: 2;
}

.about-modal-hero-overlay h1 {
  font-size: 48px;
  color: white;
  font-weight: 700;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.modal-body {
  padding: 50px 130px;
    background-image: url(Assets/background_images/4873411.jpg);

}

/* .modal-body h2 {
  text-align: left;
  font-size: 56px;
  font-weight: 900;
  color: #000;
  line-height: 1.3;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: 0;
} */

.modal-body h3 {
  color: #003366;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;

}

.modal-body h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #003366 0%, #007bff 100%);
  border-radius: 2px;
}

.modal-body p {
  color: #555;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: left;
  word-spacing: normal;
  letter-spacing: normal;
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
}
/* @media (max-width: 480px)  {
  .modal-body p {
    font-size: 22px;
  }
} */

.leadership-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.leader-card {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f5ff 100%);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e0e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 51, 102, 0.2);
  border-color: #007bff;
}

.leader-photo-placeholder {
  font-size: 80px;
  margin-bottom: 15px;
  display: inline-block;
}

.leader-name {
  font-weight: 700;
  color: #003366;
  font-size: 17px;
  margin: 12px 0 8px;
}

.leader-title {
  color: #007bff;
  font-size: 13px;
  font-weight: 600;
}

.modal::-webkit-scrollbar {
  width: 8px;
}

.modal::-webkit-scrollbar-track {
  background: transparent;
}

.modal::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 4px;
}

.modal::-webkit-scrollbar-thumb:hover {
  background: #999;
}

@media (max-width: 768px) {
  .info-box {
    flex: 0 1 100%;
    max-width: none;
  }
}
/* Slick Carousel Container Styling */
.about-photos-carousel {
  position: relative;
  border-radius: 15px;
  overflow: visible;
  box-shadow: 0 10px 40px rgba(0, 51, 102, 0.2);
  background: linear-gradient(135deg, #f5f9ff 0%, #e6f0ff 100%);
  margin: 0 80px;
}

.about-photos-carousel .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: white;
  position: relative;
}

.about-photos-carousel img {
  animation: zoomInSlide 0.8s ease-in-out !important;
  width: 100%;
  height: auto !important;
  object-fit: contain;
}

@keyframes zoomInSlide {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slick Carousel Arrow Styling */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 70px;
  height: 100px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0px;
  border-radius: 0;
  transition: none;
  font-weight: bold;
  box-shadow: none;
  gap: 8px;
}

.slick-prev:hover,
.slick-next:hover {
  background: transparent;
  transform: translateY(-50%);
  box-shadow: none;
}

.slick-prev:active,
.slick-next:active {
  transform: translateY(-50%);
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

.slick-prev::before {
  content: "‹";
  font-size: 40px;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-prev::after {
  content: "Prev";
  font-size: 14px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slick-prev:hover::after {
  opacity: 1;
}

.slick-next::before {
  content: "›";
  font-size: 40px;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-next::after {
  content: "Next";
  font-size: 14px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slick-next:hover::after {
  opacity: 1;
}

/* Remove default Slick arrow styling */
.slick-prev:before,
.slick-next:before {
  font-size: 40px !important;
  font-family: Arial, sans-serif !important;
}

/* Slick Dots Styling */
.slick-dots {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  display: flex !important;
  gap: 12px;
  z-index: 10;
  justify-content: center;
}
.slick-dots li {
  animation: dotFadeIn 0.5s ease-in;
}

@keyframes dotFadeIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slick-dots li button:hover {
  background-color: rgba(0, 51, 102, 0.8);
  transform: scale(1.2);
}

.slick-dots li.slick-active button {
  background: linear-gradient(135deg, #003366 0%, #002244 100%);
  width: 18px;
  height: 18px;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.5);
}

/* Fade transition effect between slides */
.slick-slide {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slick-slide.slick-active {
  opacity: 1;
}
/* ====== TEAM SECTION STYLES (Development Seed Style) ====== */

/* Team Section Container - Heading + Cards Side by Side */
.team-section {
  display: flex;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 20px;
  align-items: flex-start;
}

/* Team Section Heading (Left Side) */
.team-section-heading {
  font-size: 42px;
  font-weight: 900;
  color: #000;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-family: 'Jost', sans-serif;
  flex-shrink: 0;
  width: 280px;
  /* position: sticky;
  top: 100px; */
  height: fit-content;
  z-index: 10;
  margin-left: -25px;
}

/* Team Cards Container (Right Side) */
.team-section-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(auto, 1fr);
  gap: 40px;
  flex: 1;
  max-width: 100%;
  width: 100%;
}

/* Staggered layout - offset odd-numbered cards down */
/* .team-card:nth-child(odd) {
  margin-top: 0;
}

.team-card:nth-child(even) {
  margin-top: 60px;
} */

/* Team Card */
.team-card {
  background: #fff;
  border-radius: 6px;
  overflow: visible;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #f5f5f5;
  position: relative;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #003366 0%, #007bff 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.12);
  border-color: #e8f0f8;
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
}

/* Team Card Image */
.team-card-image {
  width: 100%;
  height: 300px;
  overflow: visible;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef6 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 51, 102, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 5;
}

.team-card:hover .team-card-image::after {
  opacity: 1;
}

.team-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
  position: relative;
  z-index: 4;
  
}

/* Leader Links Positioning */
.team-card-image .leader-links {
  position: absolute;
  bottom: -27px;
  right: 12px;
  z-index: 15;
}

.team-card-image .leader-links a {
  text-decoration: none;
  color: white;
  background-color: #0077B5;
  padding: 10px 12px;
  border-radius: 25%;
  display: inline-block;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 119, 181, 0.3);
}

.team-card-image .leader-links a:hover {
  background-color: #005885;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 119, 181, 0.5);
}

/* Individual team member photo adjustments */
/* Leadership Section */
.team-section:first-of-type .team-card:nth-child(1) .team-card-photo {
  object-position: center 5%; /* Karthik Chandra */
}

.team-section:first-of-type .team-card:nth-child(2) .team-card-photo {
  object-position: center 15%; /* Padma Bhupatiraju */
}

.team-section:first-of-type .team-card:nth-child(3) .team-card-photo {
  object-position: center 1%; /* Dr. Venugopalarao Koppaka */
}

.team-section:first-of-type .team-card:nth-child(4) .team-card-photo {
  object-position: center 20%; /* Srinivas Aluri */
}

/* Scientific & Technical Team Section */
.team-section:last-of-type .team-card:nth-child(1) .team-card-photo {
  object-position: center 30%; /* Jackie Kendall */
}

.team-section:last-of-type .team-card:nth-child(2) .team-card-photo {
  object-position: center 20%; /* Makhan Virdi - Perfect alignment */
}

.team-section:last-of-type .team-card:nth-child(3) .team-card-photo {
  object-position: center 2%; /* Dr. Suryanarayana Raju Pakalapati */
}

.team-section:last-of-type .team-card:nth-child(4) .team-card-photo {
  object-position: center 30%; /* Kimeera Tummala */
}

.team-section:last-of-type .team-card:nth-child(5) .team-card-photo {
  object-position: center 30%; /* Nandhini Ramachandran */
}


.team-section:last-of-type .team-card:nth-child(6) .team-card-photo {
  object-position: center 50%; /* Aishwayra Penmetsa */
}

.team-section:last-of-type .team-card:nth-child(7) .team-card-photo {
  object-position: center 20%; /* Nisar Fathima */
}

.team-section:last-of-type .team-card:nth-child(8) .team-card-photo {
  object-position: center 20%; /* Rajesh Guddati */

}

.team-section:last-of-type .team-card:nth-child(9) .team-card-photo {
  object-position: center 55%; /* Abhiram Dasari */
  
}



.team-card:hover .team-card-photo {
  transform:  rotate(0.5deg);
}

/* Team Card Content */
.team-card-content {
  padding: 32px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  transition: background 0.5s ease;
  overflow: visible;
}

.team-card:hover .team-card-content {
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
}

.team-card-name {
  margin: 0 0 8px 0;
  font-size: 19px;
  font-weight: 800;
  color: #003366;
  font-family: 'Jost', sans-serif;
  line-height: 1.4;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 8px;
}

.team-card-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover .team-card-name::after {
  width: 40px;
}

.team-card:hover .team-card-name {
  color: #007bff;
}

.team-card-role {
  margin: 0 0 16px 0;
  font-size: 11px;
  color: #666;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.team-card:hover .team-card-role {
  color: #003366;
}

.team-card-bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  font-family: 'Jost', sans-serif;
  transition: color 0.3s ease;
  text-align: left;
  word-spacing: normal;
  hyphens: auto;
  word-spacing: 0.05em;
}
@media (min-width: 1025px) {
  .team-section-heading {
    position: sticky;
    top: 100px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .modal-body {
    padding: 40px 80px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    gap: 30px;
  }

  .team-section {
    flex-direction: column;
    gap: 40px;
  }

  .team-section-heading {
    min-width: auto;
    font-size: 36px;
    position: relative;
    top: auto;
    width: 100%;
    margin-left: 0;
  }

  .team-section-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .about-photos-carousel {
    margin: 0 40px;
  }
}

@media (max-width: 768px) {
   #aboutUsModal.modal-body {
    padding: 30px 40px;
  }

  #aboutUsModal .modal-body p {
    word-spacing: 0.03em;
    letter-spacing: 0.005em;
    text-justify:inter-word ;
    hyphens: none;
  }

  .footer {
    padding: 30px 15px 15px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-logo img {
    max-width: 120px;
  }

  .footer-section h5 {
    margin-left: 0;
  }

  .about-modal-hero {
    height: 250px;
  }

  .about-modal-hero-overlay h1 {
    font-size: 32px;
  }

  .team-section {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }

  .team-section-heading {
    font-size: 32px;
    position: relative;
    top: auto;
    width: 100%;
  }

  .team-section-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .team-card-image {
    height: 250px;
  }

  .team-card-name {
    font-size: 18px;
  }

  .team-card-bio {
    font-size: 14px;
    line-height: 1.3;
  }

  .about-photos-carousel {
    margin: 0 20px;
  }

  .slick-prev {
    left: 10px;
  }

  .slick-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
 #aboutUsModal  .modal-body {
    padding: 20px 20px;
  }
  #aboutUsModal .modal-body p {
    word-spacing: normal;
    letter-spacing: 0.005em;
    text-align: left;
    hyphens: none;
  }

  .modal-body h2 {
    font-size: 28px !important;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .footer {
    padding: 20px 10px 10px;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .footer-logo img {
    max-width: 100px;
  }

  .footer-logo p {
    font-size: 0.8rem;
  }

  .footer-section h4,
  .footer-section h5 {
    font-size: 0.95rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    margin-top: 15px;
    padding-top: 10px;
  }

  .about-modal-hero {
    height: 200px;
  }

  .about-modal-hero-overlay h1 {
    font-size: 24px;
  }

  .team-section {
    gap: 20px;
    padding: 0 6px;
  }

  .team-section-heading {
    font-size: 28px;
    position: relative;
    top: auto;
    width: 100%;
    margin-bottom: 20px;
  }

  .team-section-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    grid-auto-rows: auto;
  }

  .team-card {
    height: auto;
  
  }

  .team-card-image {
    height: 200px;
  }

  .team-card-content {
    padding: 16px 12px;
  }

  .team-card-name {
    font-size: 16px;
  }

  .team-card-role {
    font-size: 11px;
  }

  .team-card-bio {
    font-size: 13px;
    word-spacing: normal;
    text-align: left;
    letter-spacing: normal;
    hyphens: manual;
    line-height: 1.3 !important;
  }
  @media (max-width: 600px) {
    .team-card-bio {
      line-height: 1.3;
    }
    
  }

  .about-photos-carousel {
    margin: 0 10px;
  }

  .slick-prev,
  .slick-next {
    width: 50px;
    height: 80px;
  }

  .slick-prev::before,
  .slick-next::before {
    width: 40px !important;
    height: 40px !important;
    font-size: 24px !important;
  }

  .modal-body h3 {
    font-size: 18px;
  }

  .modal-body p {
    font-size: 14px;
    word-spacing: 0.04em;
    letter-spacing: 0.015em;
    font-size: 22px;
    hyphens: none;
  }
}