/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
    text-align: center; /* CENTER EVERYTHING */
}

/* =========================
   CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 70px;
}

/* NAV MENU */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    margin: 0 14px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* Hover underline */
.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #ff4b4b;
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
    background: linear-gradient(90deg, #ff4b4b, #9c27b0);
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.btn-secondary {
    border: 2px solid #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    background: rgba(0,0,0,0.6);
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    transform: translateY(-3px);
    color: #111;
}

/* FIX HERO BUTTON ISSUE */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* =========================
   HERO
========================= */
.hero {
    padding: 100px 0;
    animation: fadeIn 1s ease;
}

.hero h1 {
    font-size: 46px;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 24px;
    color: #444;
}

.hero p {
    color: #666;
    margin-top: 10px;
}

/* =========================
   SECTION
========================= */
.section {
    padding: 80px 0;
}

.section.alt {
    background: #f9f9f9;
}

.section h2 {
    margin-bottom: 25px;
    font-size: 30px;
}

/* =========================
   GRID
========================= */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* =========================
   CARD
========================= */
.card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #eee;
    transition: 0.3s ease;
    animation: fadeUp 0.8s ease;
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    height: 180px;
    object-fit: cover;
}

.card h3 {
    margin-bottom: 8px;
    color: #ff4b4b;
    font-size: 16px;
}

.card p {
    font-size: 14px;
}

/* Hover */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* =========================
   GALLERY
========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    height: 220px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* =========================
   FORM
========================= */
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* =========================
   CONTACT
========================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-block .card {
    margin-bottom: 20px;
}

/* =========================
   SOCIAL
========================= */
.social-links a {
    margin: 10px;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #111;
    padding: 8px 16px;
    border-radius: 6px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #111;
    color: #fff;
}

/* =========================
   CTA
========================= */
.cta {
    padding: 80px 0;
    background: linear-gradient(90deg, #ff4b4b, #9c27b0);
    color: #fff;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #111;
    color: #fff;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeIn {
    from {opacity:0;}
    to {opacity:1;}
}

@keyframes fadeUp {
    from {
        opacity:0;
        transform: translateY(20px);
    }
    to {
        opacity:1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width: 992px) {
    .grid-4,
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {

    .nav-menu {
        display: none;
    }

    .grid-2,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* CLEAN MOBILE MENU (NO JITTER) */

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE */
@media(max-width: 600px){

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;

        max-height: 0;
        overflow: hidden;

        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 3000px; /* enough for menu */
    }

    .nav-menu a {
        margin: 12px 0;
        display: block;
    }
}

/* MOBILE */
@media(max-width: 600px){

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        display: none;
        padding: 20px 0;
        border-top: 1px solid #eee;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        margin: 12px 0;
    }
}

.card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #eee;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE FIX (NO CROP ISSUE)
========================= */

/* People / cards images */
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top; /* face cut nahi hoga */
    border-radius: 12px;
}

/* Logos (IMPORTANT FIX) */
.card img.logo,
.partner-card img {
    object-fit: contain !important;
    height: 120px;
    padding: 15px;
}


/* =========================
   CARD SPACING IMPROVEMENT
========================= */

.card {
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}


/* =========================
   SECTION BREATHING SPACE
========================= */

.section {
    padding: 80px 0;
}

/* last sections more space */
.section:last-child {
    padding-bottom: 100px;
}


/* =========================
   BUTTON SPACING FIX
========================= */

.hero-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px; /* mobile overlap fix */
}

/* bottom CTA fix */
.cta {
    padding: 90px 20px;
}


/* =========================
   FOOTER SPACING FIX
========================= */

.footer {
    padding: 70px 0;
}

.footer h4 {
    margin-bottom: 12px;
}

.footer p,
.footer a {
    margin-top: 8px;
}


/* =========================
   TEXT HIERARCHY (PREMIUM LOOK)
========================= */

h1 {
    line-height: 1.2;
}

h2 {
    margin-bottom: 15px;
}

p {
    max-width: 700px;
    margin: 0 auto;
}


/* =========================
   MOBILE POLISH
========================= */

@media(max-width: 600px){

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
        padding: 0 10px;
    }

    .card img {
        height: 180px;
    }

    .section {
        padding: 60px 15px;
    }

    .cta {
        padding: 70px 15px;
    }
}

/* FIX LOGO ALIGNMENT */
.partner-card img {
    height: 100px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
}

/* FIX BUTTON SPACE BOTTOM */
.section:last-child {
    padding-bottom: 120px !important;
}

/* FIX IMAGE CUT */
.card img {
    object-position: center !important;
}

/* =========================
   PREMIUM UPGRADE
========================= */

/* 🌈 SOFT BACKGROUND */
body {
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f9 100%);
}

/* ✨ GLASS CARD EFFECT */
.card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.04);
}

/* 🔥 BUTTON PREMIUM */
.btn-primary {
    background: linear-gradient(90deg, #ff4b4b, #9c27b0);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.35);
}

/* ✨ SECTION DEPTH */
.section.alt {
    background: linear-gradient(180deg, #f9f9f9, #f1f1f3);
}

/* 🔥 HERO UPGRADE */
.hero {
    background: radial-gradient(circle at top, rgba(156,39,176,0.08), transparent);
}

/* 💎 IMAGE PREMIUM LOOK */
.card img {
    transition: 0.4s ease;
}

.card:hover img {
    transform: scale(1.03);
}

/* 🔥 FOOTER PREMIUM */
.footer {
    background: linear-gradient(180deg, #111, #000);
}

/* ✨ TEXT POLISH */
h1 {
    letter-spacing: -0.5px;
}

h2 {
    color: #222;
}

/* 🔥 SMALL MICRO INTERACTION */
a, button {
    transition: all 0.25s ease;
}

/* =========================
   REAL PREMIUM UPGRADE
========================= */

/* 🎬 HERO CINEMATIC */
.hero {
    position: relative;
    color: #fff;
    background: url('https://wolfcrow.com/wp-content/uploads/2023/06/image.jpg') center/cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1,
.hero h2,
.hero p {
    color: #fff;
}

/* 🎯 PREMIUM CARDS */
.card {
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* 🌈 SECTION FLOW */
.section:nth-child(even) {
    background: #f8f8fb;
}

/* ✨ HOVER DEPTH */
.card:hover {
    transform: translateY(-8px) scale(1.01);
}

/* 🎥 BUTTON STRONG */
.btn-primary {
    padding: 12px 26px;
    font-size: 15px;
}