/* ===== 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;
}

.tag {
  background:#2f3b66;
  color:white;
  padding:5px 10px;
  margin-right:10px;
}

/* BOXES */
.top-boxes {
  display:flex;
  gap:20px;
  padding:30px;
}

.box {
  flex:1;
  background:#e9f0f7;
  padding:20px;
  border-radius:10px;
}

.item {
  background:white;
  margin:10px 0;
  padding:10px;
  border-radius:5px;
}

/* PROJECTS */
.projects {
  display:flex;
  gap:20px;
  padding:30px;
}

.project-card {
  background: #e9f0f7;
  padding: 25px;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Title */
.project-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* Blue link text */
.project-card .highlight {
  color: #1a73e8;
  font-weight: 500;
  margin-bottom: 8px;
}

/* Tags */
.tags {
  margin: 10px 0;
}

.tag-box {
  background: #f2f4f8;
  padding: 6px 10px;
  border-radius: 6px;
  margin-right: 8px;
  display: inline-block;
}

/* Price */
.price {
  background: #0a8f3d;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
}

/* Location button */
.location-btn {
  background: #2f3b66;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  margin-left: 10px;
}


/* DEVELOPMENT */
.development {
  display:flex;
  gap:20px;
  padding:30px;
}

/* AMENITIES */
.amenities {
  background:#e9f0f7;
  padding:30px;
}

/* CONTACT */
.contact {
  display:flex;
  padding:30px;
}

.form input {
  display:block;
  margin:10px 0;
  padding:10px;
  width:300px;
}

/* =========================
   FOOTER - EXACT STYLE
========================= */

.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;
  }
}

.bottom {
  text-align:center;
  margin-top:20px;
}
.development {
  display: flex;
  gap: 30px;
  padding: 30px;
  align-items: flex-start; /* 🔥 aligns top properly */
}

/* BOTH BOXES SAME WIDTH */
.dev-box {
  width: 50%;
  background: #e9f0f7;
  padding: 20px;
  border-radius: 12px;
}

/* LIST STYLE (CONNECTED) */
.dev-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  overflow: hidden;
}

.dev-box ul li {
  background: #f5f7fb;
  padding: 12px 15px;
  border-bottom: 1px solid #dcdcdc;
}

.dev-box ul li:last-child {
  border-bottom: none;
}
/* AMENITIES */
.amenities {
  background: #e9f0f7;
  padding: 25px;
  border-radius: 12px;
  margin: 30px;
}

/* TITLE */
.amenities h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* MAIN BOX (IMPORTANT) */
.amenities ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  overflow: hidden; /* 🔥 makes it one box */
}

/* CONNECTED ROWS */
.amenities ul li {
  background: #f5f7fb;
  padding: 12px 15px;
  border-bottom: 1px solid #dcdcdc;
}

/* REMOVE LAST BORDER */
.amenities ul li:last-child {
  border-bottom: none;
}

.amenities {
  margin: 30px 30px 0 30px;
}

@media (max-width: 768px) {
  .development {
    flex-direction: column;
  }

  .dev-box {
    width: 100%;
  }
}

.contact-section {
  display: flex;
  justify-content: space-between;
  padding: 40px 30px;
  gap: 40px;
}

/* LEFT SIDE */
.contact-left {
  width: 40%;
}

.contact-left h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.label {
  margin-top: 20px;
  font-size: 18px;
}

.contact-btn {
  display: block;
  background: #2f3b66;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  width: fit-content;
}

/* RIGHT SIDE BOX */
.contact-form-box {
  width: 60%;
  background: #e9f0f7;
  padding: 25px;
  border-radius: 12px;
}

.contact-form-box h2 {
  font-size: 24px;
}

.subtext {
  color: #555;
  margin-bottom: 15px;
}

.contact-form-box hr {
  margin: 15px 0;
  border: 0.5px solid #ccc;
}

/* INPUTS */
.contact-form-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* SUBMIT BUTTON */
.submit-btn {
  width: 100%;
  background: #2f3b66;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
}

.important-bar {
  display: flex;
  align-items: center;
  border: 1px solid #c5ccd6;
  margin: 10px 0;
}

/* LEFT DARK BOX */
.important-label {
  background: #2f3b66;
  color: white;
  padding: 10px 15px;
  font-weight: 500;
}

/* RIGHT LIGHT STRIP */
.important-text {
  flex: 1;
  background: #e9f0f7;
  padding: 10px;
  color: #222;
  font-size: 14px;
}

/* MAIN SECTION */
.about-section {
  padding: 30px;
}

/* ABOUT TOP BOX */
.about-box {
  background: #f2f4f8;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.about-box h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.director-btn {
  margin-top: 15px;
  padding: 10px 15px;
  border: 1px solid #333;
  background: transparent;
  border-radius: 8px;
}

/* GRID */
.about-grid {
  display: flex;
  gap: 20px;
}

/* LEFT DARK BOX */
.why-box {
  width: 50%;
  background: #2f3b66;
  color: white;
  padding: 25px;
  border-radius: 12px;
}

.why-box h2 {
  margin-bottom: 15px;
}

.why-box h4 {
  margin-top: 15px;
}

/* RIGHT LIGHT BOX */
.serve-box {
  width: 50%;
  background: #f2f4f8;
  padding: 25px;
  border-radius: 12px;
}

.serve-box h4 {
  margin-top: 15px;
}

.amenities-title {
  margin-top: 20px;
}

/* LIST */
.serve-box ul {
  margin-top: 10px;
}

.serve-box ul li {
  margin-bottom: 8px;
}

/* FONT */
body {
  font-family: 'Poppins', sans-serif;
  background: #f5f7fb;
}

/* WRAPPER */
.about-wrapper {
  padding: 30px 40px;
}

/* TOP CARD */
.about-card {
  background: #eef2f7;
  padding: 30px 35px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.about-card h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* BUTTON */
.btn-outline {
  margin-top: 18px;
  padding: 10px 18px;
  border: 1px solid #333;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #efefef;
  font-family: Arial, sans-serif;
}

.projects-container {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.project-card {
  background: #31386d;
  color: white;
  padding: 35px;
  border-radius: 16px;
  min-height: 580px;
  transition: 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.location {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.tags span {
  background: #1f7bff;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.price-title,
.enquire-title {
  font-size: 2rem;
  margin-bottom: 15px;
}

.price {
  display: inline-block;
  background: #16a34a;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.status {
  display: inline-block;
  background: #16a34a;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.actions {
  display: flex;
  gap: 14px;
  margin-bottom: 35px;
}

.actions button {
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
}

.call {
  background: transparent;
  border: 2px solid #3b82f6;
  color: white;
}

.enquire {
  background: transparent;
  border: 2px solid #3b82f6;
  color: white;
}

.bank h4 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.bank p {
  font-size: 1.1rem;
  line-height: 2;
}

/* Mobile */
@media (max-width: 992px) {
  .projects-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .project-card {
    padding: 24px;
    min-height: auto;
  }

  .project-card h2 {
    font-size: 2rem;
  }

  .actions {
    flex-direction: column;
  }

  .actions button {
    width: 100%;
  }
}

/* BADGES */
.security-badges {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.security-badges img {
  height: 50px;
  object-fit: contain;
}

/* TESTIMONIAL SECTION */
.testimonial-section {
  background: #f5f5f5;
  padding: 60px 20px;
}

.testimonial-container {
  max-width: 1400px;
  margin: auto;
  background: #f1f1f1;
  padding: 40px;
  border-radius: 20px;
}

.testimonial-header {
  margin-bottom: 40px;
}

.testimonial-header h1 {
  font-size: 4rem;
  color: #111827;
  margin-bottom: 20px;
}

.testimonial-header button {
  background: #1f7bff;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* TESTIMONIAL CARD */
.testimonial-card {
  display: flex;
  gap: 30px;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.testimonial-top {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.testimonial-top h3 {
  font-size: 2rem;
  color: #111827;
}

.testimonial-top span {
  font-size: 1.2rem;
  color: #374151;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #1f2937;
}

.testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-top {
    flex-direction: column;
    gap: 10px;
  }


/* =========================
   ABOUT PAGE ONLY
========================= */
/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  background: #f5f5f5;
  gap: 30px;
}

/* LOGO */
.logo {
  width: 120px;
  height: auto;
  object-fit: contain;
}

/* BRAND TEXT */
.company-brand {
  flex: 1;
  margin-left: 10px;
}

.company-brand h1 {
  font-size: 2.8rem;
  color: #111827;
  margin-bottom: 6px;
}

.company-brand span {
  font-size: 1rem;
  color: #374151;
  line-height: 1.4;
}

/* NAVBAR */
.navbar {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.navbar a {
  text-decoration: none;
  color: #111827;
  font-size: 1.1rem;
  font-weight: 500;
}

.navbar a:hover {
  color: #2f3b66;
}

/* MOBILE */
@media (max-width: 992px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .company-brand {
    margin: 0;
  }

  .navbar {
    justify-content: center;
  }
}
/* MAIN WRAPPER */
.about-wrapper {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 20px;
}

/* TOP ABOUT CARD */
.about-card {
  background: #eef2f7;
  padding: 50px;
  border-radius: 16px;
  margin-bottom: 35px;
}

.about-card h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.about-card p {
  font-size: 1.35rem;
  line-height: 1.8;
  color: #374151;
  max-width: 1200px;
}

/* BUTTON */
.btn-outline {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 26px;
  border: 2px solid #374151;
  background: transparent;
  color: #111827;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #2f3b66;
  color: white;
  border-color: #2f3b66;
}

/* GRID */
.about-grid {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* LEFT CARD */
.why-card {
  width: 50%;
  background: #2f3b66;
  color: white;
  padding: 45px;
  border-radius: 16px;
}

.why-card h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.why-card h4 {
  font-size: 1.8rem;
  margin-top: 22px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #f3f4f6;
}

/* RIGHT CARD */
.serve-card {
  width: 50%;
  background: #eef2f7;
  padding: 45px;
  border-radius: 16px;
  border: 1px solid #d1d5db;
}

.serve-card h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  color: #111827;
}

.serve-card h4 {
  font-size: 1.8rem;
  margin-top: 22px;
  margin-bottom: 10px;
  color: #111827;
}

.serve-card p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #374151;
}

.serve-card h3 {
  font-size: 2.6rem;
  margin-top: 35px;
  margin-bottom: 20px;
  color: #111827;
}

.serve-card ol {
  padding-left: 25px;
}

.serve-card ol li {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #374151;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid {
    flex-direction: column;
  }

  .why-card,
  .serve-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-card,
  .why-card,
  .serve-card {
    padding: 25px;
  }

  .about-card h2,
  .why-card h2,
  .serve-card h2 {
    font-size: 2rem;
  }

  .about-card p,
  .why-card p,
  .serve-card p,
  .serve-card ol li {
    font-size: 1rem;
  }
}

/* =========================
   HOME PROJECT SECTION
========================= */

.home-projects {
  max-width: 1400px;
  margin: 50px auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.home-project-card {
  flex: 1;
  min-width: 320px;
  background: #e9f0f7;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.home-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* TITLE */
.home-project-card h3 {
  font-size: 2.3rem;
  color: #111827;
  margin-bottom: 14px;
  font-weight: 700;
}

/* STATUS */
.project-status {
  color: #1a73e8;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* LOCATION */
.project-location {
  color: #4b5563;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* TAGS */
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.project-tags span {
  background: #f5f7fb;
  border: 1px solid #dbe4ef;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 1rem;
  color: #111827;
  font-weight: 500;
}

/* PRICE + LOCATION */
.project-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}

/* GREEN PRICE */
.project-price {
  background: #16a34a;
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.25);
}

/* LOCATION BUTTON */
.project-location-btn {
  background: #2f3b66;
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: 0.3s;
}

.project-location-btn:hover {
  background: #1f2a4d;
}

/* ENQUIRY */
.project-enquiry h4 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: #111827;
}

/* CALL BUTTON */
.project-call-btn {
  background: #2f3b66;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.project-call-btn:hover {
  background: #1f2a4d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .home-projects {
    flex-direction: column;
  }

  .home-project-card h3 {
    font-size: 1.8rem;
  }

  .project-price-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== DIRECTORS PAGE ===== */
.directors-page {
  width: 100%;
  padding: 40px 0 60px;
  background: #ffffff;
}

.directors-box {
  width: 85%;
  margin: auto;
  background: #eef5fc;
  border-radius: 18px;
  padding: 50px 60px;
  box-sizing: border-box;
}

.directors-box h1 {
  font-size: 60px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 18px;
  line-height: 1.1;
}

.directors-box p {
  font-size: 22px;
  color: #1f2937;
  line-height: 1.8;
  margin: 0 0 18px;
}

/* spacing between sections */
.directors-box h1:not(:first-child) {
  margin-top: 35px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .directors-box {
    width: 92%;
    padding: 30px 25px;
  }

  .directors-box h1 {
    font-size: 38px;
  }

  .directors-box p {
    font-size: 18px;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  width: 100%;
  background: #ffffff;
  padding: 50px 0;
}

.contact-container {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.contact-left {
  width: 45%;
}

.contact-left h1 {
  font-size: 72px;
  color: #111827;
  margin-bottom: 30px;
}

.contact-left h3 {
  font-size: 28px;
  margin: 25px 0 15px;
  color: #111827;
}

.contact-left p {
  font-size: 22px;
  line-height: 1.7;
  color: #1f2937;
}

.contact-btn {
  display: inline-block;
  background: #2f3b7d;
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(47, 59, 125, 0.2);
}

/* RIGHT */
.contact-right {
  width: 45%;
  background: #eef5fc;
  padding: 35px;
  border-radius: 18px;
  border: 1px solid #dbeafe;
}

.contact-right h2 {
  font-size: 40px;
  margin-bottom: 25px;
  color: #374151;
  border-bottom: 1px solid #d1d5db;
  padding-bottom: 15px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-right input {
  width: 100%;
  padding: 20px;
  font-size: 20px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  outline: none;
}

.contact-right button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 18px;
  font-size: 24px;
  border-radius: 12px;
  cursor: pointer;
}

/* MAP */
.map-section {
  width: 65%;
  margin: 60px auto 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    width: 92%;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-left h1 {
    font-size: 42px;
  }

  .map-section {
    width: 92%;
  }
}

/* MAIN 3 COLUMN LAYOUT */
.main-row {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.main-row > div {
  flex: 1;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .main-row {
    flex-direction: column;
  }
}

/* MATCH HEIGHT LOOK */
.form-box, .intro-card, .box {
  min-height: 250px;
}

.card, .form-box, .box {
  background: #cfd8e3;
  padding: 20px;
  border-radius: 12px;
}

.dropdown-btn {
  width: 100%;
  background: #8fa6c6;
  color: white;
  padding: 14px;
  margin-top: 10px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 5px;
}

.dropdown-content.show {
  display: block;
}

.main-btn, .blue-btn {
  width: 100%;
  background: #2f3b7d;
  color: white;
  padding: 12px;
  border-radius: 8px;
  border: none;
  margin-top: 10px;
  cursor: pointer;
}

h2 {
  margin-bottom: 15px;
}

/* INTRO BOX */
.intro-section {
  background: #cfd8e3;
  padding: 20px;
  border-radius: 12px;
}

/* EACH ITEM (BOX STYLE) */
.intro-section .accordion-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #d1d5db;
  background: #f3f4f6;
}

/* BUTTON (LIGHT GREY LIKE BSNL) */
.intro-section .accordion-btn {
  width: 100%;
  background: #f3f4f6;
  color: #111;
  padding: 14px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* HOVER EFFECT */
.intro-section .accordion-btn:hover {
  background: #e5e7eb;
}

/* CONTENT */
.intro-section .accordion-content {
  display: none;
  background: #ffffff;
  padding: 15px;
  border-top: 1px solid #d1d5db;
}

/* ACTIVE STATE */
.intro-section .accordion-item.active .accordion-content {
  display: block;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  background: #cfd8e3;
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
}

/* MAIN CONTAINER */
.form-container {
  max-width: 1100px;
  margin: auto;
  padding: 30px;
}

/* HEADER */
.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 28px;
  font-weight: 600;
}

.header p {
  font-size: 14px;
  margin-top: 5px;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 24px;
  margin: 30px 0;
}

/* TEXT SPACING */
p {
  margin: 8px 0;
}

/* FORM GRID */
.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

/* FULL WIDTH */
.full-width {
  grid-column: span 3;
}

/* TWO COLUMN */
.two-col {
  grid-column: span 2;
}

/* LABELS */
label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

/* INPUTS + SELECT */
input, select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #f1f5f9;
  font-size: 14px;
}

/* RADIO GROUP */
.radio-group {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}

/* SECTION HEADINGS */
h3 {
  margin: 20px 0 10px;
}


/* SUBMIT BUTTON */
.submit-btn {
  display: block;
  margin: 30px auto;
  background: #5a9bd5;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #3b82f6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  background: #cfd8e3;
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
}

/* MAIN CONTAINER */
.form-container {
  max-width: 1100px;
  margin: auto;
  padding: 30px;
}

/* HEADER */
.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 28px;
  font-weight: 600;
}

.header p {
  font-size: 14px;
  margin-top: 5px;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 24px;
  margin: 30px 0;
}

/* TEXT SPACING */
p {
  margin: 8px 0;
}

/* FORM GRID */
.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

/* FULL WIDTH */
.full-width {
  grid-column: span 3;
}

/* TWO COLUMN */
.two-col {
  grid-column: span 2;
}

/* LABELS */
label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

/* INPUTS + SELECT */
input, select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #f1f5f9;
  font-size: 14px;
}

/* RADIO GROUP */
.radio-group {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}

/* SECTION HEADINGS */
h3 {
  margin: 20px 0 10px;
}

/* TERMS SECTION */
.terms {
  margin-top: 40px;
}

.terms h2 {
  text-align: center;
  margin-bottom: 20px;
}

.terms p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* CHECKBOX */
input[type="checkbox"] {
  margin-right: 8px;
}

/* SUBMIT BUTTON */
.submit-btn {
  display: block;
  margin: 30px auto;
  background: #5a9bd5;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #3b82f6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

