/* ======================================================================================================
===============================  PROJECT HERO SLIDER START ==============================================
====================================================================================================== */
/* ================= HERO SLIDER ================= */
.hero-video-slider {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

/* COMMON MEDIA STYLE */
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* DEFAULT STATES */
.hero-video {
  display: block;
}

.hero-image {
  display: none;
}

/* 🔥 AUTO FALLBACK LOGIC */
.hero-video-slider:not(:has(video)) .hero-video {
  display: none;
}

.hero-video-slider:not(:has(video)) .hero-image {
  display: block;
}

/* --- Right Bottom Tag --- */
.property-info-tag {
  position: absolute;
  right: 0;
  bottom: 30px;
  background-color: #ffffff;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border-radius: 5px 0 0 5px;
  box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
  z-index: 10;
}

.small-logos {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mini-logo {
  height: 50px;
  width: auto;
}

/* HEIGHT LOGIC */
@media (min-width: 1025px) {
  .hero-video-slider {
    height: 80vh;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-video-slider {
    height: 65vh;
  }
}

@media (max-width: 767px) {
  .hero-video-slider {
    height: 35vh;
  }

  .property-info-tag {
    bottom: 10px;
    padding: 5px 10px;
  }

  .mini-logo {
    height: 25px;
  }

  .small-logos {
    gap: 8px;
  }
}

/* ======================================================================================================
===============================  PROJECT HERO SLIDER END ================================================
====================================================================================================== */

/* ======================================================================================================
===============================  ABOUT PROJECT START ====================================================
====================================================================================================== */
/* ================= SECTION ================= */
.projectabout-merged-section {
    padding: 20px 20px;
    background: #ffffff;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ================= GRID ================= */
.projectabout-layout-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ================= IMAGE SIDE ================= */
.hmda-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hmda-person-img {
    max-width: 75%;
    height: auto;
    object-fit: contain;
    animation: floating 4s ease-in-out infinite;
}

/* ================= CONTENT SIDE ================= */
.projectabout-content-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.projectabout-main-logo {
    max-height: 80px;
    margin-bottom: 20px;
    animation: floating 3s ease-in-out infinite;
}

.projectabout-pre-title {
    color: #0c589c;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
}

.projectabout-para {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

/* ================= BUTTONS ================= */
.projectabout-button-row {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.projectabout-btn-pill {
    border: 2px solid #0c589c;
    padding: 9px 20px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    color: #0c589c;
    background: #ffffff;
    transition: all 0.35s ease;
    animation: btnPulse 2.2s infinite ease-in-out;
}

.projectabout-btn-pill:hover {
    background-color: #0c589c;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(12, 88, 156, 0.35);
    transform: translateY(-3px) scale(1.06);
}

/* ================= ANIMATIONS ================= */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(12, 88, 156, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(12, 88, 156, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(12, 88, 156, 0);
        transform: scale(1);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .projectabout-layout-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .projectabout-content-column {
        align-items: center;
    }

    .projectabout-button-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hmda-person-img {
        max-width: 85%;
        animation: none;
    }
}

@media (max-width: 480px) {
    .projectabout-btn-pill {
        font-size: 10px;
        padding: 7px 16px;
    }

    .projectabout-para {
        font-size: 13px;
    }
}

/* ======================================================================================================
===============================  ABOUT PROJECT END ======================================================
====================================================================================================== */

/* ======================================================================================================
===============================  PROJECT LOCATION START =================================================
====================================================================================================== */
/* --- 1. Main Container --- */
.location-section {
  max-width: 100%;
  margin: 30px auto;
  padding: 20px 40px;
  font-family: 'Georgia', 'Times New Roman', serif;
  box-sizing: border-box;
}

/* --- 2. Headings --- */
.section-title {
  text-align: center;
  color: #333;
  font-size: 32px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 3px solid #0c589c;
  display: inline-block;
  padding-bottom: 8px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.sub-title {
  font-family: 'Segoe UI', sans-serif;
  font-size: 24px;
  color: #333;
  margin: 50px 0 30px;
  font-weight: 700;
  border-left: 5px solid #0c589c;
  padding-left: 15px;
  text-transform: uppercase;
}

/* --- 3. Maps --- */
.map-container {
  display: flex;
  gap: 25px;
  width: 100%;
  margin-bottom: 20px;
}

.map-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.box-heading {
  background-color: #0c589c;
  color: #fff;
  padding: 10px 20px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px 4px 0 0;
  width: fit-content;
}

.map-box {
  width: 100%;
  height: 350px;
  border: 1px solid #ddd;
  border-top: 3px solid #0c589c;
  background: #f9f9f9;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  overflow: hidden;
  border-radius: 0 4px 4px 4px;
}

.map-box iframe,
.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

/* --- 4. Cards --- */
.location-card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.location-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-top: 3px solid #0c589c;
  display: flex;
  flex-direction: column;
}

.card-img-wrapper {
  height: 120px;
  background: #fff;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-content {
  padding: 12px 8px;
  text-align: center;
}

.loc-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.loc-meta {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  background: #f0f7fc;
  padding: 4px 8px;
  border-radius: 12px;
}

.time-icon svg {
  width: 12px;
  height: 12px;
  fill: #0c589c;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .location-card-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .map-container { flex-direction: column; }
  .location-card-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .location-card-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- MAP IMAGE LIGHTBOX (ADDED) --- */
.map-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.map-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
  animation: zoomInMap 0.3s ease;
}

.map-close-btn {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

.map-close-btn:hover {
  color: #0c589c;
}

@keyframes zoomInMap {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


/* ======================================================================================================
===============================  PROJECT LOCATION END ===================================================
====================================================================================================== */

/* ======================================================================================================
===============================  ABOUT AMENITIES START ==================================================
====================================================================================================== */

/* --- SECTION STYLES --- */
  #googee-classic-amenities {
    padding: 50px 15px;
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
  }

  .classic-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
  }

  /* --- HEADER --- */
  .classic-header {
    margin-bottom: 45px;
  }

  .classic-pre-title {
    color: #0c589c; /* Navy */
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
  }

  .classic-main-title {
    color: #000000;
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
  }

  .classic-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
  }

  .line { height: 1px; width: 50px; background-color: #ccc; }
  .diamond { width: 6px; height: 6px; background-color: #0c589c; transform: rotate(45deg); margin: 0 12px; }

  /* --- GRID LAYOUT (6 COLUMNS) --- */
  .classic-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
  }

  /* --- CARD DESIGN --- */
  .classic-card {
    background: #D6E4F0;
    padding: 25px 5px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    cursor: default;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
  }

  /* Hover Effects */
  .classic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
  }

  /* Top Border on Hover (matches icon color) */
  .classic-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 3px;
    background-color: #333; /* Default fallback */
    transition: width 0.3s ease;
  }
  .classic-card:hover::before { width: 100%; }

  /* --- ICON STYLING & ANIMATION --- */
  @keyframes floatLoop {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
  }

  .classic-icon-box {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px auto;
    background-color: #f9f9f9; /* Neutral background to let colors pop */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatLoop 3s ease-in-out infinite;
    border: 1px solid #eee;
  }

  .classic-icon {
    font-size: 24px;
    /* Remove global color so specific classes take effect */
  }

  /* --- SPECIFIC "ORIGINAL" COLORS --- */
  
  /* 1. Road (Dark Grey) */
  .col-road { color: #555555; }
  .card-road:hover::before { background-color: #555555; }

  /* 2. Tree/Plantation (Green) */
  .col-tree { color: #2e7d32; }
  .card-tree:hover::before { background-color: #2e7d32; }

  /* 3. Electricity (Orange/Yellow) */
  .col-bolt { color: #fbc02d; }
  .card-bolt:hover::before { background-color: #fbc02d; }

  /* 4. Drainage (Brown) */
  .col-drain { color: #795548; }
  .card-drain:hover::before { background-color: #795548; }

  /* 5. Play Area (Vibrant Red/Pink) */
  .col-play { color: #e91e63; }
  .card-play:hover::before { background-color: #e91e63; }

  /* 6. Water (Blue) */
  .col-water { color: #0288d1; }
  .card-water:hover::before { background-color: #0288d1; }

  /* 7. Vaastu (Purple) */
  .col-vaastu { color: #8e24aa; }
  .card-vaastu:hover::before { background-color: #8e24aa; }

  /* 8. Arch (Stone/Grey-Blue) */
  .col-arch { color: #455a64; }
  .card-arch:hover::before { background-color: #455a64; }

  /* 9. Lights (Bright Yellow) */
  .col-light { color: #fdd835; }
  .card-light:hover::before { background-color: #fdd835; }

  /* 10. Security (Navy Blue) */
  .col-sec { color: #1a237e; }
  .card-sec:hover::before { background-color: #1a237e; }

  /* 11. Wall (Brick Red) */
  .col-wall { color: #c62828; }
  .card-wall:hover::before { background-color: #c62828; }

  /* 12. Bank (Money Green) */
  .col-bank { color: #2e7d32; }
  .card-bank:hover::before { background-color: #2e7d32; }


  /* Stagger animation */
  .classic-card:nth-child(odd) .classic-icon-box { animation-duration: 3.2s; }
  .classic-card:nth-child(even) .classic-icon-box { animation-duration: 2.8s; }

  .classic-card:hover .classic-icon-box {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation-play-state: paused;
    transform: scale(1.1); /* Slight Zoom on hover */
  }

  /* --- TEXT STYLING --- */
  .classic-label {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
  }

  /* --- RESPONSIVE LOGIC --- */
  @media (max-width: 1200px) {
    .classic-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  }

  @media (max-width: 900px) {
    .classic-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  }

  @media (max-width: 600px) {
    .classic-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .classic-card { padding: 20px 5px; }
    .classic-main-title { font-size: 28px; }
  }

/* ======================================================================================================
===============================  ABOUT AMENITIES END ====================================================
====================================================================================================== */


    #googee-premium-loc-section {
        padding: 20px 0;
        background-color: #e82126; /* Your Requested Red Background */
        color: #ffffff;
        font-family: 'Inter', -apple-system, sans-serif;
        overflow: hidden;
    }

    .googee-loc-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* HEADER DESIGN */
    .googee-loc-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .googee-loc-pre {
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 5px;
        font-weight: 700;
        font-size: 13px;
        display: block;
        margin-bottom: 10px;
    }

    .googee-loc-main-title {
        font-size: 48px;
        font-weight: 800;
        margin: 0;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: -1px;
    }

    .googee-loc-title-line {
        width: 80px;
        height: 4px;
        background: #fff;
        margin: 20px auto 0;
    }

    /* THE CINEMATIC GRID SYSTEM */
    .googee-loc-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .googee-loc-row {
        display: flex;
        gap: 15px;
        height: 380px;
        width: 100%;
    }

    .googee-loc-card {
        position: relative;
        flex: 1;
        overflow: hidden;
        border-radius: 15px;
        transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
        cursor: pointer;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* HOVER ANIMATION: Epic Expansion */
    .googee-loc-card:hover {
        flex: 3; 
        border-color: #fff;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .googee-loc-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.6);
        transition: 0.7s all ease;
    }

    .googee-loc-card:hover img {
        filter: brightness(0.9);
        transform: scale(1.1);
    }

    /* OVERLAY CONTENT (Glass Effect) */
    .googee-loc-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 30px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        box-sizing: border-box;
    }

    .googee-loc-card h3 {
        font-size: 20px;
        margin: 0 0 10px 0;
        font-weight: 700;
        color: #fff;
    }

    .googee-loc-dist {
        display: inline-block;
        background: #fff; /* White badge on Red background */
        color: #e82126; /* Red text on White badge */
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
        opacity: 0;
        transform: translateY(10px);
        transition: 0.4s all ease 0.2s;
    }

    .googee-loc-card:hover .googee-loc-dist {
        opacity: 1;
        transform: translateY(0);
    }

    /* MOBILE RESPONSIVE */
    @media (max-width: 1000px) {
        .googee-loc-row {
            flex-direction: column;
            height: auto;
        }
        .googee-loc-card {
            height: 250px;
            flex: none;
        }
        .googee-loc-card:hover {
            flex: none;
        }
    }


/* ======================================================================================================
===============================  PROJECT GALLERY START ==================================================
====================================================================================================== */
/* --- 1. Global Section Styles --- */
  .classic-gallery-section {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Georgia', 'Times New Roman', serif;
    box-sizing: border-box;
  }

  /* --- 2. Main Section Heading --- */
  .gallery-heading {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid #0c589c; /* Blue */
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  /* --- 3. Tabs Navigation --- */
  .gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
  }

  .tab-btn {
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #0c589c;
    color: #0c589c;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 4px;
  }

  .tab-btn:hover {
    background-color: #f0f8ff;
  }

  .tab-btn.active {
    background-color: #0c589c;
    color: #fff;
    box-shadow: 0 4px 6px rgba(12, 88, 156, 0.3);
  }

  /* --- 4. Row Heading (New Addition) --- */
  .row-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    border-left: 5px solid #0c589c;
    padding-left: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* --- 5. Content Container (Tabs) --- */
  .gallery-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
  }

  .gallery-content.active {
    display: block;
  }

  /* --- 6. Grid System --- */
  .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* SAME */
  gap: 20px;
  justify-content: center;   /* ⭐ THIS IS THE FIX */
}

  /* --- Image Styling --- */
  .gallery-item {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    border: 1px solid #ddd;
    background: #000;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    opacity: 0.95;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
    opacity: 1;
  }

  /* --- Video Card Styling --- */
  .video-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    border-color: #0c589c;
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .video-info {
    padding: 12px;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .video-title {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
  }

  /* --- 7. Lightbox --- */
  .custom-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
  }

  .lightbox-wrapper {
    position: relative;
    max-width: 900px;
    width: 90%;
    text-align: center;
  }

  .lightbox-image {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 4px solid #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
  }

  .close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #0c589c;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: background 0.3s;
  }

  .close-btn:hover { background: #083d6b; }

  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    user-select: none;
  }
  .nav-btn:hover { background-color: #0c589c; }
  .prev { left: -60px; }
  .next { right: -60px; }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* --- 8. Responsive Media Queries --- */
  @media (max-width: 1200px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  }
  @media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .prev { left: -40px; }
    .next { right: -40px; }
  }
  @media (max-width: 600px) {
    .gallery-heading { font-size: 24px; }
    .row-title { font-size: 18px; margin-bottom: 10px; }
    .gallery-grid { grid-template-columns: repeat(1, 1fr); gap: 10px; }
    .gallery-item { height: 140px; }
    .tab-btn { padding: 8px 16px; font-size: 13px; }
    .prev { left: 5px; background: rgba(0,0,0,0.5); }
    .next { right: 5px; background: rgba(0,0,0,0.5); }
    .close-btn { right: 5px; top: 5px; }
  }
/* ======================================================================================================
===============================  PROJECT GALLERY END ====================================================
====================================================================================================== */