/* ABOUT US STYLING */

.about-us {
  padding-top: 2rem;
}

.about-us h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 1.6rem;
  color: #0b1b4c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  position: relative;
  text-align: left;
  margin-top: 0; /* Default mobile value */
}


@media (min-width: 768px) {
  .about-us h3 {
    margin-top: 6rem;
  }

  .about-us p {
    margin-top: 2rem; /* change this to adjust position */
  }
}

.about-us p {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #000;
  margin-top: 0; /* Paragraph ka top margin hata dia */
  margin-bottom: 0;
}


/* Image Container Styling */
.img-container {
  width: 250px;
  height: 250px;
  margin-top: 50px;
  background-color: #00BCD4;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}


@media (max-width: 767.98px) {
  .about-us h3 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .about-us p {
    text-align: center;
    padding: 0 15px;
  }

  .img-container {
    margin-top: 0;
    margin-bottom: 0;
  }
}






/* Section title */
.section-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 1.6rem;
  color: #0b1b4c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  position: relative;
  text-align: center; /* Mobile default */
  margin-top: 0;
}

/* Desktop specific */
@media (min-width: 768px) {
  #global-title {
    margin-top: 6rem;
    margin-left: 200px;
  }

  .mission-text {
    margin-top: 2rem;
  }
}

/* Paragraph text */
.mission-text {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
}


/* Globe Container */
.globe-container {
  position: relative;
  width: 340px;
  height: 340px;
  margin-bottom: 2rem;
}


/* Ellipse rings */
.ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform-style: preserve-3d;
  user-select: none;
}

.ellipse-ring-1 {
  width: 100%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.7;
}

.ellipse-ring-2 {
  width: 107%;
  transform: translate(-50%, -50%) scale(1.07);
  opacity: 0.5;
}

.ellipse-ring-3 {
  width: 114%;
  transform: translate(-50%, -50%) scale(1.14);
  opacity: 0.3;
}

.globe-img {
  position: absolute;
  width: 120%;
  top: 45%;
  left: 47%;
  transform: translate(-50%, -50%);
  z-index: 1;
  user-select: none;
}


/* Circle Icons */
.main-circle-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2;
  transition: transform 0.3s ease;
}

.main-circle-icon:hover {
  transform: scale(1.15);
}

.icon-top { top: -55px; left: 50%; transform: translateX(-50%); }
.icon-right { top: 50%; right: -56px; transform: translateY(-50%); }
.icon-bottom { bottom: -54px; left: 50%; transform: translateX(-50%); }
.icon-left { top: 50%; left: -58px; transform: translateY(-50%); }


/* Mobile view */
@media (max-width: 767.98px) {
  .section-title,
  .mission-text {
    text-align: center;
    margin-top: 20px;
    padding: 0 15px;
  }

  .section-title {
    margin-top: 1rem;
    margin-bottom: 6rem;
  }

  .globe-container {
    width: 280px;
    height: 280px;
  }

  .main-circle-icon {
    width: 50px;
    height: 50px;
  }

  .icon-top { top: -45px; }
  .icon-right { right: -45px; }
  .icon-bottom { bottom: -43px; }
  .icon-left { left: -47px; }
}



/* Main Container */
.values-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem 2rem 1rem;
}

/* Title */
.values-section .section-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 1.6rem;
  color: #0b1b4c;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

/* Grid Container */
.custom-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Each row */
.grid-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* All cards */
.value-card {
  background: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;

  flex: 1 1 280px;
  max-width: 340px;
}

.value-card:hover {
  transform: rotateY(10deg) rotateX(5deg) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.value-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.value-card:hover img {
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b1b4c;
}

.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #222;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
}

/* Responsive: Stack on small devices */
@media (max-width: 767.98px) {
  .grid-row {
    flex-direction: column;
    align-items: center;
  }

  .value-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}



.experience-section {
  background-color: #f7f5f0;
  padding: 35px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
}

.experience-section p {
  font-size: 26px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin: 0;
  color: #000;
}

.experience-section strong {
  font-weight: bold;
}

.experience-section img {
  height: 60px;
  object-fit: contain;
}
