/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   font-family: 'Fredoka', sans-serif;
    /* overflow-x: hidden;  Prevent horizontal scroll */
    width: 100%;
}

.transparent-navbar.navbar.scrolled {
    background: #0a99ff !important;
    height:80px;
}
.navbar.scrolled {
    background: #0a99ff !important;
    height:80px;
    z-index:9999;
}
/* LOGO SIZE AFTER SCROLL */
.navbar.scrolled .navbar-brand img {
    height: 60px;   
}

@media (max-width: 768px) {
    .gap-4 {
        gap: 0.5rem !important;  /* Adjust the gap to a smaller value */
    }
}

@media (max-width: 768px) {
    .navbar .nav-item {
        margin-bottom:5px;  /* Reduce the margin as needed */
    }
}
@media (max-width: 768px) {
    .navbar {
        background-color: black;
    }
    .navbar a {
        color:#000 !important; /* Ensure links are visible on black background */
    }
}


/* MOBILE dropdown fix */
@media (max-width: 991px) {
  .dropdown-menu {
    display: none;
    background: #000;
    padding: 10px;
    border-radius: 16px;
  }

  .dropdown-menu.show {
    display: block;
  }

  .navbar-nav .nav-link {
    color:black !important;
  }
}


.hero-section {
    padding-top: var(--navbar-height);
    position: relative;
    z-index:0;
    height: 100vh; 
    width: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}


/* TRANSPARENT NAVBAR */
.transparent-navbar {
   background: transparent !important;
    box-shadow: none; /* Remove any unwanted shadow */
    position:fixed; /* Make navbar absolute to place it on top */
    top: 0; /* Keep it at the top */
    left: 0; 
    height: var(--navbar-height);
    width: 100%;
    z-index:99999; /* Set a high z-index to place it above the hero section */
     isolation: isolate;   /* 🔥 MOST IMPORTANT LINE */
}

.earth-img {
    position: absolute;
    top: -30px;          /* adjust to match reference */
    right: -40px;        /* pushes image partially outside */
    width: 160px;
    height:140px;        /* control size */
    opacity: 0.6;        /* soft look like reference */
    z-index: 1;          /* behind navbar text */
    pointer-events: none; /* prevents blocking clicks */
}
/* NAV LINKS */
.navbar-nav .nav-link {
    font-weight: 500;
     font-family: 'Fredoka', sans-serif;
     color: #000;
}
.nav-item{
    font-family: 'Fredoka', sans-serif;
    font-size:30px;
    font-weight:500;

}

.navbar .nav-item .dropdown-toggle::after {
    margin-top:15px;  /* Adjust the value to move the arrow down or up */
}

/* Dropdown background transparent */
.dropdown-menu {
  /* background: transparent; */
  border: none;
  box-shadow: none;
  padding: 8px 0;
  border-radius:30px;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  color: #fff;
  /* background-color:black; */
  padding: 0 16px;
  font-size:20px;
  font-weight:500;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
  background:black;
  color: #fff;
  border-radius:30px !important;
}

/* Dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    background: rgba(12, 12, 12, 0.15);
    border: none;
    box-shadow: none;
    padding: 10px 0;
}
/* .dropdown-menu:hover{
   background: rgba(12, 12, 12, 0.15);
} */
.dropdown-menu .dropdown-item {
   
    color:black;
    padding: 6px 18px;
}

.dropdown-menu {
    animation: fadeSlide 0.3s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arrow icon */
.navbar-nav .nav-item .fa-chevron-down {
    display: none;
}

.nav-item.dropdown:hover .fa-chevron-down {
    display: inline-block;
}

/* Style for chevron */
.nav-item .fa-chevron-down {
    margin-left: 5px;
}

/* Hide dropdown by default */
.dropdown-menu {
    display: none;
}

/* Optional: You can also change the hover background color */
.nav-item.dropdown:hover.nav-link {
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius:30px;
}

/* Dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    background: rgba(12, 12, 12, 0.15);
    border: none;
    box-shadow: none;
    padding: 10px 0;
}
/* .dropdown-menu:hover{
   background: rgba(12, 12, 12, 0.15);
} */
.dropdown-menu .dropdown-item {
   
    color:black;
    padding: 6px 18px;
}
/* .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 30px;
} */
/* .navbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    color:black;
    transform: translateX(4px);
} */
.dropdown-menu {
    animation: fadeSlide 0.3s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arrow icon */
.navbar-nav .nav-item .fa-chevron-down {
    display: none;
}

.nav-item.dropdown:hover .fa-chevron-down {
    display: inline-block;
}

/* Style for chevron */
.nav-item .fa-chevron-down {
    margin-left: 5px;
}

/* Hide dropdown by default */
.dropdown-menu {
    display: none;
}

/* Optional: You can also change the hover background color */
.nav-item.dropdown:hover.nav-link {
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius:30px;
}


/* Full section with background image */
.section {
  position: relative;
  height: 85vh; /* Full viewport height */
  background-image: url('/Images/privacy.png'); /* Your section background image */
  background-size: cover;
  background-position: left center; /* Keep the left aligned and shift the image to the right */
  /* background-position: 30px center; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
 
}


/* Full circle with bottom shadow */
.full-circle {
  position: absolute;
  width: 295px; /* Adjust size */
  height: 295px; /* Equal height and width to make a circle */
  background-color: #fff;
  border-radius: 50%;
  top: 57%; /* Center it vertically */
  left: 11%; /* Adjust position from the left */
  bottom: 15px;
  transform: translateY(-50%); /* Ensure it's exactly centered vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18); /* Bottom shadow for floating effect */
}

/* Text wrapper inside the circle */
.circle-text {
  text-align: center;
  max-width: 250px;
}

/* ICON inside the circle */
.circle-text img {
  width: 70px; /* Adjust icon size */
  height: auto;
  margin-bottom: 15px; /* Space between icon and text */
}

/* Heading text inside the circle */
.circle-text h2 {
  font-size: 24px; /* Adjust font size */
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Sub-text inside the circle */
.circle-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}



html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.about-header {
  position: relative;
  height: 5vh;                 /* same banner height */
  display: flex;
  align-items: center;           /* vertical center */
  justify-content: center;       /* horizontal center */
}

.about-content {
  text-align: center;
  width: 100%;
  color: #fff;
}

.job-heading h3{
  margin: 0;
  text-decoration:underline;
  font-size:32px;
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
}
/* CUSTOM UNDERLINE (matches image) */

 .job-details {
  max-width: 1200px;
  margin: 50px auto;
  padding: 28px 20px;
  font-family: 'Fredoka', sans-serif;
  color: #111;
  
}
.job-heading {
  display: flex;
  align-items: center;   /* 🔥 vertical alignment fix */
  gap: 10px;
  margin-bottom: 8px;
  font-weight:700;
}

.job-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}
.job-arrow {
  width: 22px;          /* adjust if needed */
  height: auto;
  display: block;       /* removes inline spacing issues */
}
.job-meta {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.apply-btn {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.apply-btn:hover {
  background: #084298;
}

.divider {
  margin: 25px 0;
  height: 5px;
  color: #000;
  border: none;
  width: 100%; /* Ensures it takes up full width */
}

.hr {
  /* opacity: .25; */
}

.job-block {
  margin-bottom: 25px;
}

.job-block h3 {
  margin: 0;
  font-size:24px;
  font-weight: 700;
}

.job-block p {
  font-size: 18px;
  line-height: 1.9;
}

.job-block ul {
  padding-left: 18px;
}

.job-block ul li {
  font-size: 18px;
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer {
  background: #0a99f0;
  padding-top:40px;
  padding-left:20px;
  padding-right:20px;
  /* padding-bottom:15px; */
  color: #ffffff;
  font-family: 'Fredoka', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

/* BRAND */
.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.brand-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-brand h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.footer-brand p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 420px;
  margin-top: 20px;
}

/* LINKS */
.footer-links h4 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}
.footer-bottom {
  margin-top: 0px;
  /* margin-bottom:0px; */
  padding: 8px 0px;
  text-align: center;
 
  font-size: 18px;
  color: #ffffff;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom strong {
  font-weight: 700;
}

.designer-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.designer-link:hover {
  opacity: 0.8;
}


/* TABLET */
/* @media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
} */
/* Mobile Footer Fix */
@media (max-width: 768px) {

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }

  /* Brand takes full width */
  .footer-brand {
    width: 100%;
  }
  .footer-links{
    text-align:center;
  }
  /* Visit + Information in one row */
  /* .footer-links {
    width: 50%;
  } */

  .footer-links h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .footer-links {
    text-align: left;
  }
}


/* Dropdown background transparent */
.dropdown-menu {
  /* background: transparent; */
  border: none;
  box-shadow: none;
  padding: 8px 0;
  border-radius:30px;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  color: #fff;
  /* background-color:black; */
  padding: 0 16px;
  font-size:20px;
  font-weight:500;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
  background:black;
  color: #fff;
  border-radius:30px !important;
}


/* ON SCROLL */
.transparent-navbar.scrolled {
    background: #0a99ff !important;
    height: 80px;
}

/* LOGO */
.navbar-brand img {
    height: 110px;
    transition: height 0.3s ease;
    margin-top: 20px;
    margin-bottom: 10px;
}

.transparent-navbar.scrolled .navbar-brand img {
    height: 60px;
}

/* Adjust logo size and position for mobile */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 50px !important;  /* Adjust logo height */
        margin-top: 3px;  /* Align logo properly */
        margin-bottom: 0px;  /* Remove any bottom margin */
    }
}

/* Adjust logo size and position for mobile */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px; /* Set the desired logo height for mobile */
        margin-top: 3px;  /* Fine-tune margin to align logo properly */
        margin-bottom: 0px;  /* Remove any unwanted bottom margin */
    }
}

.hero-section {
    height: 60vh; /* Adjust hero section height */
    padding-top: var(--navbar-height);
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh; /* Reduce height for mobile */
        padding-top: 20px; /* Adjust for better spacing */
    }

    .hero-section .text-content {
        font-size: 18px; /* Smaller text for mobile */
        text-align: center; /* Center align text */
    }

    .hero-section .cta-button {
        padding: 12px 25px; /* Adjust button size */
        font-size: 16px; /* Smaller font */
    }
}

/* Hide arrow on desktop */
.dropdown-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
}

/* MOBILE ONLY */
@media (max-width: 991px) {
  .dropdown-toggle-btn {
    display: block;
  }

  .nav-dropdown-mobile > .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 5px;
    border-radius: 12px;
  }
  
}

@media screen and (max-width: 768px) {
  .section {
    background-image: url('/Images/term-mobile4.png'); /* Red circle background image */
    background-size: contain; /* Adjusts the image to fit without cutting */
    background-position: center center; /* Center the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    height: 210px; /* Adjust height for mobile view */
  }

  /* Adjust the full circle's positioning */
  .full-circle {
    position: absolute;
    top: 72%; /* Center vertically */
    left:17%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for true center */
    width: 100px; /* Adjust size */
    height: 100px; /* Adjust size */
    padding: 20px; /* Adjust padding inside the circle */
  }

  /* Adjust text inside the circle for mobile */
  .circle-text {
    text-align: center;
    max-width: 140px; /* Adjust text area size */
    font-size: 14px; /* Smaller text size for mobile */
  }

  /* Adjust icon size for mobile */
  .circle-text img {
   display:none;
  }

  /* Adjust heading text size for mobile */
  .circle-text h2 {
    font-size: 12px; /* Smaller heading size */
    margin-bottom:4px; /* Adjust space */
  }

  /* Adjust sub-text size for mobile */
  .circle-text p {
    font-size:8px; /* Smaller sub-text size */
  }
  .job-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
}
/* Mobile view customization */
@media screen and (max-width: 768px) {
  /* Change the color of li items to black on mobile */
  .navbar .nav-item {
    color: black !important; /* Override default color with black */
  }
  
  /* Optionally, change the color of dropdown items as well */
  .navbar .dropdown-item {
    color: black !important; /* Ensure dropdown items are black too */
  }

  /* Change the color of the mobile arrow */
  .navbar .mobile-arrow {
    color: black !important; /* Ensure mobile arrow is black */
  }
}