:root {
  --primary: #eb2c25;
  --dark: #0f172a;
  --muted: #64748b;
  --primaty-80: rgb(245, 2, 103);
  --border: #e5e7eb;
  --bg: #f8fafc;
  --card: #ffffff;
  --radius: 16px;
  --neutral-50: #797C80;
  --transition: 0.3s ease;
}


/*-----------------------------------*\
  #COMMONS
\*-----------------------------------*/
html {
  scroll-behavior: smooth;
}

* { 
  margin:0; 
  padding:0; 
  box-sizing:border-box; 
}
body { 
  font-family: "Inter", sans-serif;
  background: var(--bg); 
  color: var(--dark); 
  line-height:1.6; 
}
a { 
  text-decoration:none; 
  color:inherit; 
}
img { 
  max-width:100%; 
  display:block; 
}
.container { 
  max-width:1400px; 
  margin:auto; 
  padding:2rem 1rem; 
}
li{
  list-style: none;
}
/* ===== NAVBAR===== */
header {  
  border-bottom:1px solid var(--border); 
  position:sticky; 
  top:0; 
  z-index:100;
  background: white;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  padding: 0px 10px;
}

header.scrolled {
  background: #db0000;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.navbar { 
  display:flex; 
  justify-content:space-between; 
  align-items:center;
  padding: 0.75rem 0; 
}
.navbar-list { 
  display:flex; 
  gap:1.5rem; 
  list-style:none; 
}
.navbar-link { 
  position: relative;
  font-weight: 600;
  font-size:0.95rem; 
  color: var(--muted); 
  transition: var(--transition);
}

header.scrolled .navbar-link {
  color: #ffffff;
}

.navbar-link.active {
  color: var(--primary);
  font-weight: 700;
}

header.scrolled .navbar-link.active{
  color: rgb(241, 241, 241);
}

.navbar-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

header.scrolled .navbar-link::after {
  background-color: #fff;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

.navbar-link:hover, .navbar-link.active { 
  color: var(--primary);}
.logo img { 
  height:50px; 
  margin-right:0.5rem; 
}

header.scrolled .logo img{
  height: 50px;
  width: 50px;
  background-color: #fff;
  padding: 5px;
  border-radius: 50%;
}

.btn-outline-g {
  padding:0.6rem 1.2rem; 
  border:1px solid var(--primary); 
  border-radius:999px; 
  color: var(--primary); 
  transition: var(--transition);
}
header.scrolled .btn-outline-g{
  border:1px solid white; 
  color: white;
}
.btn-outline-g:hover { 
  background:var(--primary); 
  color:#fff; 
}

header.scrolled .btn-outline-g:hover{
  background: black; 
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 50vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: center;
  padding: 2rem 0 5rem 2rem;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s ease, transform 1.1s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.692);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-content {
  max-width: 700px;
  position: relative;
  color: #ffffff;
  opacity: 0;
  margin: left;
  text-align: center;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.4s;
}

.hero-content h1{
  font-size: clamp(2.4rem, 3vw, 3rem);
  margin-bottom: 40px;
  text-align: left;
  line-height: 50px;
}
.hero-content p{
  font-size: 1rem;
  margin: left;
  color: #ffffff;
  font-weight: 600;
  text-align: left;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1,
.hero-content p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-content p {
  transition-delay: 0.2s;
}

.hero-slide.active .hero-content h1,
.hero-slide.active .hero-content p {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ABOUT SECTION ===== */

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.intro-text p {
    color: var(--muted);
}

.intro-image img {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.about {
  background: #fff;
  padding: 2rem 0;
}

.tt {
  text-align: center;
  margin-bottom: 1rem;
}

.tt h2 {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tt h1 {
  max-width: fit-content;
  position: relative;
  margin: auto;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 0.5rem;
}
.tt h1::after{
  content: "";
  width: 100px;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  bottom: -1%;
  left: 0;
}

.about-content {
  display: grid;
  gap: 3rem;
}

.hstry {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.hstry h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.hstry p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.msvs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 20px;
}

.msv-c {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.msv-c:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.msv-c h3 {
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.corevalues ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.msv-c li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}

.h-df-c{
  max-width: 80%;
  margin: 25px auto;
}

.h-df{
  position: relative;
  border: .5px solid rgba(218, 218, 218, 0.644);
}

.h-df span{
  position: absolute;
  background-color: red;
  padding: 2px 10px;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  color: white;
  top: 0;
  left: 0;
  font-weight: 900;
}

.feature-icon {
  color: var(--primary);
}

/* ===== TEAM SECTION ===== */
.team {
  text-align: center;
  margin-top: 4rem;
}

.team .title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.team-container {
  position: relative;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 420px;
  min-height: 460px;
  margin: auto;
}

.team-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  pointer-events: none;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease,
    visibility 1.2s ease;
}

.team-card.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.team-banner {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: auto;
  margin-bottom: 1rem;
  border: 4px solid var(--primary);
}

.team-name {
  font-weight: 700;
  font-size: 1.2rem;
}

.team-title {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.quotation-img {
  margin: 1rem auto;
  opacity: 0.5;
}

.team-desc {
  color: var(--muted);
  font-style: italic;
}

.service {
  margin-top: 5rem;
  text-align: left;
}

.service .title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.service-icon {
  font-size: 1.8rem;
  color: var(--primary);
}

.service-title {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.service-desc {
  color: var(--muted);
}

/* ===== STATS ===== */
.stats {
  background: #dbe2fa2a;
  padding: 0;
}

.property-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  list-style: none;
}

.stats-card {
  background: #cbd5f569;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.card-title-s {
  font-size: 2.2rem;
  font-weight: 800;
  color: hsl(var(--color));
}

.card-text {
  color: #444041c0;
}

/* ===== SERVICES ===== */

#services{
  margin-top: 40px;
}
.section.feature {
  padding: 1rem 0;
}

.section.feature:nth-child(even) {
  background: var(--bg);
}

.feature .container {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .feature .container {
    grid-template-columns: 1.1fr 1fr;
  }

  /* Alternate layout */
  .feature-2 .container {
    grid-template-columns: 1fr 1.1fr;
  }

  .feature-2 .feature-banner {
    order: 2;
  }

  .feature-2 .feature-content {
    order: 1;
  }
}
.feature-banner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.feature-banner:hover .img-cover {
  transform: scale(1.06);
}
.feature-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
}

.feature-text {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.feature-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--dark);
}

.feature-icon {
  color: var(--primary);
  font-size: 1.2rem;
}
.exp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background-color: #f50d3f;
  color: white;
  transition: transform 0.3s ease, background 0.3s ease;
}

.exp-btn:hover {
  transform: translateY(-2px);
  background-color: unset;
  border: 1px solid red;
  color: red;
}
.feature {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PROMOTIONS ===== */

@media (min-width: 1024px) {
  .cta-cnt {
    display: grid;
    gap: 4rem;
  }
  .cta-cnt {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.propmo-cnt .title,
.trending .title {
  margin-bottom: 1.5rem;
}

/* CTA CARD */
.cta-container {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.cta-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.6)
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}

.discount {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fde047;
}

.cta-title {
  font-size: 2rem;
  margin: 0.5rem 0;
}

.cta-btn {
  margin-top: 1rem;
  align-self: flex-start;
  background: var(--primary);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
}

/* ===== TRENDING ===== */
.trnd-cnt {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

.trnd-cnt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.55)
  );
  z-index: 1;
}

.trend-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.trend-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trnd-cnt:hover .trend-banner img {
  transform: scale(1.05);
  transition: transform 1s ease;
}

.trend-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2.5rem;
  max-width: 600px;
}

.trend-content h4 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.trend-content p {
  color: #e5e7eb;
  line-height: 1.7;
}

.prc-cont {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0;
}

.prc-cont h4 {
  color: #fde047;
  font-size: 1.8rem;
}

.prc-cont h3 {
  font-weight: 600;
}

.trend-content a {
  display: inline-block;
  margin-top: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
}

.offer-time {
  margin-top: 1.5rem;
}

.offer-time h4 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.trend-content a {
  display: inline-block;
  margin-top: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
}

.offer-time {
  margin-top: 1.5rem;
}

.offer-time h4 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.tl {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.tl li {
  background: var(--bg);
  padding: 0.8rem;
  border-radius: 12px;
  text-align: center;
  min-width: 70px;
  font-size: 12px;
}

.tl li span{
  color: #64748b;
}

.tl li .num {
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: 10px;
  color: var(--primary);
}

/* ===== TESTIMONIALS ===== */
.testimonial-form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 100%;
  margin: 10px auto;
  margin-bottom: 30px;
}

.testimonial-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.testimonial-form-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.testimonial-form-container input,
.testimonial-form-container textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.testimonial-form-container textarea {
  resize: vertical;
  min-height: 120px;
}

.testimonial-form-container button {
  background-color: red;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s ease;
}

.testimonial-form-container button:hover {
  background-color: black;
}

.testimonial-form-container .note{
  font-size: 12px;
  color: #777;
  text-align: center;
}

.section__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5rem 2rem 2rem;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.section__card img, h5,h6{
  width: fit-content;
  margin: auto;
  align-items: center;
}

.section__card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 60%;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: black;
  z-index: -1;
  transition: .9s;
}

.section__card span {
  position: absolute;
  top: 5%;
  left: 2%;
  padding: 1rem;
  font-size: 14px;
  color: white;
}

.section__card h4 {
  text-align: center;
  font-size: var(--fs-title-small);
  margin-top: var(--lh-headline-small);
  font-weight: 900;
  color: var(--primary-80);
  transition: 0.3s;
}

.section__card p {
  width: 70%;
  color: var(--neutral-60);
  transition: 0.3s;
  text-align: center;
  font-style: italic;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 40px;
}

.section__card img {
  margin-bottom: 1rem;
  max-width: 100px;
  border-radius: 100%;
  border: 2px solid var(--border);
  transition: 0.3s;
}

.section__card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-80);
  transition: 0.3s;
}

.section__card h6 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  transition: 0.3s;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s linear;
}

.section__card {
    min-width: 100%;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .navbar-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
    border-bottom: 1px solid var(--border);
  }

  .navbar-list.open {
    max-height: 320px;
  }

  .navbar-list li {
    padding: 1rem;
    border-top: 1px solid var(--border);
  }

  .btn-outline-g {
    display: none;
  }
  
}

/* ===== FAQ ===== */
.faq {
  background: #f8fafc;
}

.faq-l {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}
.faq .container {
  display: grid;
  gap: 20px;
}

.faq-l{
  display: grid;
  gap: 20px;
}

.faq .title-wrapper {
  background-color: white;
  padding: 35px 30px;
  box-shadow: var(--shadow-4);
  border-radius: 8px;
}

.faq .section-title {
  font-size: var(--fs-title-large);
  margin-bottom: 20px;
}

.faqs-cntct{
  display: none;
  margin-top: 20px;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
}
.faqs-cntct ul li{
  display: flex;
  gap: 1rem;
}
.faqs-cntct ul li span{
  color: #f5074e;
}
.faqs-cntct ul li p{
  font-size: 12px;
}

.faqs-cntct h6{
  width: fit-content;
  margin: 20px auto;
  background-color: #f5074e;
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
}

.faqs-cntct .socio{
  width: fit-content;
  display: flex;
  gap: 20px;
  margin: 20px auto;
}

.faq-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.card-action {
  width: 100%;
  padding: 1.4rem 1.6rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

.action-icon ion-icon {
  font-size: 1.4rem;
}

.action-icon .close {
  display: none;
}

@media (max-width: 768px) {
  .faq .title-wrapper {
    padding: 25px 20px;
  }

  .faq-card .card-action {
    padding: 16px 18px;
  }

  .faq-card .card-title {
    font-size: 15px;
  }
}


/* CONTENT */
.card-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.6rem;
  transition: max-height 0.35s ease;
}

.card-content p {
  padding-bottom: 1.4rem;
  color: #475569;
  line-height: 1.7;
}

/* ACTIVE */
.faq-card.active .open {
  display: none;
}

.faq-card.active .close {
  display: block;
}

.faq-card.active {
  border-color: var(--primary);
}

/* ===== BLOG ===== */
.blog {
  background: #f8fafc;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.blog-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
}

/* IMAGE */
.card-banner {
  position: relative;
  overflow: hidden;
}

.card-banner img {
  height: 200px;
  transition: transform 0.6s ease;
}

.blog-card:hover .card-banner img {
  transform: scale(1.08);
}

/* CATEGORY BADGE */
.abs-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}

/* CONTENT */
.card-content-r{
  padding: 1.4rem 1.6rem 1.8rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.badge img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
}

.card-title:hover {
  color: var(--primary);
}

.cont {
  color: #475569;
  margin: 0.8rem 0 1.2rem;
}

.read-m a {
  color: var(--primary);
  font-weight: 600;
}

/* META */
.card-meta-list {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #64748b;
}

.card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-card .card-meta-item:not(:last-child)::after {
  content: "|";
  display: inline-block;
  color: gray;
  padding-inline: 10px;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/
.footer{
  background-color: black;
  color: rgb(252, 252, 252);
}
.footer .logo{
  display: flex;  
  width: fit-content;
  align-items: center;
  margin-top: 10px;
}
.footer .logo img{
  border-radius: 10px;
  padding: 5px;
  background: white;
}
.footer .logo .title_txt{
  font-size: 20px;
  padding-left: 10px;
  transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.title_txt:where(:hover, :focus-visible){
  color: red;
}
.footer-top .container{
  padding-top: 20px;
}
.footer-top .container .footer-brand{
  padding-block: 20px;
  display: grid;
  gap: 24px;
}

.footer-text {
  margin-block: 16px;
}

.footer-list-title{
  margin-block-end: 16px;
  color: red;
}

.footer-list{
  display: grid;
  gap: 16px;
}

.footer-link{
  transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-link:where(:hover, :focus-visible){
  color: red;
}

.social-list{
  display: flex;
  gap: 10px;
}

.social-list li a{
  width: 30px;
  height: 30px;
}

.social-list li a .m-i{
  font-size: 25px;
} 

.newsletter-form { margin-block: 20px 35px; }


.newsletter-form .input-field {
  background-color: white;
  padding: 12px;
  border-radius: 12px;
  margin-block-end: 20px;
  outline: none;
  border: none;
}

.newsletter-form .btn {
  width: fit-content;
  justify-content: center;
  background-color: red;
  border-radius: 10px;
  padding: 10px 20px;
  outline: none;
  border: none;
}

.footer-bottom{
  border-block-start: 1px solid gray;
}

.footer-bottom .container{
  font-size: 14px;
  padding-block: 20px;
  display: grid;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-top .footer-brand{
    padding-block: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) {
  .test-wrap{
    max-width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .test-wrap .comment{
    width: 55%;
  }
  .test-wrap .comment .title{
    width: fit-content;
    margin: auto;
  }
  .slider-wrapper{
    max-width: 40%;
  }
  .section__card {
    max-width: 40%;
  }
  .faq .title-wrapper {
    background-color: unset;
  }
  .faq .faq-l{
    display: grid;
    gap: 20px;
  }
  .faq .container {
    grid-template-columns: 0.48fr 1fr;
    align-items: flex-start;
  }
  .faqs-cntct{
    display: block;
  }
}

@media (min-width: 1024px) {

  /* ===== ABOUT SPLIT LAYOUT ===== */
  .service-container {
    grid-template-columns: unset;
  }
  .about-content {
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .hstry {
    text-align: left;
    margin: 0;
  }

  .msvs {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .msv-c p{
    font-size: 14px;
  }
  .msv-c span{
    font-size: 14px;
  }

  /* ===== TEAM + SERVICES SPLIT ===== */
  .container-tcp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}


/* Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    overflow: auto; /* allow scrolling on small screens */
}

/* Modal Container */
.modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    position: relative;
    animation: fadeInUp 0.3s ease;
    display: flex;
    flex-direction: column;
    max-height: 90vh; /* prevent modal from exceeding viewport */
}
.form-container{
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  margin: 40px auto;
  border: 1px solid rgba(199, 199, 199, 0.658);
  padding: 10px;
}
/* Sticky header for title and close button */
.modal-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    padding: 1.5rem 2rem 1rem 2rem;
    display: grid;
    border-radius: 12px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.form-header{
  display: grid;
}
.modal-header h2,
.modal-header p{
  width: 95%;
}
.modal-header p{
  margin-top: 20px;
}
/* Modal content scrollable */
.modal-content {
    overflow-y: auto;
    padding: 1rem 2rem 2rem 2rem;
}

/* Close Button */
.modal-close {
    position: absolute;
    /* background: rgb(0, 0, 0); */
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #ff0000;
    top: 5%;
    right: 1%;
    padding: 2px 7px;
    border-radius: 50%;
}

.modal-close:hover {
    color: #000000;
}

/* Headings */
.modal-container h2 {
    margin: 0;
    font-size: var(--fs-title-large);
}

.modal-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 1rem;
}

/* Form */
.quote-form .form-group {
  margin-bottom: 1rem;
}

.quote-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 0.3rem;
    color: #333;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-60);
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 0.8rem;
  border-radius: 6px;
  border: none;
  background: red;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.btn-submit:hover {
  background: black;
}

/* Input wrapper for icons */
.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
    padding-right: 2.5rem;
}

/* Icons inside inputs */
.input-wrapper i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    font-size: 14px;
}

/* Error message */
.error-text {
    color: red;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    animation: shake 0.3s ease-in-out;
}

/* Error animation */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}

/* Button hover */
.btn-submit:hover {
    background: darkred;
}


.modal-content h4{
  font-size: 18px;
  color: var(--primary-60);
  margin-top: 15px;
}

.modal-content h6{
  font-size: 14px;
  text-align: left;
  margin: 0px 0px;
  margin-top: 5px;
}
.modal-content li,
.modal-content p{
  font-size: 12px;
}
.modal-content li{
  list-style: disc;
  margin-left: 20px;
}

.modal-content::-webkit-scrollbar {
    width: 6px;  /* thinner scrollbar */
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1; /* track color */
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #ccc; /* thumb color */
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #999; /* thumb hover color */
}

/* Scrollbar Styling for Firefox */
.modal-content {
    scrollbar-width: thin;       /* "auto" or "thin" */
    scrollbar-color: #ccc #f1f1f1; /* thumb and track */
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .modal-container {
        max-width: 100%;
        border-radius: 8px;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-content {
        padding: 1rem;
    }
}


.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 3rem 0rem 10rem 2rem;
  text-align: center;
}
.hs-b-r{
  background-image: url('../images/keys.jpg')
}
.hs-b-t{
  background-image: url('../images/smart-city.jpg')
}
.hs-b-h{
  background-image: url('../images/hos_b.jpg')
}
.hosp-h{
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url("../images/hp1.JPG");
}
.hosp-t{
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4)), url("../images/tech.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.rel-h{
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4)), url("../images/keys.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.hero h1 {
  font-size: clamp(5rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
  text-align: left;
}

.hero h6{
  display: flex;
  width: fit-content;
  text-align: left;
  font-size: 24px;
  gap: 5px;
  margin: 0;
}
.hero h6 a{
  color: red;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.service-card {
  position: relative;
  background: var(--card);
  padding: 2rem 1rem 4rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.service-card h3 {
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card a{
  position: absolute;
  background-color: red;
  bottom: 5%;
  left: 5%;
  padding: 5px 10px;
  border-radius: 20px;
  color: white;
  font-weight: 600;
}
.service-card ul{
  margin-left: 20px;
}
.service-card ul li{
  list-style: disc;
  font-size: 12px;
  color: var(--muted);
}

.card-meta-list{
  margin-top: 10px;
}

.card-meta-item i{
  font-size: 18px;
  color: red;
}
.rating i {
  color: #fbbf24; /* gold */
  font-size: 22px;
}

.blog-card .btn{
  background-color: red;
  padding: 5px 10px;
  border-radius: 20px;
  color: white;
  font-weight: 600;
}

.cta {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta a {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.7rem 1.8rem;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

/* =====================
   PRICING TABS
===================== */
.pricing-tabs {
    text-align: center;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab {
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 0.9rem;
    background: #fff;
}

.tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pricing-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.pricing-grid.active {
    display: grid;
}

.price-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.price-card h4 {
    margin-bottom: 0.4rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
}

.price-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.price-card li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.projects-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.projects-grid.active {
    display: grid;
}

.project-card .detailed {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.project-card .detailed img {
    height: 220px;
    object-fit: cover;
}

.project-card .detailed div {
    padding: 1.5rem;
}

.tech-stack {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0.8rem 0 1.2rem;
}

.btn-quote {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== PARTNERS MARQUEE ===== */
.partners {
  background: #fff;
}

.partners-intro {
  max-width: 680px;
  margin: 1rem auto 3rem;
  text-align: center;
  color: var(--muted);
}

/* MARQUEE WRAPPER */
.partners-marquee {
  max-width: 500px;
  overflow: hidden;
  position: relative;
  margin: auto;
}

/* TRACK */
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll-marquee 22s linear infinite;
}

/* PAUSE ON HOVER */
.partners-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* CARD */
.partner-card {
  max-width: 150px;
  flex: 0 0 calc(100% / 3);
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* filter: grayscale(100%); */
  transition: var(--transition);
}

.partner-card img {
  height: 60px;
  width: 60px;
  opacity: 0.85;
  border-radius: 50%;
}

.partner-card:hover {
  /* filter: grayscale(0); */
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

/* ANIMATION */
@keyframes scroll-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .partner-card {
    flex: 0 0 100%;
  }

  .marquee-track {
    gap: 1.2rem;
  }
}

@media (max-width: 500px) {
  header.scrolled .navbar-link {
    color: #ff0000;
  }
  .cta-title {
  font-size: .5rem;
  }
  .trend-content h4 {
  font-size: .8rem;
  }
  .tl {
    display: grid;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    margin-bottom: 1rem;
  }
  .partners-marquee {
    max-width: 300px;
  }
}

.rel-h .searchbar{
  width: fit-content;
  margin-top: 40px;
  background-color: rebeccapurple;
  padding: 8px;
}
.searchbar .search-item{
  position: relative;
  background-color: gray;
}
.search-item .search-item-field{
  height: 76px;
  padding: 40px 16px 12px;
}


.featured-r{ 
  margin-top:4rem; 
}
.featured-card-r { 
  display:flex; 
  flex-wrap:wrap; 
  gap:1.5rem; 
  align-items:center; 
  background:#ffffff; 
  padding:1.5rem; 
  border-radius:16px; 
  order:1px solid #e5e7eb}
.featured-card-r figure { 
  flex:1; 
}
.featured-card-r .featured-content-r {
  flex:1; 
}
.featured-card-r .title-large-r { 
  font-weight:700; 
  font-size:1.5rem; 
  color:#eb2c25; }
.featured-card-r h3 { 
  margin:0.5rem 0; 
  font-size:1.3rem; 
}
.featured-card-r p { 
  color: #64748b; 
  margin-bottom:1rem; 
}
.featured-card-r .btn { 
  padding:0.6rem 1.2rem; 
}

.property-r { 
  margin-top:4rem; 
}
.property-r .title-wrapper-r { 
  margin-bottom:2rem; 
  text-align:center;
}
.property-r .tabs-r { 
  display:flex; 
  gap:1rem; 
  justify-content:center; 
  margin-bottom:2rem; 
  flex-wrap:wrap;
}
.property-r .tab-r { 
  padding:0.5rem 1rem; 
  border-radius: 16px; 
  border:1px solid #e5e7eb; 
  cursor:pointer; 
  transition: 0.3s ease;
}
.property-r .tab-r.active{ 
  background: #eb2c25; 
  color:#fff; 
  border-color:#eb2c25;
}
.property-list-r,
.featured-list-r
{ 
  display:grid; 
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); 
  gap:1.8rem;
}
.card-r { 
  background: #ffffff; 
  border-radius: 16px; 
  border:1px solid #e5e7eb; 
  overflow:hidden; 
  transition: 0.3s ease;
}
.card-r:hover { 
  box-shadow:0 6px 20px rgba(0,0,0,0.1);
}
.card-banner-r { 
  position:relative; 
}
.card-banner figure { 
  margin:0;
}
.card-banner-r .badge { 
  position:absolute; 
  top:1rem; 
  left:1rem; 
  background:var(--primary); 
  color:#fff; 
  padding:0.2rem 0.5rem; 
  font-size:0.75rem; 
  border-radius:var(--radius);
}
.card-content-r { padding:1rem; }
.card-content-r .title-large { font-weight:700; color:var(--primary); display:block; margin-bottom:0.3rem; }
.card-title-r { font-weight:600; font-size:1.1rem; margin-bottom:0.3rem; display:block; }
.card-text-r { color:var(--muted); font-size:0.9rem; margin-bottom:0.5rem; }
.card-meta-list-r { display:flex; gap:0.5rem; margin-top:0.5rem; }
.meta-item-r { display:flex; align-items:center; gap:0.3rem; font-size:0.85rem; color:var(--muted);}
.meta-icon-r { color:var(--primary);}
.card-r .btn-r { margin-top:1rem; display:inline-block; padding:0.5rem 1rem; border-radius: 16px; background: red; color:#fff; }

/* @media (min-width: 768px) {
  .searchbar{
    grid-template-columns: 160px 160px 1fr max-content;
    gap: 0;
  }

  .search-item .material-symbols-rounded{
    display: none;
  }

  .search-item:not(:last-of-type)::after{
    content: "";
    position: absolute;
    top: 16px;
    left: 90%;
    bottom: 16px;
    width: 1px;
    background-color: rgb(107, 107, 107);
  }

  .search-btn{
    height: 100%;
    margin-inline-start: 8px;

  }
} */

.testimonial-section {
  padding: 10px 20px;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.slider-wrapper {
  max-width: 900px;
  margin: 0px auto;
  position: relative;
  display: flex;
  align-items: center;
}

.slider-window {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.video-card {
  min-width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

.video-card video {
  width: 100%;
  height: 250px;
  min-height: 250px;
  max-height: 250px;
  border-radius: 12px;
}

.video-card p {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
}

.slider-wrapper .nav-btn {
    position: absolute;
    top: 30%;
    background: #111827;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
}

.prev { left: -20px;}
.next { right: -20px; }

.nav-btn:hover {
    background: #ff1919;
}

/* 📱 Mobile layout */
@media (max-width: 768px) {
    .slider-wrapper .nav-btn {
      top: 25%;
    }
    .video-card {
        min-width: 100%;
    }
}


.hero-search {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.search-grid {
  display: flex;               /* Horizontal alignment */
  align-items: center;         /* Center vertically */
  gap: 1rem;                   /* Space between items */
  flex-wrap: wrap;             /* Wrap on smaller screens */
}

.search-item {
  display: flex;
  flex-direction: column;
  flex: 1 1 150px;             /* Grow/shrink, min width 150px */
}

.search-item .label {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #444;
}

.search-item-field {
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 0 12px;
  font-size: 0.9rem;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 50px;
  padding: 0 1.4rem;
  background: linear-gradient(135deg, #1c6cff, #0041c4);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: 0.25s;
  flex-shrink: 0;              /* Prevent button from shrinking */
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(28,108,255,0.35);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .search-grid {
    flex-wrap: wrap;            /* Items wrap to new row */
  }
  .search-item {
    flex: 1 1 45%;              /* Two items per row */
  }
  .search-btn {
    flex: 1 1 100%;             /* Button spans full width */
  }
}

@media (max-width: 550px) {
  .search-item {
    flex: 1 1 100%;             /* Single column on mobile */
  }
  .search-btn {
    width: 100%;                /* Full width */
  }
}
