 :root{
      --primary:#0b5ed7;
      --primary2:#003b95;
      --sky:#eaf3ff;
      --dark:#102033;
      --text:#5d6b82;
      --white:#fff;
    }

    *{margin:0;padding:0;box-sizing:border-box}
    body{
      font-family:"Segoe UI",Arial,sans-serif;
      background:linear-gradient(180deg,#edf5ff,#f7fbff);
      color:var(--dark);
    }
    a{text-decoration:none}

    .main-header{
      /* height:72px; */
      background:rgba(255,255,255,.94);
      backdrop-filter:blur(12px);
      display:flex;
      align-items:center;
      box-shadow:0 8px 25px rgba(13,91,215,.12);
      position:sticky;
      top:0;
      z-index:999;
    }
    .logo img{height:48px}
    .navbar-nav .nav-link{
      font-size:14px;
      font-weight:700;
      color:#14213d;
      padding:0 18px!important;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active{color:var(--primary)}

    .compare-btn{
      background:linear-gradient(135deg,var(--primary),#2f8cff);
      color:#fff;
      padding:10px 18px;
      border-radius:30px;
      font-size:14px;
      font-weight:800;
      box-shadow:0 10px 20px rgba(11,94,215,.25);
    }

    .hero{
      min-height:410px;
      background:
      linear-gradient(90deg,rgba(3,27,67,.88),rgba(11,94,215,.55)),
      url("./img/hero-banner.jpg");
      background-size:cover;
      background-position:center;
      display:flex;
      align-items:center;
    }
    .hero h1{
      color:#fff;
      font-size:52px;
      font-weight:900;
      text-transform:uppercase;
    }
    .hero h1 span{color:#79b7ff}
    .hero p{
      color:#eef6ff;
      max-width:620px;
      font-size:16px;
      line-height:1.8;
    }

    .filter-box{
      background:#fff;
      margin-top:-55px;
      position:relative;
      z-index:10;
      border-radius:22px;
      box-shadow:0 18px 45px rgba(0,64,140,.16);
      padding:24px;
      border:1px solid rgba(11,94,215,.12);
    }
    .filter-item{
      border-right:1px solid #d7e7fb;
      padding:0 22px;
    }
    .filter-item:last-child{border-right:0}
    .filter-item label{
      font-size:13px;
      font-weight:800;
      color:#0d3673;
      margin-bottom:8px;
    }
    .filter-select{
      border:0;
      outline:0;
      width:100%;
      color:#667085;
      font-size:13px;
      background:transparent;
    }
    .filter-icon{color:var(--primary)}
    .clear-btn{
      width:100%;
      border:0;
      border-radius:16px;
      padding:14px 22px;
      color:#fff;
      font-weight:800;
      background:linear-gradient(135deg,#0b5ed7,#00a8ff);
      box-shadow:0 12px 25px rgba(11,94,215,.25);
    }

    .search-wrap{
      display:flex;
      justify-content:end;
      margin:55px 0 35px;
    }
    .search-box{
      width:380px;
      background:#fff;
      padding:7px;
      border-radius:50px;
      display:flex;
      box-shadow:0 12px 30px rgba(13,91,215,.12);
      border:1px solid #d9eaff;
    }
    .search-box input{
      border:0;
      outline:0;
      flex:1;
      padding:0 20px;
      font-size:14px;
    }
    .search-box button{
      border:0;
      border-radius:35px;
      padding:11px 24px;
      color:#fff;
      font-weight:800;
      background:linear-gradient(135deg,var(--primary),#00a8ff);
    }

    .property-card{
      background:rgba(255,255,255,.95);
      border-radius:22px;
      padding:16px;
      height:100%;
      border:1px solid #dcecff;
      box-shadow:0 12px 30px rgba(8,50,110,.12);
      transition:.35s;
      overflow:hidden;
    }
    .property-card:hover{
      transform:translateY(-9px);
      box-shadow:0 22px 45px rgba(8,50,110,.2);
    }
    .property-img{
      height:210px;
      width:100%;
      object-fit:cover;
      border-radius:18px;
      margin-bottom:18px;
    }
    .property-card h4{
      color:#0b5ed7;
      font-size:19px;
      font-weight:900;
    }
    .location{
      font-size:13px;
      color:var(--text);
      margin-bottom:12px;
    }
    .price{
      display:inline-block;
      background:#e8f2ff;
      color:#003b95;
      padding:7px 14px;
      border-radius:30px;
      font-size:13px;
      font-weight:800;
      margin-bottom:13px;
    }
    .property-card p{
      font-size:13px;
      color:#40506b;
      line-height:1.7;
      min-height:70px;
    }
    .compare-small{
      border:0;
      border-radius:30px;
      background:linear-gradient(135deg,#0b5ed7,#00a8ff);
      color:#fff;
      padding:9px 18px;
      font-size:13px;
      font-weight:800;
    }

    .custom-pagination{
      display:flex;
      justify-content:end;
      align-items:center;
      gap:10px;
      margin:38px 0;
      flex-wrap:wrap;
    }
    .page-dot{
      min-width:42px;
      height:36px;
      border-radius:50px;
      border:1px solid #cfe3ff;
      background:#fff;
      color:#0b5ed7;
      font-weight:800;
    }
    .page-dot.active{
      background:linear-gradient(135deg,#0b5ed7,#00a8ff);
      color:#fff;
      box-shadow:0 8px 18px rgba(11,94,215,.25);
    }
    .next-arrow{
      color:#0b5ed7;
      font-size:18px;
      cursor:pointer;
    }

    .no-result{
      display:none;
      text-align:center;
      background:#fff;
      border-radius:18px;
      padding:35px;
      color:#0b5ed7;
      font-weight:800;
      box-shadow:0 12px 30px rgba(13,91,215,.12);
    }

    .faq-title{
      color:#0b5ed7;
      font-weight:900;
      text-align:center;
      margin-bottom:25px;
    }
    .accordion-item{
      border:1px solid #cfe3ff;
      margin-bottom:13px;
      border-radius:14px!important;
      overflow:hidden;
      box-shadow:0 8px 20px rgba(13,91,215,.08);
    }
    .accordion-button{
      font-size:14px;
      font-weight:800;
      color:#0d3673;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      background:#eaf3ff;
      color:#0b5ed7;
    }

    .disclaimer{
      font-size:14px;
      line-height:1.8;
      color:#334155;
      margin:55px 0;
      background:#fff;
      padding:22px;
      border-radius:18px;
      border-left:5px solid #0b5ed7;
    }

    .footer-box{
      background:linear-gradient(180deg,#ffffff,#eef6ff);
      border:1px solid #cfe3ff;
      border-radius:24px;
      padding:30px 18px;
      margin-bottom:45px;
      box-shadow:0 15px 35px rgba(13,91,215,.12);
    }
    .footer-box h5{
      color:#0b5ed7;
      font-size:15px;
      font-weight:900;
      text-transform:uppercase;
    }
    .footer-box p,.footer-box a{
      font-size:13px;
      color:#1f2937;
      display:block;
      margin-bottom:9px;
    }

    .newsletter{
      text-align:center;
      margin-bottom:45px;
    }
    .newsletter h3{
      font-size:26px;
      font-weight:900;
    }
    .newsletter h3 span{color:#0b5ed7}
    .newsletter-form{
      max-width:520px;
      margin:auto;
      background:#eef6ff;
      border:1px solid #cfe3ff;
      border-radius:50px;
      display:flex;
      overflow:hidden;
    }
    .newsletter-form input{
      flex:1;
      border:0;
      background:transparent;
      padding:16px 25px;
      outline:0;
    }
    .newsletter-form button{
      border:0;
      background:linear-gradient(135deg,#0b5ed7,#00a8ff);
      color:#fff;
      padding:0 32px;
      font-weight:800;
    }
    .rera-strip{
      background:#dcecff;
      padding:22px 0;
      color:#0d3673;
      font-size:13px;
      font-weight:800;
    }
    .copyright{
      text-align:center;
      background:#fff;
      padding:18px;
      font-size:12px;
    }
    .copyright span{color:#0b5ed7;font-weight:800}

    .social-fixed{
      position:fixed;
      left:10px;
      top:58%;
      transform:translateY(-50%);
      z-index:999;
    }
    .social-fixed a{
      width:34px;
      height:34px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      margin-bottom:6px;
      border-radius:50%;
      font-size:15px;
      box-shadow:0 8px 16px rgba(0,0,0,.18);
    }
    .whatsapp{background:#25d366}
    .instagram{background:#e1306c}
    .facebook{background:#1877f2}
    .linkedin{background:#0a66c2}
    .youtube{background:#ff0000}

    .chat-btn{
      position:fixed;
      right:22px;
      bottom:22px;
      width:58px;
      height:58px;
      border-radius:50%;
      background:linear-gradient(135deg,#0b5ed7,#00a8ff);
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:22px;
      z-index:999;
      box-shadow:0 12px 25px rgba(11,94,215,.35);
    }

    @media(max-width:991px){
      .filter-item{
        border-right:0;
        border-bottom:1px solid #d7e7fb;
        padding:15px 0;
      }
      .hero{text-align:center}
      .hero h1{font-size:38px}
      .search-wrap,.custom-pagination{justify-content:center}
      .search-box{width:100%}
      .footer-box{text-align:center}
    }




    /* privacy  */

    .post-content {
  padding: 80px 15px;
  background: linear-gradient(135deg, #eef5ff, #ffffff);
}

/* Main Box */
.policy-box {
  max-width: 1000px;
  margin: auto;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(13, 91, 215, 0.15);
  border: 1px solid rgba(13, 110, 253, 0.15);
  position: relative;
  overflow: hidden;
}



/* Header */
.policy-header {
  text-align: center;
  margin-bottom: 35px;
}

.policy-header span {
  display: inline-block;
  background: linear-gradient(135deg, #0b5ed7, #00a8ff);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.policy-header h1 {
  font-size: 42px;
  font-weight: 900;
  color: #102033;
  margin-bottom: 10px;
}

.policy-header p {
  font-size: 15px;
  color: #6b7280;
}

/* Content */
.policy-body h2 {
  font-size: 22px;
  font-weight: 900;
  color: #0b5ed7;
  margin-top: 30px;
  margin-bottom: 12px;
  border-left: 4px solid #0b5ed7;
  padding-left: 10px;
}

.policy-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-top: 18px;
}

.policy-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #475467;
  margin-bottom: 10px;
}

/* Hover subtle effect */
.policy-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(13, 91, 215, 0.25);
  transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-box {
    padding: 25px;
    border-radius: 18px;
  }

  .policy-header h1 {
    font-size: 30px;
  }
}

/* abot us */


.about {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e293b;
  background: #f4f8ff;
}

.about .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Hero */
.about-hero {
  padding: 110px 0;
  background:
    linear-gradient(rgba(2, 22, 72, 0.85), rgba(2, 22, 72, 0.85)),
    url("./img/aboutus.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

.section-tag {
  display: inline-block;
  color: #60a5fa;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-hero h1 {
  font-size: 52px;
  margin: 0 0 18px;
  font-weight: 800;
}

.about-hero p {
  font-size: 18px;
  line-height: 1.8;
  color: #e0f2fe;
}

/* Sections */
.about-section,
.values-section,
.mission-section {
  padding: 90px 0;
}

/* About Grid */


.about-img img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.25);
}

.about-content h2,
.section-heading h2 {
  font-size: 38px;
  margin-bottom: 18px;
  color: #0f172a;
}

.about-content p {
  color: #475569;
  line-height: 1.8;
}

/* Points */
.about-points {
  display: grid;
  gap: 14px;
  margin-top: 25px;
}

.about-points div {
  font-weight: 600;
  color: #1e3a8a;
}

.about-points i {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  margin-right: 10px;
}

/* Values */
.values-section {
  background: #eef4ff;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #dbeafe;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.18);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #fff;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin: 0 auto 22px;
}

/* Mission Vision */

/* Mission Vision Section */
.mission-section {
  padding: 40px 0;
  
}

.mission-section .section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.mission-section .section-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #102033;
  margin-bottom: 10px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mission-card {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 25px 70px rgba(15, 32, 51, 0.18);
  transition: all 0.45s ease;
}

.mission-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 90px rgba(15, 32, 51, 0.28);
}

.mission-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.mission-card:hover img {
  transform: scale(1.12);
}

.mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 20, 35, 0.12) 0%,
    rgba(8, 20, 35, 0.72) 48%,
    rgba(8, 20, 35, 0.94) 100%
  );
  z-index: 1;
}

.mission-content {
position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 2;
    padding: 30px;
    border-radius: 0px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mission-content i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(214, 168, 79, 0.35);
}

.mission-content h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
}

.mission-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-section .section-heading h2 {
    font-size: 24px;
    font-weight: 400;;
  }
}

@media (max-width: 575px) {
  .mission-section {
    padding: 60px 0;
  }

  .mission-card,
  .mission-card img {
    min-height: 620px;
  }

  .mission-content {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 22px;
  }

  .mission-content h3 {
    font-size: 24px;
  }

  .mission-content p {
    font-size: 14.5px;
  }
}


/* Responsive */
@media (max-width: 992px) {
    .social-fixed {
    position: fixed;
    right: 0px;
    top: 69%;
    transform: translateY(-50%);
    z-index: 999;
}
.compare-btn {background: transparent; padding:0px;color: #000;
    display: none;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: none;}

    .main-header .navbar-nav{text-align: left!important;}
    .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #464646b3;
    color: #14213d;
    padding: 6px 5px !important;
}


    .info-item i{width: max-content;}
    .about-hero{padding:50px 0px;}

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero h1 {
    font-size: 25px;
    font-weight: 600;
  }
}

@media (max-width: 576px) {
    .about-section, .values-section, .mission-section {
    padding: 30px 0;
}
    .about-content h2, .section-heading h2{font-size:25px; padding-top:20px;}
    .about-img img{height:auto;}
  .values-grid {
    grid-template-columns: 1fr;
  }
}



/* contact */

.contact {
  background: #f4f8ff;
  color: #1e293b;
}

.contact-section {
  padding: 90px 0;
}

.contact-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-heading h2 {
  font-size: 42px;
  color: #0f172a;
  margin-bottom: 14px;
}

.contact-heading p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 35px;
  align-items: stretch;
}

.contact-info-box,
.contact-form-box {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(37, 99, 235, 0.12);
  overflow: hidden;
}

.contact-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.info-card {
  padding: 30px;
}

.info-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #e2e8f0;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item i {
  min-width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #ffffff;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.info-item h4 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 18px;
}

.info-item p,
.info-item a {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  text-decoration: none;
}

.contact-form-box {
  padding: 35px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  outline: none;
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 15px;
  color: #0f172a;
  background: #f8fbff;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-group textarea {
  resize: none;
}

.contact-btn {
  width: 100%;
  border: none;
  padding: 16px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.28);
}

.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(37, 99, 235, 0.38);
}

.contact-btn i {
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-box,
  .info-card {
    padding: 24px;
  }

  .contact-img img {
    height: 230px;
  }

  .info-item {
    flex-direction: column;
    gap: 12px;
  }
}