body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #1f2933;
}

/* Navbar */
.navbar {
    background: #003b34;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.navbar-brand 
{
    background-color: #fff !important;
    width: 215px !important;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Hero Slider */
.carousel-item {
    height: 85vh;
    min-height: 520px;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(11, 28, 45, 0.75);
    padding: 40px;
    border-radius: 6px;
    max-width: 600px;
    text-align: left;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 1.1rem;
}

/* Section spacing */
section {
    padding: 80px 0;
}

/* Corporate Cards */
.corp-card {
    background: rgb(24 49 46);
    border: 1px solid #e5e7eb;
    color: #fff;
    transition: all .3s ease;
    box-shadow: var(--bs-box-shadow) !important;
}

.corp-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transform: translateY(-6px);
}

/* Stats */
.stats {
    background: #f8fafc;
}



/* county logo*/
#cc-slider {
  position: relative;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 50px 0;
  overflow: hidden;
  color: #fff;
}

#cc-slider * {
  box-sizing: border-box;
}

/* Glow shapes */
#cc-slider::before,
#cc-slider::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

#cc-slider::before {
  top: -100px;
  left: -100px;
}

#cc-slider::after {
  bottom: -120px;
  right: -120px;
}

/* Keep content above background */
#cc-slider > * {
  position: relative;
  z-index: 1;
}

/* Title */
#cc-slider .cc-title {
  text-align: center;
  margin-bottom: 25px;
  font-family: system-ui, sans-serif;
  font-size: 28px;
  font-weight: 600;
}

/* Viewport */
#cc-slider .cc-viewport {
  width: 100%;
  overflow: hidden;
}

/* Carousel Track */
#cc-slider .cc-track {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 28px;
  animation: ccMove 30s linear infinite;
}

/* Pause on hover */
#cc-slider:hover .cc-track {
  animation-play-state: paused;
}

/* Country Card */
#cc-slider .cc-card {
  width: 150px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 15px 10px;
  transition: transform 0.3s ease;
}

#cc-slider .cc-card:hover {
  transform: scale(1.05);
}

#cc-slider .cc-card img {
  width: 56px;
  margin-bottom: 6px;
}

#cc-slider .cc-card p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  #cc-slider .cc-card {
    width: 120px;
  }

  #cc-slider .cc-card img {
    width: 44px;
  }

  #cc-slider .cc-title {
    font-size: 22px;
  }
}

/* Carousel Animation */
@keyframes ccMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



/* Footer */
footer {
    background: #003b34;
    color: #cbd5e1;
    padding: 50px 0;
}

footer .list-unstyled {
    padding-left: 0;
    list-style: none;
    gap: 30px;
    /* display: flex; */
    justify-content: center;
    padding: 15px 40px;
    width: fit-content;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

footer .list-unstyled ul li{
    justify-content: center;
    padding: 11px 0px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* Icon links */
.social-icons a {
  width: 42px;
  height: 42px;
  background: #fa921d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Hover effect */
.social-icons a:hover {
  background: #00e6e6;
  color: #000;
  transform: translateY(-4px);
}




footer a {
    color: #cbd5e1;
    text-decoration: none;
}

          .jw-slide-section {
  background: #003b34;
  padding: 40px 0;
  overflow: hidden;
}

.jw-slide-track {
  display: flex;
  gap: 40px;
  animation: jw-slide 25s linear infinite;
  width: max-content;
}

.jw-slide-item {
  min-width: 260px;
  background: #024d44;
  padding: 25px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.jw-slide-item img {
  width: 42px;
  height: 42px;
  background: #f8901c;
  padding: 8px;
  border-radius: 10px;
}

.jw-slide-item h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

/* Animation */
@keyframes jw-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.jw-slide-section:hover .jw-slide-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .jw-slide-item {
    min-width: 220px;
  }

  .jw-slide-item h4 {
    font-size: 14px;
  }
}

/* ==============================
   ABOUT US SECTION (Namespaced)
   ============================== */

.jw-about-section {
  padding: 100px 40px;
  background: #003b34;
  font-family: "Inter", sans-serif;
}

.jw-about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  align-items: center;
}

/* ---------- LEFT CONTENT ---------- */
.jw-about-text {
  opacity: 0;
}

.jw-about-text.animate {
  animation: jwSlideLeft 1s ease forwards;
}

.jw-about-tag {
  background: #f8901c;
  color: #003b34;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 600;
}

.jw-about-text h2 {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 15px;
}

.jw-about-text p {
  font-size: 16px;
  color: #dcdcdc;
  line-height: 1.7;
}

/* ---------- STATS ---------- */
.jw-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  gap: 15px;
}

.jw-about-stats h3 {
  color: #f8901c;
  font-size: 28px;
  margin-bottom: 5px;
}

.jw-about-stats p {
  color: #e0e0e0;
  font-size: 14px;
}

/* ---------- IMAGE COLUMN ---------- */
.jw-about-image {
  opacity: 0;
}

.jw-about-image.animate {
  animation: jwZoomFade 1.2s ease forwards;
}

.jw-about-image img {
  width: 100%;
  border-radius: 18px;
  border: 4px solid #f8901c;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* ---------- RIGHT CARDS ---------- */
.jw-about-grid {
  display: grid;
  gap: 25px;
}

.jw-about-card {
  background: #024d44;
  padding: 28px;
  border-radius: 14px;
  color: #ffffff;
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jw-about-card.animate {
  animation: jwFadeUp 1s ease forwards;
}

.jw-about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.jw-about-card h4 {
  color: #f8901c;
  margin-bottom: 8px;
  font-size: 18px;
}

.jw-about-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #dcdcdc;
}

/* ---------- ANIMATIONS ---------- */
@keyframes jwSlideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes jwZoomFade {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes jwFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .jw-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .jw-about-stats {
    grid-template-columns: 1fr 1fr;
  }
}


/*----mobile viwe for extra---*/

@media (max-width: 480px) {
  .social-icons {
    gap: 14px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  
  .timeline-dot {
    width: 10px;
    height: 10px;
    background: #f08c1c;
    border-radius: 50%;
    position: absolute;
    left: -2px !important;
    margin-top: 8px;
}
  
  .hero-text h1 {
          font-size: 2.2rem !important;
      padding-top: 38px !important;
  }
  
  .carousel-caption h1 {
    font-size: 2rem !important;
    font-weight: 700;
}
}
