:root{
  --primary: #d4af37;
  --dark: #1f2a36;
  --text: #333;
  --muted: #6b7280;
  --card: #ffffff;
  --bg: #f9f9f9;
  --shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.section-title.left{ text-align:left; margin-bottom: 10px; }
.section-lead{ text-align:center; max-width: 900px; margin: 0 auto 40px; color: var(--muted); }
.center-actions{ display:flex; justify-content:center; margin-top: 30px; }
.inline-actions{ display:flex; gap: 14px; align-items:center; margin-top: 18px; }
.btn-outline{
  border: 2px solid rgba(255,255,255,0.65);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 600;
  transition: .25s ease;
}
.btn-outline:hover{ border-color:#fff; transform: translateY(-2px); }
.btn-link{ color: var(--primary); text-decoration:none; font-weight: 700; }
.btn-link:hover{ text-decoration: underline; }


/* HERO SLIDER */
.hero-slider{
  position: relative;
  height: 78vh;
  min-height: 520px;
  overflow: hidden;
}
.hero-slides{ height: 100%; }
.hero-slide{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  opacity:0;
  transform: scale(1.03);
  transition: opacity .6s ease, transform .9s ease;
}
.hero-slide.is-active{
  opacity:1;
  transform: scale(1);
}
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.35));
}
.hero-inner{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width: 900px;
}
.hero-pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  background: rgba(255,255,255,.12);
  color:#fff;
  padding: 8px 14px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 14px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.hero-slider h1{
  color:#fff;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-slider p{
  color: rgba(255,255,255,.9);
  font-size: 18px;
  max-width: 720px;
  margin-bottom: 22px;
}
.hero-actions{ display:flex; gap: 12px; flex-wrap:wrap; }
.hero-nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.14);
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 3;
  transition: .25s ease;
}
.hero-nav:hover{ background: rgba(255,255,255,.22); }
.hero-prev{ left: 18px; }
.hero-next{ right: 18px; }

.hero-dots{
  position:absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  border: none;
  cursor:pointer;
}
.hero-dot.is-active{ background: var(--primary); }

/* ABOUT split */
.split{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.split-media{
  border-radius: 16px;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position:center;
  min-height: 420px;
}
.about-media{
  background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1600&q=80");
}
.split-content{
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.subheading{ color: var(--dark); margin-bottom: 12px; }
.mini-title{ margin-top: 14px; color: var(--dark); }
.muted{ color: var(--muted); margin: 10px 0; }

/* SERVICES */
.home-services{ background:#fff; }
.services-cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.service-mini{
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px;
  transition: .25s ease;
}
.service-mini:hover{ transform: translateY(-6px); }
.service-mini i{
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-mini h3{ margin-bottom: 8px; color: var(--dark); }

/* PROJECT cards polish */
.project-card{ border-radius: 14px; overflow:hidden; }
.project-content{ padding: 18px; }

/* TESTIMONIALS */
.testimonials{ background:#fff; }
.t-wrap{ overflow:hidden; }
.t-track{
  display:flex;
  gap: 18px;
  transition: transform .4s ease;
}
.t-card{
  min-width: calc(33.333% - 12px);
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.t-card p{ color: #444; line-height: 1.8; }
.t-meta{ margin-top: 16px; display:flex; justify-content:space-between; color: var(--muted); }
.t-controls{ display:flex; justify-content:center; gap: 10px; margin-top: 18px; }
.t-controls .btn-outline{
  border-color: #ddd;
  color: var(--dark);
  background:#fff;
}

/* BOOK CTA */
.cta-book{ padding: 70px 0; }
.cta-card{
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(44,62,80,.08));
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  box-shadow: var(--shadow);
}
.cta-card h2{ color: var(--dark); margin-bottom: 8px; }
.cta-card p{ color: var(--muted); }
.cta-actions{ display:flex; gap: 12px; flex-wrap:wrap; }
.cta-actions .btn-outline{
  border-color: rgba(0,0,0,.18);
  color: var(--dark);
  background:#fff;
}

/* responsive */
@media (max-width: 992px){
  .hero-slider h1{ font-size: 44px; }
  .split{ grid-template-columns: 1fr; }
  .split-media{ min-height: 360px; }
  .services-cards{ grid-template-columns: repeat(2, 1fr); }
  .t-card{ min-width: calc(50% - 9px); }
  .cta-card{ flex-direction: column; align-items:flex-start; }
}
@media (max-width: 576px){
  .hero-slider{ min-height: 520px; height: 84vh; }
  .hero-slider h1{ font-size: 34px; }
  .hero-actions{ flex-direction: column; align-items:flex-start; }
  .services-cards{ grid-template-columns: 1fr; }
  .t-card{ min-width: 100%; }
}

/* About Section */
.about {
  background-color: #f5f5f5;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #555;
}

.about-image {
  flex: 1;
  height: 400px;
  background: url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

/* App Section */
.app-section {
  background-color: #fff;
}

.app-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.app-text {
  flex: 1;
}

.app-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.app-text p {
  margin-bottom: 30px;
  color: #555;
}

.app-stores {
  display: flex;
  gap: 15px;
}

.app-store-btn {
  display: flex;
  align-items: center;
  background-color: #333;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.app-store-btn:hover {
  background-color: #555;
}

.app-store-btn i {
  font-size: 24px;
  margin-right: 10px;
}

.app-image {
  flex: 1;
  height: 400px;
  background: url("https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

/* Contact Section */
.contact-section {
  background-color: #f5f5f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #222;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: #d4af37;
}
/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.contact-info p {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: #e67e22;
}

.contact-method {
  margin-bottom: 2rem;
}

.contact-method h4 {
  margin-bottom: 1rem;
  color: #2c3e50;
}

.contact-form {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 5px;
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

.submit-btn {
  background: #e67e22;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #d35400;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #d4af37;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #999;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Small mobile devices */
  @media (max-width: 480px) {
  }
  .hero h1 {
    font-size: 36px;
  }

  .about-content,
  .app-content {
    flex-direction: column;
  }

  .about-image,
  .app-image {
    width: 100%;
  }
}
/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url("https://images.unsplash.com/photo-1518780664697-55e3ad937233?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 60px 0;
}

.hero-section h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* =========================
   CEO ABOUT SECTION
========================= */
.ceo-about {
  padding: 60px 0;
}

.ceo-about-grid {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 30px;
  align-items: stretch;
}

.ceo-image img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.ceo-content {
  background: #fff;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.ceo-tag {
  display: inline-block;
  background: rgba(4,53,96,0.1);
  color: #043560;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ceo-content h2 {
  font-size: 26px;
  color: #111;
  margin-bottom: 4px;
}

.ceo-content h4 {
  font-size: 15px;
  color: #043560;
  margin-bottom: 10px;
  font-weight: 600;
}

.ceo-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
}

/* =========================
   STATS SECTION
========================= */
.stats-section {
  background: #2c3e50;
  color: #fff;
  padding: 70px 20px;
  border-radius: 10px;
  margin: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #f1c40f;
}

.stat-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================
   VISION & MISSION
========================= */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}

.vision-box,
.mission-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.vision-box h3,
.mission-box h3 {
  font-size: 26px;
  color: #2c3e50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vision-box i { color: #3498db; }
.mission-box i { color: #2ecc71; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .stats-grid,
  .vision-mission {
    grid-template-columns: 1fr;
  }

  .hero-section h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .ceo-about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ceo-image img {
    height: 320px;
  }

  .hero-section p {
    font-size: 18px;
  }
}

  .stats-grid,
  .team-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .hero-section p {
    font-size: 18px;
  }

  .section-title {
    font-size: 36px;
  }
}



/* projects page */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.projects-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 60px;
  margin-top: 60px;
}

.projects-hero h1 {
  font-size: 52px;
  margin-bottom: 25px;
  font-weight: 700;
}

.projects-hero p {
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Projects Filter */
.projects-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
  padding: 25px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-btn {
  background-color: #f8f9fa;
  border: 2px solid #e0e0e0;
  color: #555;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: #e9ecef;
}

.filter-btn.active {
  background-color: #2c3e50;
  color: white;
  border-color: #2c3e50;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.project-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.project-image {
  height: 280px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  position: relative;
}

.project-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #2c3e50;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.project-badge.completed {
  background-color: #2ecc71;
}

.project-badge.ongoing {
  background-color: #3498db;
}

.project-badge.upcoming {
  background-color: #f39c12;
}

.project-info {
  padding: 30px;
}

.project-title {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.project-location {
  color: #7f8c8d;
  font-size: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-location i {
  color: #3498db;
}

.project-description {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.project-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.project-detail {
  text-align: center;
}

.detail-value {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.detail-label {
  font-size: 13px;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-link {
  display: block;
  text-align: center;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  padding: 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s;
}

.project-link:hover {
  background-color: #1a252f;
}

/* Featured Project */
.featured-project {
  background: linear-gradient(to right, #2c3e50, #34495e);
  color: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.featured-image {
  height: 500px;
  background-size: cover;
  background-position: center;
}

.featured-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  display: inline-block;
  background-color: #f1c40f;
  color: #2c3e50;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 14px;
}

.featured-title {
  font-size: 42px;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.featured-description {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 35px;
  line-height: 1.7;
}

.featured-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.featured-stat {
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.featured-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #f1c40f;
  margin-bottom: 8px;
}

.featured-stat-label {
  font-size: 14px;
  opacity: 0.8;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: white;
  color: #2c3e50;
  text-decoration: none;
  padding: 18px 35px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  width: fit-content;
}

.featured-link:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Project Categories */
.project-categories {
  margin-bottom: 80px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 600;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.category-card {
  background-color: white;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-10px);
}

.category-icon {
  width: 80px;
  height: 80px;
  background-color: #2c3e50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
}

.category-title {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.category-count {
  font-size: 16px;
  color: #7f8c8d;
}

/* Timeline Section */
.timeline-section {
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #2c3e50;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.timeline-year {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-year i {
  color: #3498db;
}

.timeline-title {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.timeline-description {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Project Gallery */
.project-gallery {
  margin-bottom: 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  height: 250px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 80, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.gallery-item:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
}
.gallery-item:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
}
.gallery-item:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
}
.gallery-item:nth-child(4) {
  background-image: url("https://images.unsplash.com/photo-1568605114967-8130f3a36994?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(52, 152, 219, 0.9), rgba(52, 152, 219, 0.9)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 80px;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
  font-weight: 600;
}

.cta-content p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  background-color: white;
  color: #3498db;
  border: none;
  padding: 18px 45px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.cta-btn.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .featured-project {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 300px;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }
}

@media (max-width: 768px) {
  .page-navigation {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .projects-hero h1,
  .featured-title,
  .section-title,
  .cta-content h2 {
    font-size: 36px;
  }

  .projects-hero p,
  .featured-description,
  .cta-content p {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Property Management Section */
.property-management {
  background-color: #2c3e50;
  color: white;
  padding: 80px 0;
  border-radius: 10px;
  margin-bottom: 80px;
}

.pm-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-left: 50px;
  margin-right: 50px;
}

.pm-text h2 {
  font-size: 42px;
  margin-bottom: 30px;
  font-weight: 600;
}

.pm-text p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 25px;
  line-height: 1.7;
}

.pm-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.pm-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pm-feature i {
  color: #f1c40f;
  font-size: 22px;
}

.pm-visual {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}

.pm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.pm-stat {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
}

.pm-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #f1c40f;
  margin-bottom: 5px;
}

.pm-stat-label {
  font-size: 14px;
  opacity: 0.8;
}

/* Investment Services */
.investment-services {
  margin-bottom: 80px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 600;
}

.investment-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.investment-card {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.investment-card:hover {
  transform: translateY(-5px);
}

.investment-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.investment-icon {
  background-color: #3498db;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.investment-title {
  font-size: 26px;
  color: #2c3e50;
  font-weight: 600;
}

.investment-description {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.investment-features {
  margin-bottom: 30px;
}

.investment-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #555;
}

.investment-feature i {
  color: #2ecc71;
}

/* Consultation Section */
.consultation-section {
  background: linear-gradient(rgba(52, 152, 219, 0.9), rgba(52, 152, 219, 0.9)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  border-radius: 10px;
  margin-bottom: 80px;
  text-align: center;
}

.consultation-content {
  max-width: 800px;
  margin: 0 auto;
}

.consultation-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
  font-weight: 600;
}

.consultation-content p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.7;
}

.consultation-btn {
  background-color: white;
  color: #3498db;
  border: none;
  padding: 18px 45px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.consultation-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 3px;
  background-color: #e0e0e0;
  z-index: 1;
}

.process-step {
  background-color: white;
  padding: 40px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #2c3e50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 25px;
}

.step-title {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.step-description {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pm-content,
  .investment-cards {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .services-hero h1,
  .consultation-content h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .page-navigation {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pm-features {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .services-hero h1,
  .consultation-content h2 {
    font-size: 36px;
  }

  .services-hero p,
  .consultation-content p {
    font-size: 18px;
  }

  .section-title {
    font-size: 36px;
  }
}
/* blogs page */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Hero Section */
.blogs-hero {
  background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 60px;
}

.blogs-hero h1 {
  font-size: 52px;
  margin-bottom: 25px;
  font-weight: 700;
}

.blogs-hero p {
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Search & Filter Section */
.search-filter-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-box {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.3s;
  background-color: #f8f9fa;
}

.search-box input:focus {
  outline: none;
  border-color: #2c3e50;
  background-color: white;
}

.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
}

.category-filter {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.category-btn {
  background-color: #f8f9fa;
  border: 2px solid #e0e0e0;
  color: #555;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background-color: #e9ecef;
}

.category-btn.active {
  background-color: #2c3e50;
  color: white;
  border-color: #2c3e50;
}

/* Blog Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}

/* Featured Blog */
.featured-blog {
  margin-bottom: 60px;
}

.featured-blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.featured-blog-card:hover {
  transform: translateY(-5px);
}

.featured-image {
  height: 400px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background-color: #e74c3c;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.featured-content {
  padding: 40px;
}

.featured-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: #7f8c8d;
  font-size: 15px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item i {
  color: #3498db;
}

.featured-title {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.featured-excerpt {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s;
}

.featured-link:hover {
  background-color: #1a252f;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-image {
  height: 220px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #7f8c8d;
  font-size: 14px;
}

.blog-category {
  background-color: #ecf0f1;
  color: #2c3e50;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 600;
}

.blog-title {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-excerpt {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-link {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.blog-link:hover {
  color: #2c3e50;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-widget {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.widget-title {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ecf0f1;
  font-weight: 600;
}

/* Popular Posts */
.popular-posts {
  list-style-type: none;
}

.popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post-image {
  width: 80px;
  height: 80px;
  background-color: #ddd;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.popular-post-content {
  flex: 1;
}

.popular-post-title {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.4;
}

.popular-post-date {
  color: #7f8c8d;
  font-size: 14px;
}

/* Categories Widget */
.categories-list {
  list-style-type: none;
}

.category-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.category-item:last-child {
  border-bottom: none;
}

.category-name {
  color: #555;
  font-weight: 500;
}

.category-count {
  background-color: #ecf0f1;
  color: #2c3e50;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(to right, #2c3e50, #34495e);
  color: white;
}

.newsletter-widget .widget-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-text {
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
}

.newsletter-form input {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: white;
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  width: 100%;
  background-color: white;
  color: #2c3e50;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 80px;
}

.page-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #555;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-btn:hover {
  background-color: #f8f9fa;
}

.page-btn.active {
  background-color: #2c3e50;
  color: white;
  border-color: #2c3e50;
}

.page-btn.arrow {
  width: auto;
  padding: 0 25px;
}

/* Expert Insights Section */
.experts-section {
  margin-bottom: 80px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 600;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.expert-card {
  background-color: white;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.expert-card:hover {
  transform: translateY(-10px);
}

.expert-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 auto 25px;
  background-size: cover;
  background-position: center;
  border: 5px solid #ecf0f1;
}

.expert-name {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.expert-role {
  color: #3498db;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}

.expert-bio {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.expert-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: #ecf0f1;
  color: #2c3e50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #2c3e50;
  color: white;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .search-filter-section {
    flex-direction: column;
    align-items: stretch;
  }

  .category-filter {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-navigation {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .blogs-hero h1,
  .section-title {
    font-size: 36px;
  }

  .blogs-hero p {
    font-size: 18px;
  }

  .featured-title {
    font-size: 28px;
  }

  .experts-grid {
    grid-template-columns: 1fr;
  }

  .pagination {
    flex-wrap: wrap;
  }
}/* =========================
   WhatsApp Floating Widget
========================= */
.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

