/* ==================== ROOT VARIABLES & THEME ==================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root
    --bg-primary: #0a0c10;
    --bg-secondary: #121620;
    --bg-card: #1a202c;
    --accent-gold: #d4af37;
    --accent-gold-hover: #f3e5ab;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(212, 175, 55, 0.25);
    --gradient-gold: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .logo-text {
    font-family: 'Cinzel', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

/* ==================== NAVIGATION BAR ==================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 8%;
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-gold);
}

.verify-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10b981;
    color: #10b981;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 8% 60px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
                linear-gradient(rgba(10, 12, 16, 0.75), rgba(10, 12, 16, 0.9)),
                url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-content {
    max-width: 900px;
}

.hero-tag {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid var(--border-color);
    padding: 6px 18px;
    border-radius: 30px;
    background: rgba(26, 32, 44, 0.6);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ==================== COMMON SECTIONS ==================== */
section {
    padding: 80px 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* GRIDS */
.services-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card, .team-card, .contact-info-box, .contact-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover, .team-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* ABOUT PAGE DETAILS */
.about-wrapper, .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cert-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.cert-list {
    list-style: none;
}

.cert-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.udyam-badge-large {
    background: linear-gradient(145deg, #161b22, #0d1117);
    border: 2px solid var(--accent-gold);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

/* FORMS */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-main);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent-gold);
}

/* FOOTER */
footer {
    background: #06080a;
    border-top: 1px solid var(--border-color);
    padding: 50px 8% 25px;
    text-align: center;
}

@media (max-width: 768px) {
    .about-wrapper, .contact-container { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .nav-links { display: none; }
}
