/* ===== ENTRY SCREEN ===== */
#entryScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  z-index: 999999;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* ===== GLOW BACKGROUND ===== */
#entryScreen::before,
#entryScreen::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 5s infinite;
}



@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 0.3; }
  100% { transform: scale(0.8); opacity: 0.6; }
}

/* ===== LOGO ===== */
.entry-logo {
  width: 220px;
  opacity: 0;
  transform: scale(0.8);
  animation: logoIn 1s ease forwards;
}

@keyframes logoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== TEXT ===== */
.welcome-text {
  color: #fff;
  font-weight: 300;
  margin-top: 20px;
  opacity: 0;
  animation: textFade 1.2s ease forwards;
  animation-delay: 0.5s;
}

.welcome-text span {
  font-weight: 500;
  letter-spacing: 1px;
}

/* ===== BUTTON ===== */
#enterBtn {
  background: #fff;
  color: #000;
  border: none;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px 25px;
  border-radius: 30px;

  opacity: 0;
  animation: btnFade 1s ease forwards;
  animation-delay: 1s;

  transition: all 0.3s ease;
}

#enterBtn:hover {
  background: #983236;
  color: #fff;
  transform: scale(1.05);
}

/* ===== CLOSE BUTTON FIX 🔥 ===== */
.custom-close {
  position: absolute;
  top: 25px;
  right: 25px;

  background: #302E59;
  color: #fff;
  border: none;

  width: 55px;        /* 🔥 size increase */
  height: 55px;
  border-radius: 50%;

  font-size: 35px;    /* icon bada */
  line-height: 55px;
  text-align: center;

  cursor: pointer;
  z-index: 1000000;

  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

/* Hover */
.custom-close:hover {
  background: #983236;
  transform: rotate(90deg) scale(1.15);
}

/* ===== ANIMATIONS ===== */
@keyframes textFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes btnFade {
  to { opacity: 1; }
}

/* ===== FADE OUT ===== */
.fade-out {
  opacity: 0;
  transition: 0.8s ease;
}

.welcome-text {
  color: #fff;
  font-weight: 300;
  margin-top: 20px;
  letter-spacing: 1px;
}

/* blinking cursor */
#typingText::after {
  content: "|";
  margin-left: 5px;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}



/* water droplet animation */
.water-section {
  position: relative;
  overflow: hidden;
}

.water-drop-sec {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 44px;
  height: 44px;
  background: radial-gradient(circle at 30% 30%, #6dd5ff, #0077ff);
  
  /* 💧 REAL DROP SHAPE */
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(131deg);

  opacity: 0;
  /* z-index: 10; */

  box-shadow: 
    inset 0 4px 6px rgba(255,255,255,0.7),
    0 10px 20px rgba(0,0,0,0.25);
}
.water-splash {
  position: absolute;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.6);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
   box-shadow: 0 0 30px rgba(0,200,255,0.8);
}
.ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0,200,255,0.6);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}
.ripple, .water-splash {
  position: absolute;
  transform-origin: center;
}



/* vertical mask */
.reveal-mask {
  position: absolute;
  inset: 0;
  background: #fff; /* same as section bg */
  z-index: 5;
}

/* horizontal mask */
.reveal-mask-horizontal {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 5;
}

.item-bg,
.slide-content,
.service-entry,
.about-media3 {
  will-change: transform;
}

.entry-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}




/* header clock  */
/* wrapper same */
.clock-wrapper {
    overflow: hidden;
    width: 100%;
}

/* track */
.clock-track {
    display: flex;
    width: max-content;
}

/* row */
.clock-row {
    display: flex;
    gap: 60px;
    padding-right: 60px;
}

/* box */
.clock-box {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

/* country */
.clock-country {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

/* 🔥 PREMIUM TIME */
.digital-time {
    font-family: 'Courier New', monospace;
    font-size: 20px;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 600;
}

/* 🔥 FIXED AM PM */
.ampm {
    font-size: 11px;
    color: #ffcc70; /* visible gold tone */
    font-weight: bold;
    margin-left: 4px;
}

/* ✨ subtle separator */
.clock-box::after {
    content: "|";
    margin-left: 20px;
    color: rgba(255,255,255,0.2);
}

/* 🔝 Top white navbar strip */
.entry-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  /* background: rgba(255, 255, 255, 0.95);  */
  padding: 12px 40px;

  display: flex;
  justify-content: start;
  align-items: center;


  z-index: 10;

  /* 🔥 subtle shadow like navbar */
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

/* logo */

.content {
  position: absolute;
  z-index: 20; /* 🔥 important */
  left: 40px;
  top:95px;
}

#enterBtn {
  position: relative;
  z-index: 20;
  cursor: pointer;
}

.footer-logos-wrap {
  margin-top: 30px;
  width: max-content;
  /* display: flex; */
  /* justify-content: start; */
}

.footer-logos {
  display: flex;
}

.logo-box {
  width: 170px;
  height: 90px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.logo-box img {
  width: 150px;
  height: 90px;
  object-fit: contain;
}

.logo-box:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--primary); /* theme color */
}

.logo-title {
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

/* underline style (same as headings) */
.logo-title::after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--primary);
  display: block;
  margin: 6px auto 0;
}


/*--------------------------------------- map section starts here ------------------------------------------------------*/


       .world-map-sec {
  overflow: hidden;
}

#worldMapWrapper {
  position: relative;
  overflow: hidden;
}

#mapZoomContainer {
  position: relative;
  transition: transform 0.8s ease;
  transform-origin: center center;
}

.world-map-img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
}

/* PIN */
/* PIN BASE */
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 2;
}

/* PIN BODY */
/* PIN BODY */
.map-pin .pin {
  width: 22px;
  height: 22px;
  background: #913336;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;

  /* 🔥 Stronger glow */
  box-shadow: 0 0 0 3px #fff, 0 0 15px rgba(220,84,37,0.8);

  /* 🔥 More visible blink */
  animation: pinBlinkStrong 1.4s infinite ease-in-out;
}

/* 🔥 STRONG BLINK */
@keyframes pinBlinkStrong {
  0% {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
    box-shadow: 0 0 0 3px #fff, 0 0 10px rgba(220,84,37,0.7);
  }
  50% {
    opacity: 0.6;
    transform: rotate(-45deg) scale(1.25);
    box-shadow: 0 0 0 3px #fff, 0 0 28px rgba(220,84,37,1);
  }
  100% {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
    box-shadow: 0 0 0 3px #fff, 0 0 10px rgba(220,84,37,0.7);
  }
}

/* 🔥 Pulse also stronger */
.map-pin .pulse {
  width: 22px;
  height: 22px;
  background: rgba(220, 84, 37, 0.4);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulseStrong 1.6s infinite;
}

@keyframes pulseStrong {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(3);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* HOVER (premium feel) */
.map-pin:hover .pin {
  transform: rotate(-45deg) scale(1.25);
  background: #353356;
  animation: none; /* hover pe blink band */
  box-shadow: 0 0 0 3px #fff, 0 0 20px rgba(255,106,61,1);
}

/* LABEL */
.map-pin span {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #020e28;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  transition: 0.3s;
}

.map-pin:hover span {
  opacity: 1;
}
/* Responsive */
@media (max-width: 768px) {
  .map-pin .pin,
  .map-pin .pulse {
    width: 16px;
    height: 16px;
  }
}
     
/*--------------------------------------- map section ends here ------------------------------------------------------*/

.contact-details p {
  line-height: 1.7;
  color: #000;
}

.contact-details a {
  color: #2b00f9;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.office-block {
  border-left: 3px solid #DC5425;
  padding-left: 15px;
}

.custom-file-upload input[type="file"] {
  display: none;
}

.custom-file-upload label {
  width: 100%;
  padding: 14px 18px;
  border-radius: 40px;
  border: 1px solid #000;
  background: transparent;
  color: #ccc;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.custom-file-upload label:hover {
  border-color: #DC5425;
  color: #fff;
  box-shadow: 0 0 10px rgba(220,84,37,0.4);
}

.custom-file-upload i {
  margin-right: 8px;
  color: #DC5425;
}

#fileName {
  font-size: 13px;
  color: #aaa;
}


/* dropdown menu  */
/* REMOVE DEFAULT UL/LI */
.vertical-menu,
.vertical-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* MAIN ITEMS */
.vertical-menu > li {
  margin-bottom: 10px;
}

/* SERVICES TEXT */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

/* DROPDOWN */
.dropdown-menu-custom {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top: 10px;
  padding-left: 20px;   /* 🔥 proper indent */
  opacity: 0;
}

/* OPEN */
.dropdown.open .dropdown-menu-custom {
  margin-top: 10px;
  margin-left: 10px;
  max-height: 400px;
  opacity: 1;
}

/* ITEMS */
.dropdown-menu-custom li {
  margin: 8px 0;
}

/* LINKS */
.dropdown-menu-custom a {
  display: block;
  color: #1a1a1a;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

/* HOVER */
.dropdown-menu-custom a:hover {
  color: #DC5425;
  transform: translateX(4px);
}

/*body {
  cursor: url("../images/cursor/cursor.png") 16 16, auto;
}*/

/* banner three text corner  */
.premium-stats {
  position: absolute;
  right: 70px;
  bottom: 45px;
  z-index: 10;
}

/* each item */
.stat-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* icon */
.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(28, 90, 255, 0.43);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;

  box-shadow:
    0 0 12px rgba(0,140,255,0.45),
    inset 0 0 10px rgba(255,255,255,0.08);
}

/* FIX icon alignment */
.icon-box i {
  color: #fff;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* content */
.stat-content span {
  display: block;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.stat-content p {
 margin: 2px 0 0;
  color: #fff;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: bold;
}

/* divider */
.line-divider {
  width: 1px;
  height: 20px; /* decreased height */
  margin: 5px 0 5px 20px;
  background: rgba(255,255,255,0.5);
}

/* glow animation */
.icon-box::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(0,140,255,0.35);
  animation: glowPulse 2.5s infinite;
}

/* IMPORTANT FIX FOR LAST ICON */
.stat-line:last-child .icon-box i {
  font-size: 13px;
}

@keyframes glowPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.12);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* mobile */
@media (max-width: 768px) {
  .premium-stats {
    right: 18px;
    bottom: 18px;
  }

  .icon-box {
    width: 34px;
    height: 34px;
  }

  .icon-box i {
    font-size: 11px;
  }

  .stat-content span {
    font-size: 24px;
  }

  .stat-content p {
    font-size: 7px;
    letter-spacing: 1px;
  }

  .line-divider {
    height: 14px;
    margin-left: 16px;
  }
}
.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  /* more blur glass effect */
  background: rgba(18, 166, 221, 0.59);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  flex-shrink: 0;

  box-shadow:
    0 0 18px rgba(0,140,255,0.45),
    inset 0 0 18px rgba(255,255,255,0.08);
}

/* extra glass shine */
.icon-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.02)
  );
}
.slide-content p{
    font-size: 60px !important;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0;
}
@media(max-width:768px){
   .slide-content p{
      font-size: 28px !important;
   }
   .slider-sec2 .slide-item .slide-content p {
  font-weight: 500;
  color: var(--white);
  margin-bottom: 82px;
}
.sub-title, .sub-title2 {
  text-transform: uppercase;
  display: inline-block;
  color: #9c2b2d;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 19px;
}
.sec-title {
    overflow: hidden;
    font-size: 31px;
  }
  .sec-title {
    overflow: hidden;
    font-size: 23px;
  }
}

/*Extra css for sticky menu*/

/* NAVBAR DEFAULT */
.main-navbar {
  transition: all 0.4s ease;
  padding: 20px 0;
  background: transparent;
}

/* HIDE LOGO INITIALLY */
.main-logo {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

/* STICKY NAVBAR */
.main-navbar.sticky {
  background: #fff;
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* SHOW LOGO AFTER SCROLL */
.main-navbar.sticky .main-logo {
  opacity: 1;
  visibility: visible;
}

/* LOGO SIZE */
.main-logo img {
  max-height: 60px;
}
