

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}




/*GLOBAL BUTTONS ANG HIGHLIGHTS*/
/* === HERO HIGHLIGHT COLORS === */
.highlight-blue {
  color: #001c80;
  font-weight: 500;
}

.highlight-yellow {
  color: #d4af37;
  font-weight: 600;
}

.highlight-black {
  color: black;
  padding: 2px 6px;
  border-radius: 4px;
}

/* PRIMARY BUTTON STYLE */
.btn-primary {
    font-family: 'Raleway', sans-serif;
  background-color: #001c80;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* YELLOW BUTTON STYLE */
.btn-yellow {
  background-color: #d4af37; /* gold/yellow color */
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-yellow:hover {
  background-color: #b8962f; /* darker gold */
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}








/* NAVBAR */
.navbar {
  font-family: 'Montserrat', sans-serif;
  background-color: #001c80;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 25px 8%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* LOGO */
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo img {
  height: 40px;
}

/* NAVIGATION MENU */
.navbar nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  
}

.navbar nav ul {
  display: flex;
  list-style: none;
  gap: 10px;

}

.navbar nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 12px;
  position: relative;       /* needed for pseudo-element positioning */
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;                /* line appears under text */
  width: 100%;
  height: 2px;              /* thickness of the line */
  background-color: #d4af37;
  transform: scaleX(0);     /* initially hidden */
  transform-origin: left;   /* animation starts from left */
  transition: transform 0.3s ease;
}

.navbar nav ul li a:hover {
  color: #d4af37;           /* text color on hover */
 transform: scale(1.08);   /* optional slight zoom */
}

.navbar nav ul li a:hover::after {
  transform: scaleX(1);     /* line grows fully from left to right */
}

.navbar nav ul li a.active {
  color: #d4af37;
   font-weight: bold;
}




/* CONSULTATION BUTTON */
.btn-consult {
  background-color: #fff;
  color: #001c80;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  margin-left: 50px;
}

.btn-consult:hover {
  background-color: #d4af37;
  color: #000;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  

}


.header-buttons {
  display: flex;
  align-items: center;
  gap: 50px; /* space between button and icon */
}

.btn-admin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s;
}

.btn-admin:hover {
   color: #001c80;
  background-color: white; /* hover effect */
  
}



/* ============================= */
/* HERO SECTION (image from HTML) */
/* ============================= */
.hero {
  
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10%;
  position: relative;
  color: #000;
}

/* OVERLAY */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 0;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

/* HERO TITLE */
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #000;
}

.hero h1 .real-estate {
  color: #001c80;
}

/* HERO SUBTITLE */
.hero-content .hero-subtitle {
   font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #001c80;
  margin-bottom: 20px;
}

/* HERO PARAGRAPH */
.hero-content p:not(.hero-subtitle) {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 25px;
}

/* HERO BUTTONS */
.hero-buttons {
  font-family: 'Raleway', sans-serif;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}



/* ============================= */
/* HAMBURGER ICON WITH ANIMATION */
/* ============================= */
.menu-toggle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  position: fixed;  /* make it stay visible above overlay */
  top: 25px;
  right: 25px;
  z-index: 2000;  /* higher than black background */
}


.menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.4s ease;
}

/* X animation when active */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* MENU OVERLAY */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}


/* ============================= */
/* MOBILE & TABLET MENU STYLES */
/* ============================= */
@media (max-width: 1024px) {
  .navbar {
    justify-content: space-between;
    padding: 15px 5%;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar nav {
    margin-left: 0;
  }

  #nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: black;
    transition: left 0.4s ease;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 0 0 40px;
  }

  #nav-menu.active {
    left: 0;
  }

  #nav-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }

  #nav-menu ul li a {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 500;
    transition: 0.3s;
    text-align: left;
  }

  #nav-menu ul li a:hover {
    color: #ffda00;
  }
   #nav-menu ul li a.active {
    color: #ffda00;
  }

  .btn-consult {
    display: none;
  }

     .hero {
    padding-top: 90px; /* for navbar spacing */
    padding-bottom: 90px; /* adds space at bottom on mobile */
  }

  .hero h1 {
    
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero p {
    font-size: 1rem;
  }
  .hero .hero-content p{
    font-size: 1rem;
  }

  /* Center hero buttons vertically and horizontally */
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
  } 

  .btn-primary {
    width: 80%;
    max-width: 200px;
    text-align: center;
  }
  .btn-yellow{
    width: 80%;
    max-width: 250px;
    text-align: center;
    font-size: 13px;
  }
  
}




















/* ========================== */
/* SECTION BASE */
/* ========================== */
.what-we-do {
  background-color: #f4f6fc;
  text-align: left;
  padding: 80px 8%;
}

.what-we-do h2 {
  font-family: 'Montserrat', sans-serif;
  color: #000080;
  font-size: 2rem;
  margin-bottom: 10px;
  margin-left: 70px;
}

.what-we-do .subtitle {
  font-family: 'Raleway', sans-serif;
  color: #000080;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 50px;
  margin-left: 70px;
}

/* Align heading with cards */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD GRID */
.cards {
  display: flex;
  justify-content: center; /* changed from flex-start to center */
  flex-wrap: wrap;
  gap: 25px;
  text-align: center;
}

/* INDIVIDUAL CARD */
.card {
  background-color: #a6a6a6;
  border-radius: 22px;
  padding: 15px 20px;
  width: 270px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

/* CARD IMAGE */
.card-img {
  background-color: #fff; /* white background */
  border: 8px solid #d9d9d9; /* light gray border */
  border-radius: 25px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-img img {
  width: 200px;
  height: 200px;
  object-fit: contain; /* keeps image proportional */
}

/* BUTTON STYLE */
.card-btn {
  font-family: 'Raleway', sans-serif;
  display: inline-block;
  background-color: #d4af37;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 25px;
  padding: 8px 18px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

/* HOVER EFFECT */
.card-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* TEXT CONTENT */
.card h3 {
  font-family: 'Montserrat', sans-serif;
  color: #000080;
  font-size: 1rem;
  margin-bottom: 10px;
}

.card-text {
  background-color: #d9d9d9; /* light gray background */
  display: inline-block; /* wraps only around the text */
  padding: 6px 10px; /* adds breathing space */
  border-radius: 10px; /* smooth corners */
  color: #000; /* keeps text readable */
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  width: 230px; /* fixed width */
  height: 120px; /* fixed height */
  word-wrap: break-word; /* ensures long text wraps inside */
}

.card p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333333;
}

/* ========================== */
/* RESPONSIVE FOR MOBILE <=768px */
/* ========================== */
@media (max-width: 768px) {
  /* SECTION */
  .what-we-do {
    text-align: center;
    padding: 60px 5%;
  }

  /* HEADINGS */
  .what-we-do h2,
  .what-we-do .subtitle {
    text-align: center;
    margin-left: 0;
  }

  .what-we-do h2 {
    font-size: 1.8rem;
  }

  .what-we-do .subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  /* CARD GRID */
  .cards {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  /* INDIVIDUAL CARD */
  .card {
    width: 90%;
    max-width: 300px;
  }

  /* CARD IMAGE */
  .card-img img {
    width: 150px;
    height: 150px;
  }

  /* CARD TEXT */
  .card-text {
    width: 90%;
    height: auto; /* allows text to expand */
    font-size: 0.85rem;
    margin: 0 auto;
  }

  /* BUTTON */
  .card-btn {
    font-size: 0.9rem;
    padding: 6px 14px;
  }
}








/* FEATURED PROJECTS SECTION */
.featured-projects {
  position: relative; /* Needed for overlay positioning */
  text-align: center;
  padding: 80px 8%;
  background: url("images/home-featured-project.png") no-repeat center center;
  background-attachment: fixed; /* Parallax effect */
  background-size: cover;
  min-height: 100vh; /* Full screen height */
  color: #000; /* Adjust text color if needed */
  overflow: hidden;
}

/* Overlay layer for soft visibility effect */
.featured-projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6); /* Light overlay — adjust opacity */
  z-index: 0;
}

/* Make sure content stays above the overlay */
.featured-projects * {
  position: relative;
  z-index: 1;
}

.featured-projects h2 {
  color: #000080;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  margin-left: 70px;
}

.featured-projects .subtitle {
   color: #000080;
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  margin-bottom: 50px;
  margin-left: 70px;
}



/* PROJECT LIST */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* PROJECT ITEM LAYOUT */
.project-item {
  display: flex;
  align-items: center;
  gap: 40px; /* keeps image and text almost touching */
  justify-content: center; /* center horizontally in container */
  margin: 0 auto; /* ensures item is centered */
}


/* Alternate sides for each project */
.project-item:nth-child(even) {
  flex-direction: row-reverse;
}
/* IMAGE CARD */
.project-card {
  flex: 0 0 auto; /* image keeps its natural size */
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 20); /* subtle shadow */
}


.project-card img {
  display: block;
  width: auto; /* natural width */
  height: 320px; /* consistent height */
  max-width: 100%; /* prevent overflow on smaller screens */
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.project-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 3px solid #001c80;
  transform: translateY(-5px);
}

.project-card:hover img {
  transform: scale(1.03);
}

/* CONTENT AREA */
.project-content {
  flex: 1 1 auto; /* take remaining space */
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding-left: 10px; /* optional tiny space */
  max-width: none; /* remove width restriction */
}

/* ALIGNMENTS */
.project-item:nth-child(odd) .project-content {
  text-align: left;
}

.project-item:nth-child(even) .project-content {
  text-align: right;
}

/* TITLE */
.project-title {
  color: #001c80;
  font-size: 1.8em;
   font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.project-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 3px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

.project-title:hover::after {
  width: 100%;
}

/* SUBTITLE */
.project-subtitle {
  color: #333333;
   font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

/* DESCRIPTION */
.project-content p {
   font-family: 'Open Sans', sans-serif;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* GOLD BUTTON */
.btn-gold {
   font-family: 'Raleway', sans-serif;
  display: inline-block;
  background-color: #d4af37;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 25px;
  padding: 8px 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  align-self: flex-start;
}

/* Align button properly for reversed layout */
.project-item:nth-child(even) .btn-gold {
  align-self: flex-end;
}

.btn-gold:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .featured-projects {
    text-align: center;
  }

  .featured-projects h2,
  .featured-projects .subtitle {
    text-align: center;
    margin-left: 0;
  }

  .project-item {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .project-item:nth-child(even) {
    flex-direction: column;
  }

  .project-content {
    text-align: center !important;
    margin: 0 auto;
    padding-left: 0; /* remove padding on small screens */
  }

  .btn-gold {
    align-self: center !important;
  }
  
}



/* CTA SECTION */
.cta-section {
  position: relative; /* needed for overlay */
  background-image: url('images/ready.png'); /* background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 30px 8%;
  color: #ffffff; /* ensures text is readable on image */
  overflow: hidden; /* ensures overlay stays inside */
}

/* Transparent overlay */
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* black overlay with 40% opacity */
  z-index: 0; /* behind content */
}

/* Make sure text is above overlay */
.cta-section h2,
.cta-buttons {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
   font-family: 'Montserrat', sans-serif;
  color: #ffffff; /* adjust if needed */
  font-size: 3rem;
  margin-bottom: 40px;
}

/* CTA BUTTONS CONTAINER */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-buttons a {
  display: inline-block;
  background-color: #001c80;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 25px;
  padding: 12px 30px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-buttons a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .cta-section {
    background-size: 150% auto; /* zoom more on mobile if needed */
    background-position: center; /* show the top part of image */
  }
}









/* MAIN FOOTER SECTION */
.footer-section {
  background-color: #ffffff; /* white background */
  color: #0a1f44; /* dark blue text for links */
  padding: 50px 8%;
  box-sizing: border-box;
}

/* Container for columns */
.footer-container {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px; /* space between logo and right column */
  max-width: 1200px;
  margin: 0 auto;
}

/* COLUMNS */
.footer-column {
  display: flex;
  flex-direction: column;
}

/* Logo column */
.logo-column {
  flex: 0 0 200px; /* fixed width */
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
}

/* Links column */
.links-column {
  flex: 0 0 700px; /* fixed width for right column */
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 40px; /* space from logo */
  text-align: left;
}

/* FOOTER LOGO */
.footer-logo {
  max-width: 150px;
  height: auto;
}

/* Titles with underline */
.footer-block h3 {
   font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: #000080; /* blue titles */
}

.footer-block h3::after {
  content: '';
  display: block;
  width: 190px;
  height: 3px;
  background-color: #d4af37;
  margin-top: 5px;
}

/* QUICK LINKS */
.quick-links {
  font-weight: bold;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}

.quick-links li a {
  font-family: 'Raleway', sans-serif;
  color: #0a1f44; /* dark blue links */
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.quick-links li a:hover {
  color: #d4af37;
}









/* SOCIAL ICONS CONTAINER */
.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: left;
}

/* INDIVIDUAL SOCIAL ITEM */
.social-item {
  position: relative;
  width: 50px;           /* icon size */
  height: 50px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  transition: width 0.4s ease; /* expand width smoothly on hover */
}

/* ICON IMAGE */
.social-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.4s ease;
}

/* HOVER DIV (Background + Text) */
.social-item .social-hover {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  transform: translateX(100%); /* start outside right */
  opacity: 0;                  /* hide initially */
  transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
  white-space: nowrap;
  padding: 0 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* soft shadow */
}

/* HOVER EFFECTS */
.social-item:hover img {
  opacity: 0; /* hide icon */
}

.social-item:hover {
  width: 140px;  /* expand width to show background + text */
  height: 50px;  /* keep height same */
}

.social-item:hover .social-hover {
   font-family: 'Raleway', sans-serif;
  transform: translateX(0); /* slide in from right */
  opacity: 1;               /* show background + text */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35); /* enhanced shadow on hover */
}

/* BRAND COLORS / GRADIENTS */
.social-item.facebook .social-hover {
  background: #1877f2; /* Facebook blue */
}

.social-item.messenger .social-hover {
  background: linear-gradient(135deg, #00c6ff, #0078ff); /* Messenger gradient */
}

.social-item.instagram .social-hover {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); /* Instagram gradient */
}

.social-item.tiktok .social-hover {
  background: linear-gradient(135deg, #010101, #69c9d0, #ee1d52); /* TikTok gradient */
}

.social-item.twitter .social-hover {
  background: #1da1f2; /* Twitter blue */
}

.social-item.youtube .social-hover {
  background: linear-gradient(135deg, #ff0000, #ff5500); /* YouTube gradient */
}

/* Mobile / smaller devices */
@media (max-width: 768px) {
  .social-icons {
    gap: 10px; /* smaller spacing between icons */
    justify-content: center;
  }

  .social-item {
    width: 40px;   /* smaller width */
    height: 40px;  /* smaller height */
  }

  .social-item img {
    width: 100%;
    height: 100%;
  }

  .social-item .social-hover {
    font-size: 0.9rem; /* smaller text on hover */
    padding: 0 8px;
  }
}













/* BOTTOM FOOTER */
.footer-bottom {
  width: 100%;
  font-family: 'Raleway', sans-serif;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  font-weight: 500;
  font-size: 1rem;
}


/* RESPONSIVE */
@media (max-width: 900px) {
   .cta-section h2 {
    font-size: 2rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .logo-column, .links-column {
    flex: auto;
    padding-left: 0;
  }

  .links-column {
    text-align: center;
  }

  .quick-links {
    justify-content: center;
    gap: 30px;
  }

  .social-icons {
    justify-content: center;
  }
  
}









/* === HERO HIGHLIGHT COLORS === */
.highlight-blue {
  color: #001c80;
  font-weight: 500;
}

.highlight-yellow {
  color: #d4af37;
  font-weight: 600;
}

.highlight-black {
  color: black;
  padding: 2px 6px;
  border-radius: 4px;
}
















/* CORE SERVICES SECTION */
.core-services {
  background-color: #f8f9fb;
  padding: 80px 8%;
  text-align: center;
}

.core-services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.core-services h2 {
  font-family: 'Montserrat', sans-serif;
  display: inline-block; /* make background wrap around text */
  font-size: 2.5rem;
  color: #001c80;
  background: #dedede;
  padding: 8px 16px; /* adds breathing space around text */
  border-radius: 25px; /* makes the corners rounded */
  margin-bottom: 10px;
}


.core-services .subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: black;
  margin-bottom: 50px;
}

.core-services .subtitle::after {
  content: "";
  display: block;
  width: 1000px; /* default for large screens */
  height: 2px;
  background-color: #d4af37;
  margin: 10px auto 0;
  border-radius: 2px;
}
/* CARD LAYOUT */
.core-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.core-card {
  background: #dedede;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px; /* increased from 250px to 300px */
  max-width: 250px; /* makes card slightly larger vertically */
  min-height: 300px; /* add this to make card taller */
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* keeps image, text, and button evenly spaced */
}

.core-card:hover {
  transform: translateY(-10px);
}


.core-card-img {
  background-color: #000080; /* blue background */
  border-radius: 20px;
  margin: 15px 15px 20px; /* slightly more outer space */
  padding: 10px; /* increased inner space */
  min-height: 120px; /* ensures a taller image box */
  display: flex;
  justify-content: center;
  align-items: center;
}

.core-card-img img {
  width: 150px;
  height: 200px;
  object-fit: contain;
}
/* BUTTON STYLE */
.core-card-btn {
  font-family: 'Raleway', sans-serif;
  display: inline-block;
  background-color: #000080;
  color: #fff;
  padding: 12px 0; /* top and bottom padding only */
  width: 220px; /* fixed width for all buttons */
  text-align: center; /* center text */
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
  white-space: nowrap; /* prevents wrapping if text is long */
}

.core-card-btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {

   .core-services h2 {
    font-size: 1.5rem;
    padding: 6px 12px;
    border-radius: 20px;
  }
   .core-services .subtitle::after {
    width: 300px;
  }
  .core-cards {
    flex-direction: column;
    align-items: center;
  }

  .core-card {
    width: 80%;
    max-width: 320px;
  }
}
















  .timeline-header {
    text-align: center;
      margin-top: 60px;
    margin-bottom: 40px; /* space between header and timeline */
  }

  .timeline-header h2 {
     font-family: 'Montserrat', sans-serif;
    color: #000080;      /* navy text */
    margin-bottom: 10px;
    font-size: 2.5rem;

  }

  .timeline-header hr {
    width: 700px;        /* line length */
    height: 2px;         /* line thickness */
    background-color: #d4af37; /* gold line */
    border: none;        /* remove default hr border */
    margin: 0 auto;      /* center the line */
    border-radius: 2px;  /* optional rounded edges */
  }





  .timeline {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  /* Center vertical line */
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #000000;
    transform: translateX(-50%);
    z-index: 1;
  }

  /* Each timeline event */
  .timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    position: relative;
    z-index: 2;
  }

  /* The circular dot */
  .timeline-item::before {
    content: "";
    position: absolute;
    top: 17%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #fff;
    border: 4px solid #000000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
  }

  /* ---- ARROW FROM DOT POINTING TO YEAR ---- */
  .timeline-item::after {
    content: "";
    position: absolute;
    top: 17%; /* same as dot */
    width: 50px; /* arrow length */
    height: 2px;
    background: #000000;
    z-index: 2;
  }

  /* Left side: arrow goes from dot → right */
  .timeline-item.left::after {
    left: calc(50% + 9px); /* starts just outside the dot */
  }

  /* Right side: arrow goes from dot → left */
  .timeline-item.right::after {
    right: calc(50% + 9px);
  }

  /* Triangle arrowheads */
  .timeline-item.left::after::after,
  .timeline-item.right::after::after {
    content: "";
    position: absolute;
    top: -4px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }

  .timeline-item.left::after::after {
    right: -8px;
    border-left: 8px solid #4CAF50;
  }

  .timeline-item.right::after::after {
    left: -8px;
    border-right: 8px solid #4CAF50;
  }

  /* ---------------------------------------- */

  /* Left-aligned layout */
  .timeline-item.left .timeline-image {
    justify-self: end;
    margin-right: 60px; /* adds gap between image and center line */
  }

  .timeline-item.left .timeline-content {
    text-align: left;
    padding-left: 70px;
  }

  /* Right-aligned layout */
  .timeline-item.right .timeline-image {
    justify-self: start;
    margin-left: 60px; /* adds gap between image and center line */
  }

  .timeline-item.right .timeline-content {
    text-align: right;
    padding-right: 70px;
  }

  /* Image styling */
  .timeline-image {
    width: 400px;          /* fixed container width */
    height: 300px;         /* fixed height for all images */
    border-radius: 10px;
    overflow: hidden;      /* ensures image doesn't overflow rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45); /* stronger visibility */
  }

  .timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* maintains aspect ratio and fills the box */
    display: block;        /* removes small gaps under images */
  }

  .timeline-content {
    margin-top: 15px;     /* space from the top edge of the container */
    padding: 10px 20px;   /* inner spacing: top/bottom 10px, left/right 20px */
  }

  /* Header inside content */
  .timeline-content h3 {
    font-family: 'Raleway', sans-serif;
    display: inline-block;
    font-size: 1.3rem;
    color: #fff;
    background: #000080;
    padding: 10px 40px;          /* horizontal and vertical padding */
    border-radius: 25px;         /* pill-like rounded corners */
    margin-bottom: 12px;         /* slightly bigger space after the heading */
    letter-spacing: 1px;
    text-align: center;
  }

  /* Paragraph text */
  .timeline-content p {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 500px;
    margin: 0;
  }

  /* Timeline list items (like paragraph) */
.timeline-content ul.timeline-list li {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;     /* matches your <p> font size */
  line-height: 1.5;      /* matches paragraph line height */
  max-width: 500px;      /* same as paragraph */
  margin: 0 0 10px 0;    /* small spacing between list items */
  word-wrap: break-word; /* prevent overflow */
}




  /* Highlighted gold text */
  .timeline-content .highlight {
    color: #d4af37;
    font-weight: bold;
    font-style: italic;
    padding: 2px 4px;
    border-radius: 4px;
  }

  /* Navy blue strong text */
  .timeline-content .navy {
    color: #000080;
  }

  /* Bold emphasized words (e.g., 300-seat, BPO) */
  .timeline-content .bold {
    color: #000080;                   /* pure black text for strong contrast */
    font-weight: 700;
    letter-spacing: 0.3px;
  }



@media (max-width: 768px) {
  /* Timeline container: Centers all items horizontally */
  .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Centers the timeline items themselves */
    gap: 40px;
    padding: 0 15px; /* Ensures content doesn't touch screen edges */
  }

  /* Timeline items stack vertically and are centered */
  .timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers image & content within the item */
    text-align: center;
    width:90%;
    max-width: 450px; /* Constrains the maximum width of the content block */
    margin: 0 auto;  /* Centers the block within the timeline */
    gap: 15px;
  }

  /* Remove dot and arrow */
  .timeline-item::before,
  .timeline-item::after {
    display: none;
  }

  /* Force image first and responsive */
  .timeline-image {
    order: 0;
    width: 90%;
    max-width: 400px;
    height: auto;
  }

  /* Timeline content */
  .timeline-content {
    max-width: 90%;
    order: 1;
    padding: 0 10px;  /* Added: extra horizontal padding for text */
    text-align: center;
    box-sizing: border-box;
  }

  /* Remove left/right alignment and ensure content centers */
  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content,
  .timeline-item.left .timeline-image,
  .timeline-item.right .timeline-image {
    margin: 0 auto; 
    justify-self: center;
    padding: 0;
  }

  /* Timeline content text adjustments */
  .timeline-content h3 {
    font-size: 1rem;    /* slightly smaller on mobile */
    padding: 8px 20px;    /* reduces horizontal padding while keeping pill shape */
    margin: 0 auto;
    box-sizing: border-box;
  }

  .timeline-content p {
    font-size: 1rem;       /* suitable for mobile readability */
    line-height: 1.6;      /* better spacing for text */
    max-width: 100%;
    margin: 0 auto;        /* centers the paragraph */
    word-wrap: break-word; /* prevent overflow */
  }

  /* Hide vertical line */
  .timeline::before {
    display: none;
  }

  /* Timeline header adjustments */
  .timeline-header hr {
    width: 150px;
    height: 2px;
    margin: 10px auto; /* Centered */
  }

  .timeline-header h2 {
    font-size: 1.5rem; /* slightly smaller on mobile */
  }

  /* Hide timeline dot and arrows */
  .timeline-item::before,
  .timeline-item::after,
  .timeline-item.left::before,
  .timeline-item.right::before,
  .timeline-item.left::after,
  .timeline-item.right::after {
    display: none !important;
  }

  /* Optional: Remove list bullets inside timeline content */
  .timeline-content ul {
    list-style: none; /* removes default bullets */
    padding-left: 0;  /* ensures it aligns with the text */
    margin-left: 0;   /* avoids extra indentation */
  }

  .timeline-content ul li {
    position: relative;
    padding-left: 0;  /* no extra padding for items */
  }
 .timeline-content ul.timeline-list li {
    max-width: 100%;  /* fit mobile width */
    font-size: 1rem;  /* slightly smaller for mobile */
    line-height: 1.6; /* better readability */
    margin-bottom: 8px;
  }

}









/* ============================== */
/* PORTFOLIO HERO SECTION */
/* ============================== */
.portfolio-hero-section {
  background: url("images/portfolio-bg.png") no-repeat center center / cover;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Stack grid and buttons vertically */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  min-height: 100vh; /* Full height */
  padding: 0 8%;
  margin-top: 0;
  box-sizing: border-box;
}

/* Overlay layer for soft contrast */
.portfolio-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7); /* adjust 0.7 → 0.5 for darker overlay */
  z-index: 0;
}

/* Keep content above overlay */
.portfolio-hero-container,
.portfolio-hero-section .hero-buttons {
  position: relative;
  z-index: 1;
}

/* GRID LAYOUT */
.portfolio-hero-section .portfolio-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  width: 100%;
}

/* HERO BUTTONS */
.portfolio-hero-section .hero-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

/* TEXT AREA */
.portfolio-hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
}

.portfolio-hero-line {
  width: 600px;
  height: 2px;
  background-color: #d4af37;
  border: none;
  margin: 0 auto 25px auto;
}

.portfolio-hero-text p {
    font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: justify;
  color: #000;
  margin-bottom: 25px;
}

/* IMAGE AREA */
.portfolio-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* BUTTON ARROW ANIMATION */
.btn-yellow .arrow {
  display: inline-block;
  transform: rotate(90deg);
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-yellow:hover .arrow {
  transform: rotate(90deg) translateY(4px);
}

/* ============================== */
/* RESPONSIVE — 768px AND BELOW */
/* ============================== */
@media (max-width: 768px) {
  .portfolio-hero-section {
    padding: 60px 6%;
    min-height: auto; /* prevents large empty space */
     padding-top: 120px;
  }

  .portfolio-hero-section .portfolio-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .portfolio-hero-text h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .portfolio-hero-line {
    width: 60%;
    margin: 0 auto 25px auto;
  }

  .portfolio-hero-text p {
    text-align: center;
    font-size: 1.1rem;
  }

  .portfolio-hero-image {
    margin-top: 20px;
  }

  .portfolio-hero-section .hero-buttons {
    margin-top: 30px;
  }
}











  /* ============================== */
  /* PROJECT HIGHLIGHTS SECTION */
  /* ============================== */

  .project-highlights {
    padding: 80px 8%;
    background-color: #ffffff;
  }

  .project-highlights .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .project-highlights .section-header h2 {
     font-family: 'Montserrat', sans-serif;
    background-color: #dedede;
    display: inline-block;
    padding: 10px 20px;
    color: #000080;
    font-size: 2rem;
    border-radius: 20px;
  }

  .project-highlights .section-header p {
     font-family: 'Raleway', sans-serif;
     font-weight: 500;
    font-size: 1.5rem;
    color: black;
    margin-top: 10px;
  }

  /* ============================== */
  /* GRID STRUCTURE */
  /* ============================== */
  .highlight-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
    margin-bottom: 80px;
    
    
  }

  /* REVERSE LAYOUT */
  .highlight-item.reverse {
    grid-template-columns: 1fr 1fr;
    align-items: start; 
  }

  .highlight-item.reverse .highlight-image {
    order: 2;
  }

  .highlight-item.reverse .highlight-info {
    order: 1;
    text-align: right;
    display: block;
    flex-direction: column;
    align-items: flex-end;
  }

  /* ============================== */
  /* IMAGE + THUMBNAILS */
  /* ============================== */
  .highlight-image {
    display: flex;
    flex-direction: column;
    
  }

  /* ✅ Image positioning */
  .highlight-item:not(.reverse) .highlight-image {
    align-items: flex-end; /* move right when on the left */
  }

  .highlight-item.reverse .highlight-image {
    align-items: flex-start; /* move left when on the right */
  }

.highlight-image img {
  width: 100%;
  max-width: 480px;
  height: 360px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25); /* stronger shadow on hover */
  /* fade effect */
  transition: opacity 0.3s ease-in-out;
  opacity: 0.7;
}



  /* THUMBNAILS BELOW MAIN IMAGE */
  .thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: nowrap;
    max-width: 480px;
  }

  /* ✅ Align thumbnails same direction as image */
  .highlight-item:not(.reverse) .thumbnail-gallery {
    justify-content: flex-end; /* right-aligned */
  }

  .highlight-item.reverse .thumbnail-gallery {
    justify-content: flex-start; /* left-aligned */
  }

  .thumbnail-gallery .thumb {
    width: 18%;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .thumbnail-gallery .thumb:hover {
    transform: scale(1.1);
    opacity: 0.8;
  }

  .thumb.active-thumb {
    outline: 2px solid #000080;
    opacity: 0.9;
  }
  /* ============================== */
  /* INFO BOX */
  /* ============================== */
  /* Base highlight-info */
.highlight-info {
  background-color: #f4f6fc;
  padding: 20px 25px;
  border-radius: 10px;
  width: 100%;      /* fills its grid column */
  max-width: 550px; /* optional: limit width so it doesn't stretch too much */
  min-height: 350px;
  margin: 0;        /* remove auto centering */
}

/* Normal layout: image left, info right */
.highlight-item:not(.reverse) .highlight-info {
  margin-left: 0;   /* stick to left of its column */
  margin-right: auto;
}

/* Reverse layout: image right, info left */
.highlight-item.reverse .highlight-info {
  margin-left: auto; /* stick to right of its column */
  margin-right: 0;
  text-align: right; /* optional: align text to right for consistency */
}

  .highlight-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: #000080;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .highlight-info hr {
    border: none;
    border-top: 2px solid #000080;
    margin: 10px 0;
  }

  .highlight-info .location {
     font-family: 'Raleway', sans-serif;
    color: #000080;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 700;
  }

  .highlight-details p {
  font-family: 'Open Sans', sans-serif;
    color: #000;
    margin-bottom: 5px;
  }

  .project-btn {
  font-family: 'Raleway', sans-serif;
  background-color: #d4af37; /* gold/yellow */
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  font-size: 0.7rem;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  margin: 15px auto 0; /* top margin + horizontal auto to center */
  border: none;
  cursor: pointer;
}

.project-btn:hover {
  background-color: #b8962f; /* darker gold */
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}










@media (max-width: 900px) {
  .highlight-item {
    display: flex;
    flex-direction: column; /* stack vertically */
    overflow-x: hidden;      /* prevent horizontal scroll of main container */
    gap: 20px;
    margin-bottom: 40px;
  }

  /* Image area first */
  .highlight-image {
    order: 1;          
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .highlight-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: opacity 0.3s ease-in-out;
  }

  /* Make thumbnails scrollable for all highlight-items */
  .highlight-item .thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 5px;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .highlight-item .thumbnail-gallery::-webkit-scrollbar {
    display: none; /* hide scrollbar */
  }

  .highlight-item .thumbnail-gallery .thumb {
    flex: 0 0 auto;
    width: 40%;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.3s ease, opacity 0.3s ease, border 0.3s ease;
  }

  .highlight-item .thumbnail-gallery .thumb.active {
    border: 2px solid #001c80;
  }

  /* Description area below image */
  .highlight-info {
    order: 2;          
    width: 100%;
    max-width: 100%;
    text-align: left;  
    margin: 0;
  }

  /* Override reverse layout for mobile stacking */
  .highlight-item.reverse .highlight-info {
    text-align: left;
    order: 2;
  }
}











/* ===== OUR DEVELOPMENT JOURNEY SECTION ===== */
.development-journey {
  padding: 80px 8%;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff, #f8faff);
}

/* Section Header */
.development-journey h2 {
   font-family: 'Montserrat', sans-serif;
  background-color: #d9d9d9;
  color: #000080;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.development-journey .subtitle {
   font-family: 'Raleway', sans-serif;
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 50px;
  font-weight: 500;
}

/* Cards Container */
.journey-cards {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Gradient Vertical Progress Line */
.progress-line {
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: linear-gradient(to bottom, #004aad, #e385ec);
  box-shadow: 0 0 6px rgba(0,74,173,0.3);
  border-radius: 10px;
  z-index: 0;
}

/* Moving Dot */
.moving-dot {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #000;
  animation: moveDown 6s ease-in-out infinite, pulse 1.5s ease-in-out infinite;
  z-index: 2;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* Dot Animations */
@keyframes moveDown {
  0% { top: -10px; }
  100% { top: calc(100% - 10px); }
}
@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.3); }
}

/* Journey Card */
.journey-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #dedede;
  border-radius: 20px;
  padding: 30px;
  gap: 30px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  height: 170px;
  position: relative;
  z-index: 2;
  border: 2px solid #e6e6e6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Circular Image */
.journey-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Text Content */
.journey-content {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Stage Title */
.stage-title {
   font-family: 'Raleway', sans-serif;
  background-color: #f4f6fc;
  color: #000080;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  width: 100%;
}

/* Stage Description */
.stage-desc {
    font-family: 'Open Sans', sans-serif;
  background-color: #f4f6fc;
  border-radius: 12px;
  padding: 12px 18px;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  width: 100%;
}


/* =============================== */
/* RESPONSIVE DESIGN (≤ 768px) */
/* =============================== */
@media (max-width: 768px) {
  .development-journey {
    padding: 60px 6%;
  }

  .development-journey h2 {
    font-size: 1.5rem;
    padding: 8px 20px;
  }

  .development-journey .subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .journey-cards {
    max-width: 90%;
    gap: 40px;
  }

  .progress-line {
    width: 3px;
    top: 40px;
    bottom: 40px;
  }

  .moving-dot {
    width: 12px;
    height: 12px;
    top: -8px;
  }

  .journey-card {
    padding: 20px;
    height: 150px;
    gap: 20px;
    border-radius: 16px;
  }

  .journey-image img {
    width: 90px;
    height: 90px;
  }

  .stage-title {
    font-size: 0.9rem;
    padding: 8px 14px;
  }

  .stage-desc {
    font-size: 0.65rem;
    padding: 10px 14px;
  }
}































/* ============================== */
/* PROPERTY FILTER HEADER SECTION */
/* ============================== */
.property-filter-header {
  position: relative; /* Needed for overlay positioning */
  background: url("images/featured-project.png") center/cover no-repeat;
  color: #fff;
  padding: 60px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Transparent overlay */
.property-filter-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* stronger overlay for readability */
  z-index: 1;
}

/* Ensure all content is above the overlay */
.property-filter-header * {
  position: relative;
  z-index: 2;
}

/* Layout container */
.filter-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  flex-wrap: nowrap;
}

/* Title styling */
.header-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  max-width: 1000px;
  color: #fff;
  line-height: 1.3;
  text-align: center; /* aligned to the right for visual balance */
  margin: 0;
}

/* Right-side layout */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Filter control container */
.filter-controls {
  
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

/* Input & Select fields */
.filter-controls input,
.filter-controls select {
   font-family: 'Open Sans', sans-serif;
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  width: 220px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Hover & Focus effects */
.filter-controls input:hover,
.filter-controls select:hover,
.filter-controls input:focus,
.filter-controls select:focus {
  color: #000080;
  box-shadow: 10px 10px 20px rgba(0, 64, 160, 0.45);
  transform: translateY(-2px);
  outline: none;
}

/* Placeholder color */
.filter-controls input::placeholder {
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .filter-header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-left h2 {
    font-size: 22px;
    max-width: 100%;
    text-align: center;
  }

  .filter-controls {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .filter-controls input,
  .filter-controls select {
    width: 100%;
  }
}





/* ============================== */
/* PROPERTY GRID */
/* ============================== */
.property-list {
  padding: 60px 8%;
  background-color: #f9f9f9;
  text-align: center;
}

.property-list h2 {
   font-family: 'Montserrat', sans-serif;
  background-color: #dedede;
  color: #000080;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 20px;
  margin-bottom: 40px;
  font-size: 2rem;
}

/* Grid Layout */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* ============================== */
/* CARD STYLE */
/* ============================== */
.property-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  width: 330px;
  height: auto; /* allow content to fit dynamically */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* ============================== */
/* IMAGE CONTAINER */
/* ============================== */
.image-container {
  width: 280px;             /* fixed square width */
  height: 280px;            /* fixed square height */
  margin: 20px auto 10px;   /* top & bottom spacing */
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f4f4; /* fallback background */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.image-container img {
  width: 90%;
  height: 90%;
  object-fit: cover;         /* prevents stretching */
  display: block;
  border-radius: 10px;
}

/* ============================== */
/* PROPERTY INFO */
/* ============================== */
.property-info {
  padding: 10px 20px 20px;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.property-info h3 {
    font-family: 'Raleway', sans-serif;
  background-color: #dedede;
  color: #000080;
  font-size: 15px;
  font-weight: 800;
  padding: 10px 0;
  margin: 10px 0;
  border-radius: 10px;
}

.property-info p {
   font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  margin: 5px 0;
}

.property-info p strong {
  font-weight: 700;
  color: #000;
}

/* ============================== */
/* BUTTON STYLE */
/* ============================== */
.view-details,
.project-btn {
  font-family: 'Raleway', sans-serif;
  background-color: #d4af37; /* gold/yellow */
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  font-size: 0.8rem;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  margin: 15px auto 20px;
  border: none;
  cursor: pointer;
}

.view-details:hover,
.project-btn:hover {
  background-color: #b8962f;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ============================== */
/* RESPONSIVE DESIGN */
/* ============================== */
@media (max-width: 900px) {
  .property-grid {
    grid-template-columns: 1fr;
  }

  .property-card {
    width: 100%;
    max-width: 400px;
  }

  .image-container {
    width: 280px;
    height: 280px; /* stays square on smaller screens */
  }

  .property-info h3 {
    font-size: 16px;
  }
}




/* ============================== */
/* MODAL */
/* ============================== */
.modal {
  display: none; /* keep hidden until opened */
  position: fixed;
  inset: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay */
  align-items: center;   /* center vertically */
  justify-content: center; /* center horizontally */
    overflow-y: auto;
}

/* ============================== */
/* MODAL CONTENT */
/* ============================== */
.modal-content {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  padding: 25px;
  width: 90%;
  line-height: 25px;
  max-width: 700px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
  margin: 0; /* ensures perfect centering */
    max-height: 60vh; /* limit height to viewport */
  overflow-y: auto; /* enable scrolling inside modal */

}

.modal-title {
  font-family: 'Montserrat', sans-serif;
  color: #001c80;
  font-weight: 600;
}

.modal-content h4{
  font-family: 'Raleway', sans-serif;
  color: #001c80;
  font-weight: 600;

}




/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 25px;
  cursor: pointer;
  color: #000080;
  background: transparent;
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s ease;
}

/* Hover Effect: Blue Circle */
.close:hover {
  background-color: rgba(0, 64, 160, 0.15); /* light blue circle */
  color: #000080; /* navy blue icon */
  transform: scale(1.1);
}

/* Active (when clicked) */
.close:active {
  background-color: rgba(0, 64, 160, 0.25); /* darker blue */
  transform: scale(0.95);
}

/* Title */
#modalDetails h3 {
  margin-top: 0;
  color: #001c80;
}

/* Optional smooth fade-in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .modal {
    align-items: flex-start; /* start from top */
    padding-top: 90px;       /* adjust to avoid nav height */
  }

  .modal-content {
    max-height: calc(90vh - 60px); /* subtract nav height */
  }
}






/* ============================== */
/* CONTACT SECTION */
/* ============================== */
.contact-section {
  padding: 80px 8%;
  background: url("images/contact-bg.png") no-repeat center center/cover;
  position: relative;
  color: #fff;
    scroll-margin-top: 100px; /* helps when navigating via anchor links */
  padding-top: 130px; /* adjust based on actual navbar height */
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* overlay for text contrast */
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

/* LEFT SIDE TEXT */
.contact-text {
  flex: 1;
  min-width: 300px;
  color: #fff;
}

.contact-text h2 {
   font-family: 'Montserrat', sans-serif;
  margin-top: 100px;
  margin-bottom: 10px;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-text p {
  margin-bottom: 40px;
  color: #f1f1f1;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
}

/* ============================== */
/* ENHANCEMENTS - LEFT SIDE TEXT */
/* ============================== */

.contact-text {
  position: relative;
  flex: 1;
  min-width: 300px;
  color: #fff;
}

.contact-text .underline {
  width: 60px;
  height: 4px;
  background-color: #d4af37;
  margin: 10px 0 20px;
  border-radius: 2px;
}

.contact-text .tagline {
   font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #f5d76e;
  margin-bottom: 25px;
}

.contact-text p{
  font-family: 'Open Sans', sans-serif;
}

.contact-info {
  margin-top: 40px;
   font-size: 1rem;
}

.contact-info p {
  font-family: 'Open Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #f1f1f1;
  margin-bottom: 10px;
}

.contact-info img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}


/* ============================== */
/* FORM STYLING */
/* ============================== */
form#contactForm {
  flex: 1.2;
  min-width: 350px;
  text-align: left;
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-group {
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid #000;
  font-size: 0.85rem;
  background-color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #000080;
}

textarea {
  resize: vertical;
  min-height: 60px;
}



/* BUTTON */
.btn-submit {
  font-family: 'Raleway', sans-serif;
  background-color: #d4af37;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 20px auto 0;
}

.btn-submit:hover {
  background-color: #b8962f;
  transform: scale(1.05);
}

/* ============================== */
/* RESPONSIVE DESIGN */
/* ============================== */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 6%;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-text {
    text-align: center;
  }

  .contact-text h2 {
    font-size: 1.6rem;
    padding: 10px;
  }

  .contact-text p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  form#contactForm {
    width: 100%;
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.25);
    padding: 20px;
    border-radius: 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.8rem;
    padding: 10px 12px;
  }

  .btn-submit {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  .contact-text .underline {
    margin: 0 auto 15px;
  }
  .contact-text .tagline {
    font-size: 0.9rem;
  }
  .contact-info {
    margin-top: 25px;
    text-align: center;
  }
  .contact-info p {
    justify-content: center;
  }
}






/* ============================== */
/* BOOK A CONSULTATION SECTION */
/* ============================== */
.consultation-section {
  padding: 80px 8%;
  background: url("images/book-a-consultation.png") no-repeat center center/cover;
  text-align: center;
  position: relative;
  color: #fff;
}

.consultation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* overlay for text contrast */
  z-index: 1;
}

.consultation-section .container {
  position: relative;
  z-index: 2;
}

.consultation-section h2 {
    font-family: 'Montserrat', sans-serif;
  color: #fff;
  margin-bottom: 5px;
  margin-top: 30px;
  font-size: 2.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.consultation-section p {
  font-family: 'Raleway', sans-serif;
  margin-bottom: 40px;
  color: #f1f1f1;
  font-size: 1.3rem;
}

















/* ============================== */
/* FORM STYLING */
/* ============================== */
form#consultationForm {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background: rgba(255, 255, 255, 0.15 );
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.form-group {
  
  margin-bottom: 20px;
}

.form-group label {
   font-family: 'Open Sans', sans-serif;
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
   font-family: 'Open Sans', sans-serif;
  width: 100%;
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid #000;
  font-size: 0.8rem;
  background-color: rgba(255,255,255,0.85);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #000080;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* ✅ even spacing between checkboxes */
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 6px; /* ✅ small space between checkbox and text */
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  margin: 0; /* remove uneven margins */
}

textarea {
  resize: vertical;
  min-height: 60px;
}

.btn-submit {
  background-color: #d4af37;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 20px auto 0;
}

.btn-submit:hover {
  background-color: #b8962f;
  transform: scale(1.05);
}



/* ============================== */
/* RESPONSIVE DESIGN (Below 768px) */
/* ============================== */
@media (max-width: 1024px) {
  form#consultationForm {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.25); /* semi-transparent only */
  }
  .consultation-section {
    padding: 60px 6%;
  }

  .consultation-section h2 {
    font-size: 1.5rem;
    padding: 20px;
  }

  .consultation-section p {
    font-size: 0.80rem;
    margin-bottom: 30px;
  }

  form#consultationForm {
    padding: 20px;
    border-radius: 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.70rem;
    padding: 10px 12px;
  }

  .btn-submit {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
   /* Make PROPERTY TYPE align vertically */
.checkbox-group {
  display: flex;
  flex-direction: column; /* vertical stack */
  align-items: flex-start; /* align to the left */
  gap: 8px; /* spacing between checkboxes */
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 6px; /* space between box and text */
  font-size: 0.85rem;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  height: auto;
  margin: 0;
}

}






/* CAPTCHA wrapper: centers the iframe */
.captcha-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

/* Scale the reCAPTCHA for smaller devices */
@media (max-width: 768px) {
  .captcha-wrapper {
    transform: scale(0.85);        /* shrink slightly on tablets */
    transform-origin: center;
  }
}

@media (max-width: 480px) {
  .captcha-wrapper {
    transform: scale(0.7);         /* shrink more on mobile phones */
    transform-origin: center;
  }
}























.login-container {
  display: flex;
  height: 100vh;
}

.login-left {
  flex: 0 0 30%;
  background: linear-gradient(to top, #000080, #2a72f0);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.login-left h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.login-left p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
}

.login-right {
  flex: 0 0 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  padding: 20px;
}

.login-form {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.login-form h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
  font-size: 2.2rem;
  color: #333;
}

.login-form p {
  font-family: 'Raleway', sans-serif;
  margin-bottom: 25px;
  color: #666;
  font-size: 1.1rem;
}

/* Input group with flexbox for icon alignment */
.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  width: 100%;
}

.input-group label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #333;
  text-align: left;
  width: 100%;
  position: relative;
}

/* Required icon using pseudo-element */
.input-group label::after { 
  color: red;
  font-size: 0.85rem;
  margin-left: 4px;
  vertical-align: middle;
}

/* Wrapper for icon + input */
.input-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 0 12px;
  box-sizing: border-box;
}

.input-wrapper img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  object-fit: contain;
}

.input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  padding: 12px 0;
  background: transparent;
  box-sizing: border-box;
}

.login-btn {
  font-family: 'Raleway', sans-serif;
  width: 50%;
  padding: 14px;
  background: #000080;
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  margin-top: 10px;
}

.login-btn:hover {
  transform: scale(1.1);
  background: #2575fc;
}

.form-options {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
}

.form-options .remember-me {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-options input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #000080;
  cursor: pointer;
}

.form-options .forgot-password {
  text-decoration: none;
  color: #2575fc;
  transition: color 0.3s;
}

.form-options .forgot-password:hover {
  color: #6a11cb;
}

/* ----- RESPONSIVE BREAKPOINTS ----- */

/* Smaller laptops (1024px) */
@media(max-width: 1024px){
  .login-left { flex: 0 0 35%; padding: 30px 25px; }
  .login-left h1 { font-size: 2.5rem; }
  .login-left p { font-size: 1.05rem; }
  .login-right { flex: 0 0 65%; margin-top: -10vh; padding: 0 25px 20px; }
  .login-form { max-width: 380px; }
}

/* Tablets/iPads (768px - 1024px) */
@media(max-width: 768px){
  .login-container { flex-direction: column; }
  .login-left { width: 100%; height: 45vh; padding: 30px 20px; text-align: center; }
  .login-left h1 { font-size: 2rem; }
  .login-left p { font-size: 1rem; }
  .login-right { width: 100%; margin-top: -10vh; padding: 0 20px 20px; background: transparent; align-items: flex-start; }
  .login-form { max-width: 340px; padding: 30px 20px; width: 90%; }
  .login-form h2 { font-size: 1.8rem; }
  .login-form p { font-size: 1rem; }
  .input-wrapper input { font-size: 1rem; padding: 10px 0; }
  .login-btn { width: 60%; font-size: 1rem; padding: 12px; }
  .form-options { font-size: 0.9rem; }
}

/* Mobile landscape (576px - 768px) */
@media(max-width: 576px){
  .login-left { height: 40vh; padding: 25px 15px; }
  .login-left h1 { font-size: 1.8rem; }
  .login-left p { font-size: 0.95rem; }
  .login-right { margin-top: -10vh; padding: 0 15px 15px; }
  .login-form { max-width: 300px; padding: 25px 15px; width: 95%; }
  .login-form h2 { font-size: 1.6rem; }
  .login-form p { font-size: 0.95rem; }
  .input-wrapper input { font-size: 0.95rem; padding: 9px 0; }
  .login-btn { width: 65%; font-size: 0.95rem; padding: 11px; }
  .form-options { font-size: 0.85rem; }
}

/* Mobile portrait (below 480px) */
@media(max-width: 480px){
  .login-left { height: 35vh; padding: 20px 10px; }
  .login-left h1 { font-size: 1.5rem; }
  .login-left p { font-size: 0.9rem; }
  .login-right { margin-top: -10vh; padding: 0 10px 10px; }
  .login-form { max-width: 280px; padding: 20px 10px; width: 95%; }
  .login-form h2 { font-size: 1.4rem; }
  .login-form p { font-size: 0.9rem; }
  .input-wrapper input { font-size: 0.9rem; padding: 8px 0; }
  .login-btn { width: 70%; font-size: 0.95rem; padding: 10px; }
  .form-options { font-size: 0.8rem; }
}







/* ------------------------------
   HEADER / NAVBAR (LOGOUT + SEARCH + NOTIFICATIONS)
------------------------------ */
.admin-header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    padding: 32px 8%;          /* match navbar padding */
    background-color: #001c80; /* same as navbar */
    color: #fff;
    flex-wrap: wrap;
}


/* ------------------------------
   SEARCH BAR
------------------------------ */
.search-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    padding: 6px 30px 6px 10px; /* leave space for icon inside */
    border-radius: 15px;
    border: 1px solid #fff;
    font-size: 14px;
    background-color: #2a2a2a;
    color: #fff;
}
.search-input::placeholder {
    color: #fff;
    opacity: 1;
}

.search-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.icon {
    width: 24px;
    height: 24px;
    color: #fff;
}

/* ------------------------------
   NOTIFICATION BELL + DROPDOWN
------------------------------ */
.notification-container {
    position: relative;
}
.notification-bell-wrapper {
    cursor: pointer;
    display: flex;          /* allow proper click area */
    align-items: center;
    position: relative;
    pointer-events: auto;   /* ensure clickable */
    z-index: 100;
}

.notification-bell {
    width: 24px;
    height: 24px;
    color: #fff;
        pointer-events: none;   
}

/* Notification count badge */
.notification-count {
   font-family: 'Raleway', sans-serif;
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
}

/* Dropdown menu styling */
.notification-dropdown {
    display: none;
    position: fixed;  /* <-- ensures it floats above everything */
    top: 70px;        /* adjust based on header height */
    right: 50px;      /* align with bell */
    background-color: #fff;
    width: 300px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    transition: all 0.2s ease-in-out;
}

.notification-dropdown.show {
    display: block;
}

.notification-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notification-item {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    transition: background 0.2s;
}
.notification-item:hover {
    background-color: #f5f5f5;
}


/* Type label styling */
.notification-item strong {
   font-family: 'Montserrat', sans-serif;
    display: block;
    color: #007bff;   /* blue for type */
    font-size: 13px;
}

/* Title styling */
.notification-item span {
    font-family: 'Raleway', sans-serif;
    color: #333;
    margin-bottom: 2px;
}

/* Message styling */
.notification-item small {
  font-family: 'Open Sans', sans-serif;
    display: block;
    color: #666;
    font-size: 12px;
}

.notification-item:last-child {
    border-bottom: none;
}

/* Placeholder when no notifications */
.no-notif {
    font-family: 'Montserrat', sans-serif;
    padding: 10px;
    text-align: center;
    font-style: italic;
    color: #888;
}
.modal-table {
    font-family: 'Open Sans', sans-serif;
    border-collapse: collapse;
    width: 100%;
    margin: 10px 0;
    overflow-x: auto;
    display: block;
}

.modal-table th,
.modal-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.modal-table th {
    background-color: #f2f2f2;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.modal-name {
    color: #007BFF;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
}

.modal-purpose {
    color: #007BFF;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 10px;
}





/* ------------------------------
   LOGOUT BUTTON
------------------------------ */
.logout-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    transition: color 0.2s;
}
.logout-btn:hover {
    color: #f00;
}

/* ------------------------------
   RESPONSIVE HEADER
------------------------------ */
@media screen and (max-width: 768px) {
    .admin-header {
        justify-content: space-between;
        padding: 15px 20px;
    }
    .search-container {
        flex: 1 1 100%;
        margin-bottom: 10px;
    }
}



/* ------------------------------
   INFO CARDS SECTION
------------------------------ */
.info-cards-section {
    display: flex;
    justify-content: center;
    margin: 40px 0 20px 0;
}

.info-cards-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap; /* allows wrapping on smaller screens */
    justify-content: center;
}

.info-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* pins content to top */
    align-items: center;
    width: 180px;
    height: 120px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    padding: 10px 0;
}
.info-card:hover {
    transform: scale(1.05);
}

.metric-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
     text-align: center;

}

.metric-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin: 5px 0 0 0;
    text-align: center;
}


/* Wrapper for card + title */
.info-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* space between card and title */
}

/* Card titles below the cards */
.info-card-title {
  font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.title-blue { color: #004aad; }
.title-green { color: #2e6417; }
.title-yellow { color: #e2b808; }
.title-red { color: #7a0000; }



/* Individual card colors */
.card-blue { background-color: #004aad; }
.card-green { background-color: #2e6417; }
.card-yellow { background-color: #e2b808; color: #000; } /* dark text for contrast */
.card-red { background-color: #7a0000; }













/* ------------------------------
   PAGE TITLE + SUBTITLE
------------------------------ */
.admin-page-title {
    text-align: center;
    margin-top: 40px;
}

.admin-page-title h1 {
  font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: black;
    margin-bottom: 5px;
}

.admin-page-title p {
     font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: black;
    margin-top: 0;
}

/* ------------------------------
   MAIN SECTION CONTAINER
------------------------------ */
.admin-section {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.admin-buttons {
    display: flex;
    flex-direction: row; /* vertical alignment */
    gap: 35px;
    align-items: center;
}

/* ------------------------------
   CARD BUTTONS
------------------------------ */
.admin-card {
    background: #00206B;
    width: 260px;
    padding: 25px 20px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    box-shadow: 0px 6px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Wrapper to stack button + description */
.admin-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* space between button and description */
}

/* Optional: smaller text inside button (Consultation / Contact) */
.card-inner-text {
     font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

.admin-card:hover {
     transform: scale(1.1);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.25);
}

.admin-icon {
    width: 100px;
    height: 100px;
}

/* Card text for bold + italic titles */
.card-title {
   font-family: 'Raleway', sans-serif;
    margin-top: 12px;
    font-size: 15px;
    font-weight: bold;
    font-style: italic;
    color: #001c80;
}

/* ------------------------------
   RESPONSIVE (TABLET & MOBILE)
------------------------------ */
@media (max-width: 768px) {
    .admin-buttons {
        gap: 25px;
    }

    .admin-card {
        width: 80%;
        max-width: 320px;
    }

    .admin-page-title h1 {
        font-size: 22px;
    }
}









/* ============ HEADER BAR FOR SHOWING DATA PAGES ============ */
.show-header {
    width: 100%;
    background: #001c80;
    padding: 25px 8%;           /* match navbar and admin-header */
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
}

.back-btn img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.back-btn img:hover {
    transform: scale(1.1);
}

/* ============ TABLE CONTAINER ============ */
.table-container {
    width: 80%;
    margin: 60px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow-x: auto;
}

/* ============ TABLE STYLE ============ */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.styled-table thead tr {
    font-family: 'Raleway', sans-serif;
    background-color: #001c80;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    font-family: 'Open Sans', sans-serif;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

.styled-table tbody tr {
    background-color: #ffffff;
    transition: 0.2s ease-in-out;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f6ff;
}

.styled-table tbody tr:hover {
    background-color: #e6ecff;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .show-header h2 {
        font-size: 18px;
    }

    .table-container {
        padding: 15px;
    }

    .styled-table th,
    .styled-table td {
        padding: 10px;
    }
}

/* ============ PAGINATION ============ */
.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pag-btn {
    font-family: 'Montserrat', sans-serif;
    background-color: #001c80;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.pag-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.pag-btn.active {
    background-color: #ff0000;
}

.pag-btn.disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* ============ TABLE HEADER + SEARCH BAR ============ */
.table-header-container {
    display: flex;
    flex-direction: column;
    gap: 10px; /* space between top and bottom rows */
    margin-bottom: 15px;
}

.table-top-row,
.table-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-top-row .left-side,
.table-bottom-row .left-side,
.table-top-row .right-side,
.table-bottom-row .right-side {
    display: flex;
    align-items: center;
}

/* Contact Form Title */
.table-top-row h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin: 0;
}

/* Search Input */
.table-search-input {
    font-family: 'Open Sans', sans-serif;
    padding: 6px 10px;
    border-radius: 15px;
    border: 1px solid #000;
    font-size: 12px;
    color: black;
    width: 250px; /* fixed length */
}

.table-search-input::placeholder {
    color: black;
    opacity: 1;
}

/* Selected Count */
.selected-count {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #555;
}

/* Delete Icon Button */
.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    padding: 0;
}

.delete-btn img {
    width: 24px;
    height: 24px;
}

.delete-btn:hover img {
    opacity: 0.7;
}

/* Highlight selected table rows and bottom row */
.row-selected,
.table-bottom-row.selected {
    background-color: rgba(255, 0, 0, 0.2) !important; /* semi-red */
}
/* Make Edit column narrow */
.edit-col {
    width: 50px;        /* <<< adjust size here */
    max-width: 50px;
    text-align: center;
    white-space: nowrap;
}

/* Button styling */
.edit-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
}

/* Icons */
.edit-icon {
    width: 18px;        /* slightly reduced */
    height: 18px;
    opacity: 0.6;
    transition: 0.2s ease;
}

.edit-btn:hover .edit-icon {
    opacity: 1;
}

.save-icon {
    width: 20px;
    height: 20px;
}

/* ===============================
   EDIT MODAL (Centered Popup)
=============================== */
.edit-modal {
    display: none;                 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* Modal content box */
.edit-modal-content {
    background: #fff;
    padding: 25px 30px;
    width: 450px;
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.50);
    animation: fadeInScale 0.25s ease;
    position: relative;
}

/* Close button */
.close-edit-modal {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
}

.close-edit-modal:hover {
    color: #e73232;
}

/* ===========================
   TITLE (Montserrat)
=========================== */
.edit-modal-content h3 {
    font-family: "Montserrat", sans-serif;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

/* ===========================
   LABELS (Raleway)
=========================== */
#editForm label {
    display: block;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 600;
}

/* ===========================
   INPUTS & TEXTAREAS (Open Sans)
=========================== */
#editForm input,
#editForm textarea,
#editForm select {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 14px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    resize: none;
}

/* ===========================
   2-Column Layout for Consultation
=========================== */
.consultation-layout {
    display: flex;
    gap: 20px; /* space between columns */
}

.consultation-layout .col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Textarea full width in its column */
.consultation-layout textarea {
    width: 100%;
}

/* Optional: keep contact modal single column */
.contact-layout {
    display: flex;
    flex-direction: column;
}

/* Responsive: stack columns on small screens */
@media (max-width: 600px) {
    .consultation-layout {
        flex-direction: column;
    }
}

/* ===========================
   Save button
=========================== */
/* Container to center the save button */
.save-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

/* Save button styling */
#saveModalBtn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Save icon */
#saveModalBtn img {
    width: 40px;   /* Adjust size as needed */
    height: 40px;
    transition: transform 0.2s;
}

#saveModalBtn:hover img {
    transform: scale(1.1); /* Slight hover effect */
}


/* ===========================
   Modal animation
=========================== */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}



