:root {
    --navy: #0F172A;
    --navy-mid: #1E293B;
    --navy-light: #334155;
    --gold: #D4A017;
    --gold-light: #F0BB3A;
    --gold-pale: #FDF3D7;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-400: #94A3B8;
    --gray-600: #475569;
    --text: #0F172A;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,160,23,0.2);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }

  .logo-icon {
    width: 42px; height: 42px;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  }

  .logo-icon svg { width: 22px; height: 22px; fill: var(--navy); }

  .logo-text { display: flex; flex-direction: column; }
  .logo-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: 0.05em; line-height: 1.1; }
  .logo-tagline { font-size: 0.6rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }

  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold); color: var(--navy); font-weight: 700;
    font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 10px 22px; border: none; cursor: pointer;
    text-decoration: none; transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--gold-light); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: var(--white); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 72px;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(15,23,42,0.95) 45%, rgba(15,23,42,0.7) 100%),
      url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
  }

  .hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(212,160,23,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212,160,23,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 0 5%;
    max-width: 800px;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(212,160,23,0.12);
    border: 1px solid rgba(212,160,23,0.3);
    color: var(--gold); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 8px 16px; margin-bottom: 28px;
  }

  .hero-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); }

  h1.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 900; color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
  }

  h1.hero-title em { color: var(--gold); font-style: normal; }

  .hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.65);
    max-width: 560px; margin-bottom: 44px; line-height: 1.7;
    font-weight: 300;
  }

  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

  .btn-primary {
    background: var(--gold); color: var(--navy);
    font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 16px 32px;
    border: none; cursor: pointer; text-decoration: none;
    transition: all 0.2s; display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-outline {
    background: transparent; color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 16px 32px;
    cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-stats {
    position: absolute; bottom: 0; right: 0;
    display: flex;
    background: rgba(15,23,42,0.9);
    border-top: 1px solid rgba(212,160,23,0.2);
    border-left: 1px solid rgba(212,160,23,0.2);
  }

  .hero-stat {
    padding: 24px 36px;
    border-right: 1px solid rgba(212,160,23,0.15);
    text-align: center;
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
  .hero-stat-label { font-size: 0.65rem; color: rgba(255,255,255,0.5); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }

  /* ── SECTIONS COMMON ── */
  section { padding: 100px 5%; }

  .section-eyebrow {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  }
  .section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

  h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.15;
    color: var(--navy);
  }

  h2.section-title.light { color: var(--white); }

  .section-title span { color: var(--gold); }

  /* ── ABOUT ── */
  #about { background: var(--gray-50); }

  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    max-width: 1200px; margin: 0 auto;
  }

  .about-body { color: var(--gray-600); font-size: 1rem; line-height: 1.8; margin: 20px 0 36px; }

  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }

  .about-feature {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .feature-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
  }
  .feature-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
  .feature-title { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
  .feature-desc { font-size: 0.78rem; color: var(--gray-400); margin-top: 2px; }

  .about-image-block { position: relative; }
  .about-img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    display: block;
  }
  .about-badge {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--gold); padding: 24px;
    min-width: 140px;
  }
  .badge-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--navy); line-height: 1; }
  .badge-text { font-size: 0.7rem; font-weight: 700; color: var(--navy); letter-spacing: 0.08em; text-transform: uppercase; }

  /* ── SERVICES ── */
  #services { background: var(--navy); }

  .services-intro { max-width: 560px; margin-bottom: 60px; }
  .services-body { color: rgba(255,255,255,0.55); margin-top: 16px; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    max-width: 1400px;
  }

  .service-card {
    background: var(--navy-mid);
    padding: 40px 36px;
    border-top: 3px solid transparent;
    transition: all 0.3s;
    cursor: default;
    position: relative; overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 0;
    background: linear-gradient(to top, rgba(212,160,23,0.06), transparent);
    transition: height 0.3s;
  }

  .service-card:hover {
    border-top-color: var(--gold);
    transform: translateY(-4px);
  }
  .service-card:hover::before { height: 100%; }

  .service-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem; font-weight: 700;
    color: rgba(212,160,23,0.12);
    line-height: 1; margin-bottom: 20px;
    transition: color 0.3s;
  }
  .service-card:hover .service-num { color: rgba(212,160,23,0.25); }

  .service-icon {
    width: 52px; height: 52px;
    background: rgba(212,160,23,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .service-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

  .service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem; font-weight: 700; letter-spacing: 0.04em;
    color: var(--white); margin-bottom: 10px;
  }

  .service-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

  .service-items { margin-top: 16px; list-style: none; }
  .service-items li {
    font-size: 0.78rem; color: rgba(255,255,255,0.35);
    padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center; gap: 8px;
  }
  .service-items li::before { content: '›'; color: var(--gold); font-size: 1rem; }

  /* ── PROCESS ── */
  #process { background: var(--white); }

  .process-header { text-align: center; max-width: 600px; margin: 0 auto 70px; }
  .process-header .section-eyebrow { justify-content: center; }
  .process-header .section-eyebrow::before { display: none; }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1100px; margin: 0 auto;
    border: 1px solid #E2E8F0;
  }

  .process-step {
    padding: 40px 32px;
    border-right: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    position: relative; transition: all 0.3s;
  }

  .process-step:hover { background: var(--navy); }

  .process-step:nth-child(3n) { border-right: none; }
  .process-step:nth-child(n+7) { border-bottom: none; }

  .step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
    color: var(--gold); margin-bottom: 20px;
  }

  .step-icon {
    width: 48px; height: 48px;
    background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; transition: background 0.3s;
  }
  .process-step:hover .step-icon { background: rgba(212,160,23,0.15); }
  .step-icon svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 2; transition: stroke 0.3s; }
  .process-step:hover .step-icon svg { stroke: var(--gold); }

  .step-title { font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; transition: color 0.3s; }
  .process-step:hover .step-title { color: var(--white); }

  .step-items { list-style: none; }
  .step-items li { font-size: 0.75rem; color: var(--gray-400); padding: 3px 0; transition: color 0.3s; }
  .process-step:hover .step-items li { color: rgba(255,255,255,0.45); }

  /* ── STATS ── */
  #stats {
    background: var(--gold);
    padding: 70px 5%;
  }

  .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2px; max-width: 900px; margin: 0 auto;
    text-align: center;
  }

  .stat-item { padding: 20px; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem; font-weight: 900; color: var(--navy);
    line-height: 1;
  }
  .stat-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(15,23,42,0.6); margin-top: 6px; }

  /* ── PROJECTS ── */
  #projects { background: var(--navy); }
  .projects-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; flex-wrap: wrap; gap: 20px; }
  .projects-body { color: rgba(255,255,255,0.5); font-size: 0.9rem; max-width: 400px; margin-top: 10px; }

  .projects-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 4px; max-width: 1400px;
  }

  .project-card {
    position: relative; overflow: hidden;
    cursor: pointer;
  }

  .project-card:first-child { grid-row: 1 / 3; }

  .project-img {
    width: 100%; height: 100%; min-height: 240px;
    object-fit: cover; display: block;
    transition: transform 0.5s;
    filter: brightness(0.7);
  }
  .project-card:first-child .project-img { min-height: 480px; }
  .project-card:hover .project-img { transform: scale(1.05); filter: brightness(0.5); }

  .project-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, transparent 100%);
    padding: 30px 24px 24px;
    transform: translateY(10px); transition: transform 0.3s;
  }
  .project-card:hover .project-overlay { transform: translateY(0); }

  .project-type { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
  .project-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); font-weight: 700; }
  .project-card:first-child .project-name { font-size: 1.5rem; }
  .project-meta { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 6px; }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--gray-50); }
  .testimonials-header { text-align: center; max-width: 550px; margin: 0 auto 60px; }
  .testimonials-header .section-eyebrow { justify-content: center; }
  .testimonials-header .section-eyebrow::before { display: none; }

  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1100px; margin: 0 auto;
  }

  .testimonial-card {
    background: var(--white);
    padding: 36px 32px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  }
  .testimonial-card:hover { border-bottom-color: var(--gold); }

  .stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }

  .testimonial-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; font-style: italic; }

  .testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gray-100); }

  .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1rem; color: var(--gold);
  }

  .author-name { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
  .author-project { font-size: 0.72rem; color: var(--gray-400); margin-top: 2px; }

  /* ── CONTACT ── */
  #contact { background: var(--navy); }

  .contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; max-width: 1100px; align-items: start; }

  .contact-info-body { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.8; margin: 16px 0 36px; }

  .contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
  .contact-detail-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: rgba(212,160,23,0.12);
    border: 1px solid rgba(212,160,23,0.2);
    display: flex; align-items: center; justify-content: center;
  }
  .contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }
  .contact-detail-label { font-size: 0.65rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; }
  .contact-detail-val { font-size: 0.88rem; color: var(--white); margin-top: 2px; font-weight: 500; }

  .contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 44px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white); font-family: 'Inter', sans-serif;
    font-size: 0.88rem; padding: 12px 16px;
    outline: none; transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group select option { background: var(--navy-mid); }
  .form-group textarea { resize: vertical; min-height: 100px; }

  input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }

  .form-submit {
    width: 100%; background: var(--gold); color: var(--navy);
    font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 16px; border: none; cursor: pointer;
    transition: background 0.2s; margin-top: 8px;
  }
  .form-submit:hover { background: var(--gold-light); }

  /* ── FOOTER ── */
  footer {
    background: #060D1A;
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(212,160,23,0.15);
  }

  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 50px;
  }

  .footer-brand .logo-name { font-size: 1.3rem; }
  .footer-about { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.8; margin-top: 16px; }

  .footer-heading { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }

  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap; gap: 12px;
  }
  .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
  .footer-reg { font-size: 0.72rem; color: rgba(212,160,23,0.5); }

  /* ── WHATSAPP ── */
  .whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    animation: pulse-green 2.5s infinite;
  }
  .whatsapp-float svg { width: 28px; height: 28px; fill: white; }
  @keyframes pulse-green {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
  }

  /* ── QUALITY BANNER ── */
  #quality {
    background: var(--gray-50);
    padding: 80px 5%;
  }
  .quality-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .quality-list { list-style: none; margin-top: 24px; }
  .quality-list li {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px 0; border-bottom: 1px solid var(--gray-100);
  }
  .quality-check {
    width: 28px; height: 28px; min-width: 28px;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: var(--navy); font-weight: 700;
  }
  .quality-item-title { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
  .quality-item-desc { font-size: 0.78rem; color: var(--gray-400); margin-top: 3px; }

  .quality-visual {
    background: var(--navy);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
  }
  .quality-visual::before {
    content: '';
    position: absolute; top: -30px; right: -30px;
    width: 200px; height: 200px;
    background: rgba(212,160,23,0.08);
    border-radius: 50%;
  }
  .quality-big-num {
    font-family: 'Playfair Display', serif;
    font-size: 5rem; font-weight: 900; color: rgba(212,160,23,0.15);
    line-height: 1;
  }
  .quality-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; color: var(--white); font-weight: 700;
    margin-top: 8px; line-height: 1.3;
  }
  .quality-headline span { color: var(--gold); }
  .quality-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 12px; line-height: 1.7; }

  /* ── SCROLL ANIMATION ── */
  .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .about-grid, .contact-grid, .quality-inner { grid-template-columns: 1fr; }
    .about-image-block { order: -1; }

    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step:nth-child(3n) { border-right: 1px solid #E2E8F0; }
    .process-step:nth-child(2n) { border-right: none; }

    .projects-grid { grid-template-columns: 1fr; }
    .project-card:first-child { grid-row: auto; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-stats { display: none; }
    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    section { padding: 70px 5%; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step:nth-child(n) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr; }
  }
  .project-img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.service-icon {
    color: #FFC107; 
    opacity: 1 !important;
}
/* Card එක ඇතුලේ තියෙන දේවල් එලියට පනින එක නතර කරන්න */
.project-card {
    position: relative;
    overflow: hidden;
}

/* Text overlay එක හැමවෙලේම image එකේ යට කොටසටම absolute කරලා තියන්න */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
    box-sizing: border-box; }
    
    #projects {
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    padding-bottom: 60px; 
}