/* ===== FULL WEBSITE WHITE BACKGROUND ===== */
html,
body {
  margin: 0;
  padding: 0;
  background: #ffffff !important;
  font-family: 'Poppins', sans-serif;
}

/* Make all major sections white */
* {
  box-sizing: border-box;
}

body,
section,
div,
main,
header,
footer,
nav,
.container,
.main-container,
.content-wrapper,
.page-wrapper {
  background-color: transparent;
}

/* Header white */
.header {
  background: #ffffff !important;
}

/* Main content area white */
.main-section,
.hero,
.about-section,
.projects-section,
.testimonial-section,
.gallery-section,
.contact-section {
  background: #ffffff !important;
}

/* Footer stays dark if needed */
.footer {
  background: #2f3b7d !important;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;   /* 🔥 increased spacing */
  background: white;
}

/* LOGO */
.logo img {
  height: 80px;   /* 🔥 bigger logo */
}

/* NAV LINKS */
nav a {
  margin: 0 15px;
  font-size: 18px;   /* 🔥 bigger text */
  font-weight: 500;
  color: #222;
  text-decoration: none;
}

/* LOGIN BUTTON */
.login-btn {
  background: #2f3b66;
  color: white;
  padding: 12px 20px;   /* 🔥 bigger button */
  border: none;
  border-radius: 10px;
  font-size: 16px;
}

/* ANNOUNCEMENT */
.announcement {
  background:#e9f0f7;
  padding:10px;
}

/* IMPORTANT BAR FULL */
.important-bar {
  display: flex;
  align-items: center;
  background: #d6dde5;
  border-top: 1px solid #bfc8d2;
  border-bottom: 1px solid #bfc8d2;
}

/* LEFT BLUE BOX */
.important-label {
  background: #3d4f7a;
  color: white;
  padding: 10px 20px;
  font-weight: 500;
}

/* RIGHT TEXT */
.important-text {
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  flex: 1;
}/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* BODY */
body {
  background: #fbfbfc;
  padding: 30px;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.logo {
  width: 80px;
}

.header-text h2 {
  font-size: 20px;
}

.header-text p {
  font-size: 14px;
}

/* TITLE */
.title {
  text-align: center;
  margin: 20px 0;
}

/* GALLERY GRID */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.card {
  background: #fcfcfd;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

/* TEXT */
.card p {
  margin-top: 8px;
  font-size: 14px;
}

/* HOVER EFFECT */
.card:hover {
  transform: scale(1.05);
}


.footer {
  background: #31386d;
  color: white;
  margin-top: 40px;
  padding: 40px 0 20px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

/* TOP SECTION */
/* divider line under footer top section */
.footer-top {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 40px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25); /* this creates the line */
}

/* COLUMNS */
.footer-col {
  padding: 0 20px;
}

.footer-col h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col p,
.footer-col li {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #f3f4f6;
}

.footer-col ul {
  margin-top: 15px;
  padding-left: 22px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: white;
  text-decoration: underline;
}

/* FOOTER IMAGES */
.footer-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

/* IMAGE STYLE */
.footer-images img {
  height: 40px;
  object-fit: contain;
}
/* CENTER DIVIDER */
.center-border {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* MIDDLE LIGHT BOX */
.footer-middle {
  max-width: 1300px;
  margin: 35px auto 20px;
  background: #dbe8f4;
  border-radius: 20px;
  text-align: center;
  padding: 35px 20px;
  color: #111827;
}

.footer-logo {
  width: 110px;
  margin-bottom: 20px;
}

.footer-middle p {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.security {
  width: 140px;
  margin-top: 15px;
}

/* BADGES */
.footer-badges {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-badges img {
  height: 45px;
  object-fit: contain;
}

/* MOBILE */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .center-border {
    border: none;
  }
}

@media (max-width: 768px) {
  .footer-col h3 {
    font-size: 2rem;
  }

  .footer-col p,
  .footer-col li,
  .footer-middle p {
    font-size: 1rem;
  }

  .footer-middle {
    margin: 25px 15px;
    padding: 25px 15px;
  }

  .footer-badges img {
    height: 35px;
  }
}
