
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-black: #0a0a0a;
            --secondary-black: #1a1a1a;
            --accent-gold: #d4af37; /* Base gold color for non-gradient elements */
            --accent-blue: #4A90E2;
            --text-white: #ffffff;
            --text-gray: #b0b0b0;
            --golden-text: #0F172A; /* Dark text for golden buttons */
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-black);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        /* Navigation (Sticky Header) */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }
        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .logo:hover {
            transform: translateY(-2px);
        }
        .logo:hover .logo-img {
            filter: brightness(1.2);
        }
        .logo-img {
            height: 50px;
            width: 50px;
            object-fit: contain;
            transition: all 0.3s ease;
            /* Placeholder styling */
            background-color: var(--accent-gold); 
            border-radius: 50%;
        }
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        .nav-links a {
            color: var(--text-white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        .nav-links a:hover {
            color: var(--accent-gold);
        }
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 5% 4rem;
            background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-text h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-text .subtitle {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .hero-text p {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr); 
            gap: 2rem;
            margin: 3rem 0;
        }
        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-gold);
            display: block;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 0.5rem;
        }
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        /* GOLDEN BUTTON STYLE (User Request) */
        .btn-primary {
            /* User's requested golden button style */
            background: linear-gradient(135deg, #7c5a28 0%, #b88946 25%, #d9b679 50%, #e7d2a6 75%, #caa75d 100%);
            color: var(--golden-text) !important;
            text-shadow: none !important;
            font-weight: 700;
            font-family: 'Segoe UI', sans-serif;
            border-radius: 30px;
            border: 1px solid #b88946;
            text-shadow: 0 1px 1px #fff2dd;
            box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5), inset 0 0px 4px rgba(90, 60, 10, 0.2), 0 4px 10px rgba(0, 0, 0, 0.3);
            text-align: center;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            
            /* Overrides to ensure large CTA size */
            padding: 1.2rem 2.5rem; 
            font-size: 1.1rem; 
        }

        /* BLACK HOVER EFFECT (User Request) */
        .btn-primary:hover {
            background: var(--primary-black); /* Full Black Background */
            color: var(--primary-black) !important; /* Black Text (Making it invisible as requested) */
            border: 1px solid var(--primary-black); /* Black border */
            text-shadow: none !important;
            box-shadow: none; /* Remove shadow */
            transform: scale(0.98); /* Subtle "press" effect */
        }
        
        .btn-secondary {
            padding: 1.2rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.5px;

            background: transparent;
            color: var(--text-white);
            border: 2px solid var(--accent-gold);
        }
        .btn-secondary:hover {
            background: var(--accent-gold);
            color: var(--primary-black);
        }
        .hero-image {
            position: relative;
        }
        .hero-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            object-position: center;
            border-radius: 20px;
            border: 3px solid rgba(212, 175, 55, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }
        .hero-image img:hover {
            transform: scale(1.02);
            border-color: var(--accent-gold);
            box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
        }
        /* Results Section */
        .results-section {
            padding: 6rem 5%;
            background: var(--secondary-black);
        }
        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-header h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: var(--text-white);
        }
        .section-header .accent-line {
            width: 100px;
            height: 4px;
            background: var(--accent-gold);
            margin: 1.5rem auto;
        }
        .section-header p {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }
        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        .result-card {
            padding: 2.5rem;
            background: var(--primary-black);
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.3s;
        }
        .result-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }
        .result-card h3 {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-weight: 900;
        }
        .result-card p {
            color: var(--text-gray);
            font-size: 1.1rem;
        }
        .guarantee-box {
            background: var(--primary-black);
            padding: 3rem;
            border-radius: 15px;
            border: 3px solid var(--accent-gold);
            margin: 4rem auto;
            max-width: 900px;
            text-align: center;
        }
        .guarantee-box h3 {
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        .guarantee-box p {
            font-size: 1.2rem;
            color: var(--text-white);
        }
        /* About Section */
        .about-section {
            padding: 6rem 5%;
            background: var(--primary-black);
        }
        .about-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-white);
            font-weight: 900;
        }
        .about-text h3 {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        .about-text p {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        /* Services Section */
        .services-section {
            padding: 6rem 5%;
            background: var(--secondary-black);
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }
        .service-card {
            padding: 3rem;
            background: var(--primary-black);
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.3s;
        }
        .service-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--accent-gold); /* Solid gold for consistency */
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary-black);
        }
        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--text-white);
        }
        .service-card p {
            color: var(--text-gray);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* ============================================ */
/* PGI DIVISIONS SECTION - FIXED CSS */
/* ============================================ */

.pgi-divisions {
    padding: 3rem 5%;
    text-align: center;
}

.pgi-divisions h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.pgi-division-links {
    display: flex;
    justify-content: center;   /* center the whole row */
    align-items: flex-start;
    gap: 3rem 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;           /* allows wrap on smaller screens */
}

.pgi-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;              /* fixed width */
    text-decoration: none;
}


.pgi-logo-link:hover {
    transform: translateY(-5px);
}

/* FIXED: Flexible container width */
.pgi-logo-placeholder {
    width: 100%; /* Take full width available */
    max-width: 600px; /* Maximum 600px wide */
    height: 60px; /* Fixed height */
    background: var(--secondary-black);
    border-radius: 5px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px; /* Padding so image doesn't touch edges */
    
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 10px rgba(212, 175, 55, 0.4),
        0 0 20px rgba(212, 175, 55, 0.2),
        0 0 5px rgba(255, 255, 255, 0.5) inset;
    transition: all 0.3s ease;
}

.pgi-logo-link:hover .pgi-logo-placeholder {
    border-color: var(--accent-gold);
    box-shadow: 
        0 0 30px var(--accent-gold), 
        0 0 10px rgba(255, 255, 255, 0.8) inset;
}

/* FIXED: Proper image sizing */
.pgi-logo-placeholder img {
    max-width: 100%; /* Don't exceed container width */
    max-height: 100%; /* Don't exceed container height */
    width: auto; /* Let width adjust naturally */
    height: auto; /* Let height adjust naturally */
    object-fit: contain; /* Fit entire image */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)) brightness(1.1);
}

.pgi-logo-link span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-white);
    transition: color 0.3s;
}

.pgi-logo-link:hover span {
    color: var(--accent-gold);
}
       

        /* CTA Section */
        .cta-section {
            padding: 6rem 5%;
            background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-blue) 100%);
            text-align: center;
        }
        .cta-section h2 {
            font-size: 3rem;
            color: var(--primary-black);
            margin-bottom: 1.5rem;
            font-weight: 900;
        }
        .cta-section p {
            font-size: 1.3rem;
            color: rgba(0, 0, 0, 0.8);
            margin-bottom: 2.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-section .btn-primary {
            /* Inherits golden button style */
            font-size: 1.2rem;
            padding: 1.5rem 3rem;
        }
        /* Footer */
        footer {
            background: var(--primary-black);
            padding: 4rem 5% 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-section p, .footer-section a {
            color: var(--text-gray);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: var(--accent-gold);
        }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        .social-links i {
 	   font-size: 30px;          /* icon size */
 	   line-height: 1;
	}
	.social-links a {
            width: 45px;
            height: 45px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(212, 175, 55, 0.3);
            transition: all 0.3s;
        }
        .social-links a:hover {
            background: var(--accent-gold);
            color: var(--primary-black);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
        }
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .logo-img {
                height: 40px;
                width: 40px;
            }
            .logo-text {
                font-size: 1.2rem;
            }
            .hero-content {
                grid-template-columns: 1fr;
            }
            .hero-stats {
                grid-template-columns: 2fr 2fr;
            }
            .results-grid {
                grid-template-columns: 1fr;
            }
            .hero-text h1 {
                font-size: 2.5rem;
            }
            .hero-image img {
                height: 400px;
                border-radius: 15px;
            }
            .about-content {
                grid-template-columns: 1fr;
            }
            .section-header h2 {
                font-size: 2rem;
            }
            .cta-buttons {
                flex-direction: column;
            }
            .pgi-division-links {
                justify-content: space-around;
            }
            .pgi-division-links .pgi-logo-link {
                width: 120px;
                padding: 1rem 0.25rem;
            }
        }
        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

/* ===============================
   GLOBAL IMAGE SAFETY NET
   =============================== */

img,
picture,
svg,
video {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
}

/* ===============================
   HARD CLIP FOR IMAGE CONTAINERS
   =============================== */

.hero-image,
.pgi-logo-placeholder,
.logo,
.logo-img,
.service-icon,
.about-content .hero-image {
    overflow: hidden;
}

/* ===============================
   HERO + PROFILE IMAGES
   =============================== */

.hero-image img,
.about-content .hero-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; /* change to contain if you want full image visible */
}

/* ===============================
   PGI LOGO GRID (BULLETPROOF)
   =============================== */

.pgi-logo-placeholder {
    overflow: hidden;          /* absolute safety */
    position: relative;
}

.pgi-logo-placeholder img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;       /* logos never crop */
}

/* ===============================
   PREVENT TRANSFORM SCALE BLEED
   =============================== */

.hero-image img:hover,
.result-card:hover,
.service-card:hover,
.pgi-logo-link:hover {
    overflow: hidden;
}

/* ===============================
   LAST RESORT SAFETY (OPTIONAL)
   =============================== */

body {
    overflow-x: hidden;
}

