* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* ANIMATION */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-title {
  animation: slideUpFade 1s ease-out forwards;
}

.animate-subtitle {
  opacity: 0;
  animation: slideUpFade 1s ease-out forwards;
  animation-delay: 0.3s;
}

.animate-btn {
  opacity: 0;
  animation: popUp 0.6s ease-out forwards;
  animation-delay: 0.8s;
}


/* HEADER */
.top-header {
  position: fixed;   
  scroll-margin-top: 80px;       
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  z-index: 1000;            
  backdrop-filter: blur(5px); 
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  
}

.logo img {
  height: 50px;
  
}

.logo span {
  font-size: 15px;
  line-height: 1.2;
}

nav a {
  color: rgb(247, 247, 247);
  text-decoration: none;
  margin-left: 25px;
  font-size: 14px;
  font-weight: bold;

  padding: 8px 14px;
  border: 2px solid #f1f5f9;
  border-radius: 6px;

  transition: color 0.3s ease, border-color 0.3s ease;

}
nav a:hover {
  color: #2f80ed;
  border-color: #2f80ed;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(93, 92, 92, 0.3);
}

/* NAV DROPDOWN */
.nav-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 25px;
}

.dropdown-toggle {
  margin-left: 0 !important;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 20, 60, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  min-width: 210px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  z-index: 2000;
  animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}


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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  color: #f1f5f9 !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(47, 128, 237, 0.3);
  color: #2f80ed !important;
  border: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.dropdown-item i {
  font-size: 14px;
  color: #2f80ed;
  width: 16px;
  text-align: center;
}

.dropdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.login-btn {
  background: #2f80ed;
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.4s ease; 
  display: inline-block;
}

/* Hover effect*/
.login-btn:hover {
  transform: scale(1.1); 
  background: #1c60c6; 
  border-color: #f1f5f9;
  color: #f1f5f9;
  box-shadow: 0 8px 20px rgba(105, 104, 104, 0.3); 
}



/* HERO */
.hero {
  height: 100vh;
  background: url("Images/Pulisbg.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 200px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  color: white;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 40px;
  margin-top: 80px;
  margin-left: 90px;
}

.hero-content span {
  font-size: 28px;
}

.hero-content p {
  font-size: 18px;
  margin-top: 30px;
  margin-left: 90px;
}

.cta-btn {
  background: #2f80ed;
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.4s ease; 
  display: inline-block;
  margin-top: 50px;
  margin-left: 90px;
}

/* Hover effect: huge pop */
.cta-btn:hover {
  transform: scale(1.2); 
  background: #1c60c6;  
  box-shadow: 0 8px 20px rgba(0,0,0,0.3); 
}



/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
}

/* FEATURES */
.features {
  background: lch(87.27% 11.69 257.65);
  padding: 60px 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-box {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid #4b7bdc;
  
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.feature-content {
  padding: 26px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #062671;
}

.feature-box p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.feature-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.feature-box:hover .feature-image img {
  transform: scale(1.08);
}



/* ABOUT */
.about {
  background: lch(87.27% 11.69 257.65);
  padding: 10px 20px;
}
.about-content {
  max-width: 1250px;
  margin: auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;  
  border: 2px solid #4b7bdc;
}

.about-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.about-content h1 {
  font-size: 30px;
  margin-bottom: 25px;
  text-align: center;
  color: #062671;
  position: relative;
}

/* centered underline */
.about-content h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 15%;
  height: 4px;
  background: #2563eb;
  border-radius: 10px;
}


.about-content p {
  font-size: 20px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
 text-align: center;
}


/* ABOUT CONTACT ICON */
.about-icon, .contact-icon {
  font-size: 36px;        
  color: #1d4ed8;        
  margin-right: 12px;     
  transition: transform 0.3s ease, color 0.3s ease;
}


/* CONTACT */

.contact {
 background: lch(87.27% 11.69 257.65);
  padding: 60px 40px;
}
.contact-content {
  max-width: 1250px;
  margin: auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;  
  
  border: 2px solid #4b7bdc;
}

.contact-content h1 {
  font-size: 30px;
  margin-bottom: 25px;
  text-align: center;
  color: #062671;
  position: relative;
}

.contact-content h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 15%;
  height: 4px;
  background: #2563eb;
  border-radius: 10px;
}

.contact-content h3 {
  color: #062671;
}
.contact-content p {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}


/* HOTLINE */

.hotline-content p{
  font-size: 20px;

}

.hotline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  grid-template-rows: repeat(3, auto);
  gap: 7px;
  margin-top: 30px;

}

.hotline-item {
  background: #c2c6d1;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.hotline-item h5 {
 text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #0b2e75;
  margin-bottom: 10px;
}

.hotline-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}


.hotline-item i {
  color: #2f80ed;         
  margin-right: 8px;
  font-size: 14px;
}

.hotline-item h5 i {
  font-size: 16px;
}




/* MISSION VISION */

.missionvision {
  background: lch(87.27% 11.69 257.65);
  padding: 10px 20px;
}

.mission-box, .vision-box {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 400px;
  height: 90%;
  border: 2px solid #4b7bdc;
  transition: all 0.3s ease;  
  margin-top: 30px;
}

.mission-content {
  max-width: 1250px;
  margin: auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;  
  border: 2px solid #4b7bdc;
  color: #475569;
}
.mission-content h2{
  color:  #0b2e75;
}
.missionvision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.mission-content h1 {
  font-size: 30px;
  margin-bottom: 25px;
  text-align: center;
  color: #062671;
  position: relative;
}

.mission-content h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 30%;
  height: 4px;
  background: #2563eb;
  border-radius: 10px;
}


.mission-box:hover, .vision-box:hover {
  transform: translateY(-8px) scale(1.03); 
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  border-color: #1d4ed8; 
  transition: all 0.4s ease;
}


/* Icon styles */
.mission-icon, .vision-icon {
  font-size: 40px;           
  color: #1d4ed8;            
  margin-bottom: 15px;      
  transition: transform 0.3s ease, color 0.3s ease;
}


.mission-box:hover .mission-icon,
.vision-box:hover .vision-icon {
  transform: scale(1.2) rotate(10deg); 
  color: #2563eb;                     
}



/* ========== DEVELOPER TEAM SECTION STYLES ========== */
.developers {
  background: linear-gradient(135deg, #f6f8fc 0%, #e6f0fa 100%);
  padding: 40px 40px;
}

.developers-content {
  max-width: 1400px;
  margin: 0 auto;
}

.developers-content h1 {
  font-size: 26px;
  text-align: center;
  color: #062671;
  margin-bottom: 10px;
  position: relative;
}

.developers-content h1 i {
  color: #2563eb;
  margin-right: 10px;
}

.developers-content h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #2563eb;
  border-radius: 10px;
}

.developers-subtitle {
  text-align: center;
  color: #475569;
  font-size: 14px;
  margin-bottom: 25px;
  margin-top: 15px;
}

.developers-grid {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.developer-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(37, 99, 235, 0.1);
  flex: 0 0 260px;
  min-width: 0;
}

.developer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.15);
  border-color: #2563eb;
}

.developer-img {
  position: relative;
  width: 100%;
  height: 185px;
  overflow: hidden;
}

.developer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.developer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 38, 113, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.developer-card:hover .developer-overlay {
  opacity: 1;
}

.dev-social {
  display: flex;
  gap: 10px;
}

.dev-social a {
  width: 34px;
  height: 34px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #062671;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(15px);
  opacity: 0;
  border: none !important;
  margin: 0 !important;
}

.developer-card:hover .dev-social a {
  transform: translateY(0);
  opacity: 1;
}

.dev-social a:hover {
  background: #f59e0b;
  color: white;
  transform: scale(1.1) !important;
  box-shadow: none !important;
  border: none !important;
}

.developer-info {
  padding: 16px 12px;
  text-align: center;
}

.developer-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #062671;
  margin-bottom: 5px;
}

.dev-role {
  font-size: 12px;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.3;
}

.dev-role i {
  margin-right: 4px;
}

@media (max-width: 900px) {
  .developers-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .developer-card {
    flex: 0 0 160px;
  }
}


/* FOOTER */
.footer-container {
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background-color: #031a51;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  color: #e5e7eb;
}

.footer-logo {
  width: 80px;      
  height: 80px;
  object-fit: contain;
  margin-bottom: 5px;
}

.footer-pnplogo {
  width: 100px;       
  height: 80px;      
  object-fit: contain;
  margin-bottom: 5px;
}


.footer-divider-vertical {
  width: 2px;
  background-color: #ccc; 
  height: 120px;
}


.footer-bottom {
  font-size: 14px;
  margin-top: 20px;
  color: #e5e7eb;
}