/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Georgia, serif;
}

body {
  background: #ffffff;
  width: 100%;
  overflow-x: hidden;
}
section.services {
    background-color: #f99e0c !important;
    margin-top:-45px;
}




/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 90vh;

  /* FULL WIDTH BREAKOUT */
  width: 100vw;
  left: 50%;
  margin-left: -50vw;

  background-image: url(https://newviewrealtygroup.com/wp-content/uploads/2026/02/imgi_22_bg-send-message-a.jpg);
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 140px 20px 100px;
  overflow: hidden;
}

/* Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

/* Small top text */
.hero-location {
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Main heading */
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 25px;
}

/* Subtitle */
.hero-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Description */
.hero-desc {
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Buttons */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 100px 20px 70px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 14px;
  }
.hero-location {
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height:24px;
}
  .hero-cta a {
    width: 100%;
    text-align: center;
  }
}






/* cta hero section  – BRAND COLORS */


.hero-cta {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.primary-cta {
    background: #f5a623;
    color: #fff;
    padding: 15px 30px;
    font-weight: 600;
}

.secondary-cta {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 30px;
}



/* ================= SERVICES SECTION ================= */

/* FULL WIDTH ORANGE BACKGROUND */
.services {
  background: #f99e0c;
  padding: 80px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* INNER CONTENT CENTERED */
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.service-box {
  text-align: center;
  padding: 34px 26px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #f1f1f1;
  transition: all 0.35s ease;
}

.service-box:hover {
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
  transform: translateY(-5px);
  border-color: #f99e0c;
}

/* Icon */
.service-box .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff3e0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-box .icon i {
  font-size: 26px;
  color: #f99e0c;
}

/* Title */
.service-box h3 {
  font-size: 13px;
  letter-spacing: 1.6px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #000;
}

/* Text */
.service-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  max-width: 260px;
  margin: 0 auto;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {

  .services {
    padding: 60px 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-box {
    padding: 28px 20px;
  }

  .service-box h3 {
    font-size: 12px;
  }

  .service-box p {
    font-size: 13px;
  }
}







/* COLORS */
.box-white { background: #ffffff; color: #000; }
.box-yellow { background: #f3e2a2; color: #000; }
.box-red { background: #8b1d1d; color: #fff; }
.box-dark { background: #111111; color: #fff; }

/* HERO RESPONSIVE */
@media (max-width: 1024px) { .hero-title { font-size: 48px; } }
@media (max-width: 480px) { .hero-title { font-size: 34px; } }

/* ================= ABOUT SPLIT ================= */

.about-split {
  width: 100%;
  background: #ffffff;
  padding-bottom:70px;   /* top bottom equal */
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;   /* 1400 se kam karo */
  margin: 0 auto;
  gap: 60px;           /* equal spacing */
  padding: 0 20px;     /* equal side padding */
}


/* LEFT TEXT */

.about-text {
  padding: 20px 40px;
}

.about-text h2 {
  font-size: 44px;
  font-weight: normal;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
}

/* BUTTON */

.about-text .btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.about-text .btn:hover {
  background: #000;
  color: #fff;
}

/* RIGHT IMAGE */

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* TABLET */

@media (max-width: 1024px) {

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2 {
    font-size: 36px;
  }

}

/* MOBILE */

@media (max-width: 600px) {

  .about-split {
    padding-bottom:50px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 15px;
  }

}

/* ================= SERVICES ================= */


.services-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.services-head {
  text-align: center;
  margin-bottom: 70px;
  margin-left: -110px;
}

.services-head span {
  display: block;
  font-size: 12px;
  letter-spacing: 4px;
  margin-bottom: 10px;
  color: white;
  margin-left:100px;
}

.services-head h2 {
  font-size: 42px;
  font-weight: normal;
  letter-spacing: 2px;
  color: white;
  margin-left:100px;
    
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
 
  
}

/* SERVICE BOX */
.service-box { transition: 0.3s ease;
width:100%;
    
}

.service-box .icon { font-size: 34px; color: #222; margin-bottom: 15px; transition: color 0.3s ease; }
.service-box h3 { font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; color: #000; transition: color 0.3s ease; }
.service-box p { font-size: 14px; line-height: 1.7; color: #333; }
.service-box:hover .icon,
.service-box:hover h3,
.service-box:hover p { color: #8b1d1d; }





/* ================= COUNTER ================= */

.counter-section {
  background: #f9f9f9;
  width: 100%;
  padding: 60px 20px;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.counter-box h3 {
  font-size: 56px;
  color: #444;
  margin-bottom: 10px;
  font-weight: normal;
}

.counter-box p {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .counter-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .counter-box h3 {
    font-size: 40px;
  }

  .counter-box p {
    font-size: 13px;
  }
}



/* ================= TESTIMONIALS ================= */
.testimonials {
  background: #ffffff;
  width: 100vw;
  padding: 100px 0;
}

.testimonials-inner {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
  margin-left:80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-card {
  border: 1px solid #d2b47d;
  text-align: center;
  background: #fff;
  padding: 25px;
    width: 279px;
  
}

.stars { color: #d2b47d; margin-bottom: 15px; }
.testimonial-card p { font-size: 14px; line-height: 1.7; margin-bottom: 15px; }
.testimonial-card span { font-size: 13px; font-weight: 600; }

/* ================= APART SECTION ================= */
.apart-section {
  background: #0b0b0b;
  width: 100vw;
  color: #fff;
  padding: 100px 0;
  
}
.apart-left {
    margin-left: 45px;
}
.apart-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LEFT */
.apart-small { font-size: 12px; letter-spacing: 4px; color: #ccc; }
.apart-left h2 { font-size: 48px; line-height: 1.05; margin: 15px 0 40px; font-weight: normal; }
.apart-slider h4 { color: #d2b47d; font-size: 18px; margin-bottom: 12px; }
.apart-slider p { font-size: 15px; line-height: 1.7; color: #ddd; max-width: 520px; }

/* SLIDES */
.apart-slide { display: none; }
.apart-slide.active { display: block; }

/* NAV */
.apart-nav { margin-top: 30px; display: flex; gap: 20px; }
.apart-nav button { background: none; border: none; color: #777; font-size: 24px; cursor: pointer; }
.apart-nav button:hover { color: #fff; }

/* RIGHT */
.video-box { position: relative; }
.video-box img
{ width: 100%; 
display: block; }

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #1e6fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}











/* ================= BUTTON ================= */
.btn {
  padding: 20px 30px;
  border: 1px solid black;
  background-color: white;
  margin-top: 20px;
}

/* ================= RESPONSIVE GLOBAL ================= */
@media (max-width: 1024px) { .hero-title { font-size: 48px; } }
@media (max-width: 900px) { .apart-inner { grid-template-columns: 1fr; } .apart-left h2 { font-size: 36px; } }
@media (max-width: 768px) { .about-text h2 { font-size: 32px; } }
@media (max-width: 600px) {
  .services-head h2 { font-size: 32px; }
  .services-grid, .counter-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 30px; }
  
  
}








.area-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

/* BOX */
.area-item {
  position: relative;
  height: 360px;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

/* IMAGE */
.area-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.55);
  transition: 0.5s ease;
}

/* CONTENT */
.area-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.area-content h3 {
  font-size: 42px;
  font-weight: normal;
  color: #ffffff;
  margin-bottom: 10px;
  transition: 0.4s ease;
}

.area-content span {
  font-size: 12px;
  letter-spacing: 3px;
  color: #ffffff;
  border-top: 1px solid #ffffff;
  padding-top: 8px;
  transition: 0.4s ease;
}

/* HOVER */
.area-item:hover .area-bg {
  filter: brightness(1);
  transform: scale(1.05);
}

.area-item:hover .area-content {
  background: rgba(255,255,255,0.75);
}

.area-item:hover h3,
.area-item:hover span {
  color: #111111;
  border-color: #111111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .area-grid {
    grid-template-columns: 1fr;
  }

  .area-item {
    height: 280px;
  }

  .area-content h3 {
    font-size: 32px;
  }
}





.btn-service{
 display:block;
     width:250px;
     text-align:center;
     padding:20px 0;
     background:#ffffff;
     text-decoration:none;
     color:#000;
     margin:auto;
     font-weight:600;
     margin-top:30px;
    }



.client-testimonials {
  background: #f5f7fa;
  padding: 70px 20px;
  text-align: center;
}

.client-testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: white;
}


/* ================================= */
/* SERVICES / TESTIMONIAL STYLE     */
/* ORANGE BACKGROUND SECTION        */
/* ================================= */

.client-testimonials {
  background: #f59e0b; /* Orange Background */
  padding: 90px 0;
}

.client-testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== GRID 3 PER ROW ===== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ===== RECTANGLE CARD ===== */

.testimonial-card {
  background: #eeeeee;
  padding: 50px 35px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
  width:324px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ===== ICON CIRCLE ===== */

.testimonial-card .icon-circle {
  width: 70px;
  height: 70px;
  background: #f3e4cf;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card .icon-circle i {
  font-size: 24px;
  color: #f59e0b;
}

/* ===== TITLE ===== */

.testimonial-card h3 {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #111;
  text-transform: uppercase;
}

/* ===== TEXT ===== */

.testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

/* ===== CENTER BUTTON ===== */

.testimonial-cta {
  text-align: center;
  margin-top: 60px;
}

.testimonial-cta .btn {
  background: #eeeeee;
  color: #f59e0b;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s ease;
}

.testimonial-cta .btn:hover {
  background: #111;
  color: #fff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ONLY Client Testimonials Section */

.client-testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px; /* adjust if needed */
}

/* Push name to bottom */

.client-testimonials .testimonial-card h4 {
  margin-top: auto;
  padding-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

/* Optional: Investor text styling */

.client-testimonials .testimonial-card h4 span {
  font-size: 14px;
  font-weight: 400;
  color: #555;
}
/* ===== READ MORE BUTTON FIX ===== */

.client-testimonials .read-more-btn {
  display: block;
  width: fit-content;
  margin: 5px auto 0 auto;  /* center */
  padding: 14px 36px;
  background: #eeeeee;
  color: #f59e0b;
  border: 1px solid #f59e0b;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.client-testimonials .read-more-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}


/* ===================================== */
/* TESTIMONIAL CTA SECTION - PREMIUM    */
/* ===================================== */

.testimonials-cta-section {
  position: relative;
  background: url('https://newviewrealtygroup.com/wp-content/uploads/2026/02/winston-salem.jpg') center center / cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Dark overlay for better text visibility */
.testimonials-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.testimonials-cta-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Heading */
.testimonials-cta-heading {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Text */
.testimonials-cta-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #e5e5e5;
}

/* Button Wrapper */
.testimonials-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== PRIMARY BUTTON (Screenshot Style) ===== */

.testimonials-btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  padding: 18px 45px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s ease;
  display: inline-block;
}

.testimonials-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* ===== SECONDARY BUTTON ===== */

.testimonials-btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  transition: 0.3s ease;
}

.testimonials-btn-secondary:hover {
  background: #fff;
  color: #111;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .testimonials-cta-heading {
    font-size: 30px;
  }

  .testimonials-btn-primary,
  .testimonials-btn-secondary {
    width: 100%;
    text-align: center;
  }
}


/* Darker Overlay */

.testimonials-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75); /* Darker */
  z-index: 1;
}



@media (max-width: 992px) {
    
    .client-testimonials .testimonial-card{
        margin: auto;
    }
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    width: 100%;
    overflow: hidden;
  }

  .about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0;
    padding: 0;
  }

  .about-text {
    padding: 40px 20px;
    text-align: center;
  }

}
