@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');


.hero {
    height: 75vh;
  }
  .hero-content {
    margin-top: 10vh;
    align-items: center;
    width: 100%;
  }
  .hero-content h1{
    text-align: center;
    width: 670px;
  }


   /* --- CSS Palette & Variables --- */
   :root {
    /* Brand */
    --primary: #4D70FF;
    --primary-dark: #1A37A8;
    --logo-gradient: linear-gradient(135deg, #4D70FF 0%, #1A37A8 100%);

    /* Typography */
    --text-dark: #111827;     /* Deep charcoal */
    --text-gray: #4B5563;     /* Muted gray */
    --text-accent: #1A37A8;   /* Contrast dark blue */

    /* Backgrounds & Canvas Surfaces */
    --bg-pure: #FFFFFF;
    --bg-warm-white: #FAFAFA;
    --bg-stone: #F3F4F6;
    --bg-color: #fbf9f4;
    
    /* Section Mappings */
    --bg-about: var(--bg-pure);
    --bg-services: var(--bg-warm-white);
    --bg-projects: var(--bg-pure);
    --bg-why: var(--bg-stone);
    --bg-footer: #111827;

    /* UI Elements */
    --border: #E5E7EB;

    /* --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif; */
    --transition: all .4s cubic-bezier(.25,1,.5,1);
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    /* font-family: var(--font-main); */
    color: var(--text-dark);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
  }

  /* --- Shared Components --- */
  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .section-title em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    background: var(--logo-gradient);
    color: #FFFFFF;
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(77, 112, 255, 0.25);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(26, 55, 168, 0.35);
  }

  /* --- 1. Hero Section --- */
  .service-hero {
    background-color: var(--bg-pure);
    padding: 100px 5vw 80px 5vw;
    
  }

  .hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 520px;
  }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
  }

  .stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    font-family: var(--font-main);
    font-weight: 700;
  }

  .stat-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0;
  }

  .hero-gallery {
    position: relative;
  }

  .main-hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
  }

  .floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--bg-pure);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 280px;
  }

  .floating-card .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(77, 112, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* --- 2. Scope & Capabilities Grid --- */
  .scope-section {
    background-color: var(--bg-color);
    padding: 100px 5vw;
  }

  .scope-container {
    max-width: 1280px;
    margin: 0 auto;
  }

  .header-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px auto;
  }

  .scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .scope-card {
    background-color: var(--bg-pure);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
  }

  .scope-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.06);
    border-color: var(--primary);
  }

  .card-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
  }

  .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .scope-card:hover .card-img-wrapper img {
    transform: scale(1.06);
  }

  .card-body {
    padding: 30px;
  }

  .card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
  }

  .card-body p {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .card-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }

  .card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
  }

  .card-list li i {
    color: var(--primary);
    width: 16px;
    height: 16px;
  }

  /* --- 3. Featured Work / Project Highlight --- */
  .featured-section {
    background-color: var(--bg-projects);
    padding: 100px 5vw;
  }

  .featured-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }

  .featured-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .featured-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
  }

  .featured-gallery img:first-child {
    grid-column: span 2;
    height: 360px;
  }

  .featured-content p {
    color: var(--text-gray);
    margin-bottom: 24px;
  }

  /* --- 4. Why Choose Us (Stone Canvas) --- */
  .why-section {
    
    padding: 100px 5vw;
  }

  .why-container {
    max-width: 1280px;
    margin: 0 auto;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .why-item {
    background: var(--bg-pure);
    padding: 32px 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: var(--transition);
  }

  .why-item:hover {
    border-color: var(--primary);
  }

  .why-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--logo-gradient);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
  }

  .why-item p {
    font-size: 0.88rem;
    color: var(--text-gray);
  }

  /* --- 5. Footer Banner CTA --- */
  .cta-banner {
    background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42)),
      url("../images/call-to-action-image.webp");
    background-position: center;
    background-size: cover;    
    color: #FFFFFF;
    padding: 80px 5vw;
    text-align: center;
    margin: 5vh;
  }

  .cta-banner h2 {
    margin-bottom: 16px;
  }
  

  .cta-banner p {
    color: #ececec;
    max-width: 550px;
    margin: 0 auto 26px auto;
    font-size: 1.05rem;
  }

  /* --- Responsive Breakpoints --- */
  @media (max-width: 1024px) {
    .hero-container, 
    .featured-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .scope-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 2.2rem;
    }

    .scope-grid,
    .why-grid {
      grid-template-columns: 1fr;
    }

    .floating-card {
      display: none;
    }

    .hero-stats {
      flex-direction: column;
      gap: 20px;
    }

    .featured-gallery img:first-child {
      height: 240px;
    }

    .featured-gallery img {
      height: 180px;
    }
  }