       .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 64px; /* Default padding matching px-16 */
        }
/* =========================
   HERO
========================= */
.hero {
  position: relative;
  height: 100vh;
  background: url("/images/hero_bg.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.hero > * {
  position: relative;
  z-index: 2;
}

/* =========================
   NAVBAR
========================= */

.nav {
  height: 90px;
  padding: 0 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 52px;
}
/* =========================
   PREMIUM MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 999;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

/* PANEL */
.mobile-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 85%;
  max-width: 360px;
  background: linear-gradient(180deg, #0b0f2a, #000);
  padding: 36px 28px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.mobile-menu.active .mobile-panel {
  transform: translateX(0);
}

/* CLOSE */
.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 22px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* LINKS */
.mobile-links {
  list-style: none;
  margin-top: 90px;
}

.mobile-links li {
  margin-bottom: 28px;
}

.mobile-links a {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

/* PHONE CARD */
.mobile-phone {
  margin-top: 48px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
}

.mobile-phone span {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: .6;
}

.mobile-phone strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  font-weight: 600;
}
/* FORCE GRID GAP */
#gallery-grid {
    display: grid;
    /* Forces a 32px gap horizontally and vertically */
    gap: 32px !important; 
    width: 100%;
}

/* FILTER BUTTONS (Premium Pill Style) */
.filter-btn {
    padding: 12px 32px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: white;
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: #000;
    color: #000;
}

.filter-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ANIMATION CLASSES */
.gallery-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item.hide {
    display: none; /* Removes from grid flow */
}
.gallery-item.show {
    display: block; /* Returns to grid flow */
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* =========================
   1. GRID LAYOUT & GAPS
========================= */
#gallery-grid {
    display: grid;
    /* This !important forces the gap even if Tailwind tries to remove it */
    gap: 32px !important; 
    width: 100%;
}

/* =========================
   2. PREMIUM FILTER BUTTONS
========================= */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

.filter-btn {
    /* Base Shape */
    padding: 12px 32px;
    border-radius: 999px; /* Pill shape */
    border: 1px solid #e2e8f0; /* Light gray border */
    background-color: #ffffff;
    
    /* Typography */
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    
    /* Interaction */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
    border-color: #0f172a;
    color: #0f172a;
    transform: translateY(-2px);
}

/* The Active State (When clicked) */
.filter-btn.active {
    background-color: #0f172a; /* Dark background */
    color: #ffffff; /* White text */
    border-color: #0f172a;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
}

/* =========================
   3. GALLERY ITEM ANIMATIONS
========================= */
.gallery-item {
    /* Smooth movement when grid reshuffles */
    transition: all 0.5s ease;
}

/* Hidden State */
.gallery-item.hide {
    display: none; 
}

/* Visible State */
.gallery-item.show {
    display: block;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom Animation Keyframes */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.98); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}
.filter-container {
    margin-top: 80px; /* Adjust this number to increase the gap */
}
        /* ================= CTA SECTION ================= */
        .cta-section {
            padding: 128px 0;
            background-color: #ffffff;
        }

        .cta-card {
            background: linear-gradient(to right, #27272a, #18181b); /* zinc-800 to zinc-900 */
            border-radius: 24px;
            padding: 64px 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .cta-left {
            max-width: 512px;
        }

        .cta-heading {
            font-size: 48px;
            font-weight: 600;
            line-height: 1.1;
            color: white;
            margin-bottom: 40px;
        }

        .btn-white {
            background-color: #ffffff;
            color: #000000;
            padding: 16px 48px;
            border-radius: 9999px;
            font-weight: 500;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, background-color 0.2s;
        }

        .btn-white:hover {
            background-color: #f3f4f6;
            transform: translateY(-2px);
        }

        .cta-right {
            max-width: 384px;
            color: #d1d5db; /* gray-300 */
            font-size: 14px;
            line-height: 1.6;
        }

        .cta-right strong {
            display: block;
            color: white;
            font-weight: 500;
            margin-bottom: 12px;
            font-size: 16px;
        }

        /* Mobile CTA adjustments */
        @media (max-width: 1024px) {
            .container {
                padding: 0 24px;
            }
            .cta-card {
                padding: 48px;
            }
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 64px 0;
            }
            
            .cta-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 40px;
                padding: 48px 32px;
                background: linear-gradient(135deg, #27272a, #000000);
            }

            .cta-heading {
                font-size: 32px;
                margin-bottom: 32px;
            }

            .btn-white {
                width: 100%;
                max-width: 280px;
            }

            .cta-right {
                text-align: center;
            }
        }

        /* ================= FOOTER SECTION ================= */
        .footer-section {
            background-color: #000000;
            color: #9ca3af; /* gray-400 */
            font-size: 14px;
        }

        /* Top Row */
        .footer-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 96px;
            padding-bottom: 40px;
        }

        .footer-heading {
            font-size: 36px;
            font-weight: 600;
            color: white;
        }

        .text-indigo {
            color: #6366f1; /* indigo-500 */
        }

        .btn-footer {
            display: flex;
            align-items: center;
            gap: 16px;
            background-color: #4f46e5; /* indigo-600 */
            color: white;
            padding: 16px 32px;
            border-radius: 9999px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.2s;
            font-size: 16px;
        }

        .btn-footer:hover {
            background-color: #4338ca;
            transform: translateY(-2px);
        }

        .icon-circle-white {
            width: 36px;
            height: 36px;
            background-color: white;
            color: black;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            line-height: 1;
        }

        /* Divider */
        .footer-divider {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Main Grid */
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding: 80px 0;
        }

        /* Brand Column */
        .brand-col h3 {
            color: white;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 24px;
        }

        .footer-desc {
            line-height: 1.6;
            margin-bottom: 32px;
            max-width: 280px;
        }

        /* Social Icons (Fixed Visibility) */
        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: #4f46e5; /* indigo-600 base like your image */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: currentColor; /* Important for visibility */
        }

        .social-link:hover {
            background-color: #4338ca; /* darker indigo */
            transform: translateY(-3px);
        }

        /* Link Columns */
        .footer-col-title {
            color: white;
            margin-bottom: 24px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 16px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .footer-links a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links li:hover, .footer-links a:hover {
            color: white;
        }

        /* Contact Icons */
        .contact-icon {
            color: #4f46e5;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Bottom */
        .footer-bottom {
            padding: 32px 0;
            font-size: 14px;
        }
.company-link {
    color: #ff4d4d;    /* A nice vibrant Red */
    font-weight: 600;  /* Bold to make it stand out */
    text-decoration: none;
    transition: all 0.3s ease;
}
        /* Responsive Footer */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 48px;
            }
            .footer-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 32px;
            }
        }
        
        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .social-icons {
                justify-content: flex-start;
            }
        }