/* =========================================
   BIZGARDEN INDIA
   Corporate Legal & Business Solutions
   Main Stylesheet
========================================= */

:root {
    --primary: #0b4ea2;
    --primary-dark: #073b7a;
    --secondary: #1d73d4;
    --accent: #f5b800;
    --dark: #10233f;
    --text: #4b5b70;
    --light: #f5f8fc;
    --white: #ffffff;
    --border: #e4eaf2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   NAVIGATION
========================================= */

.navbar {
    padding: 18px 0;
    background: rgba(7, 59, 122, 0.96);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(7, 59, 122, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--white) !important;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--accent);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
    font-weight: 500;
    margin-left: 18px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.4);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* =========================================
   BUTTONS
========================================= */

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 27px;
    border-radius: 6px;
    background: var(--accent);
    color: #17253a;
    font-weight: 600;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: #ffd34d;
    border-color: #ffd34d;
    color: #17253a;
    transform: translateY(-2px);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 27px;
    border-radius: 6px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
}

/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;
    padding: 150px 0 100px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.12), transparent 25%),
        linear-gradient(135deg, #073b7a 0%, #0b4ea2 55%, #1d73d4 100%);
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    right: -150px;
    top: 100px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    right: -80px;
    top: 175px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 7px 15px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--accent);
}

.hero-description {
    max-width: 650px;
    font-size: 1.12rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Hero visual */

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    width: 390px;
    max-width: 100%;
    padding: 38px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.hero-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.hero-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.hero-card p {
    color: rgba(255,255,255,0.78);
    margin-bottom: 25px;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-list li {
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    font-size: 0.92rem;
}

.hero-list i {
    color: var(--accent);
    margin-right: 8px;
}

/* =========================================
   SECTION COMMON
========================================= */

.section {
    padding: 90px 0;
}

.section-light {
    background: var(--light);
}

.section-title {
    margin-bottom: 50px;
}

.section-title .eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-title h2 {
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text);
}

/* =========================================
   ABOUT
========================================= */

.about-card {
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(16,35,63,0.05);
}

.about-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,78,162,0.1);
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    color: var(--dark);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* =========================================
   SERVICES
========================================= */

.service-card {
    height: 100%;
    padding: 30px 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11,78,162,0.25);
    box-shadow: 0 18px 40px rgba(11,78,162,0.1);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,78,162,0.08);
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--dark);
    font-size: 1.12rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =========================================
   WHY CHOOSE US
========================================= */

.feature-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.feature-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
}

.feature-item h4 {
    color: var(--dark);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =========================================
   STATS
========================================= */

.stats-section {
    padding: 55px 0;
    background: var(--primary);
    color: var(--white);
}

.stat-box {
    text-align: center;
    padding: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #073b7a, #0b4ea2);
    color: var(--white);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.82);
    margin-bottom: 28px;
}

/* =========================================
   FOOTER
========================================= */

footer {
    background: #061c38;
    color: rgba(255,255,255,0.7);
    padding: 65px 0 25px;
}

.footer-brand {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.82rem;
}

/* =========================================
   WHATSAPP
========================================= */

.whatsapp-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    font-size: 1.65rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.08);
    color: white;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .navbar-collapse {
        padding: 20px 0 10px;
    }

    .nav-link {
        margin-left: 0;
        padding: 8px 0 !important;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-visual {
        margin-top: 60px;
    }

}

@media (max-width: 767px) {

    .section {
        padding: 70px 0;
    }

    .hero {
        min-height: auto;
        padding: 135px 0 80px;
    }

    .hero h1 {
        letter-spacing: -0.8px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-card {
        padding: 28px;
    }

    .stat-number {
        font-size: 2rem;
    }

}

@media (max-width: 575px) {

    .navbar-brand {
        font-size: 1.3rem;
    }

    .hero {
        padding-top: 120px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

}
     /* =========================================
   BIZGARDEN HOMEPAGE LAYOUT SYSTEM
   Added for responsive grid and navigation
========================================= */

/* Main container */

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* Responsive row */

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}


/* Column base */

.row > [class*="col-"] {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}


/* Desktop columns */

@media (min-width: 768px) {

    .col-md-4 {
        width: 33.333333%;
    }

    .col-md-6 {
        width: 50%;
    }

}


/* Large desktop columns */

@media (min-width: 992px) {

    .col-lg-2 {
        width: 16.666667%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.333333%;
    }

    .col-lg-5 {
        width: 41.666667%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-8 {
        width: 66.666667%;
    }

}


/* Text utilities */

.text-center {
    text-align: center;
}

.text-lg-end {
    text-align: left;
}


/* Vertical alignment */

.align-items-center {
    align-items: center;
}


/* Margin utilities */

.mb-4 {
    margin-bottom: 24px;
}


/* =========================================
   HOMEPAGE NAVIGATION
========================================= */

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-menu .nav-link {
    display: inline-block;
}

.navbar-toggler {
    display: none;
    background: transparent;
    color: #ffffff;
    border: 0;
    font-size: 1.35rem;
    cursor: pointer;
    padding: 8px;
}


/* =========================================
   NAVIGATION CTA
========================================= */

.nav-cta {
    margin-left: 15px;
    padding: 10px 18px;
    font-size: 0.88rem;
}


/* =========================================
   HERO LAYOUT
========================================= */

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .row {
    align-items: center;
}

.hero-content {
    width: 58%;
}

.hero-visual {
    width: 42%;
}


/* =========================================
   MOBILE NAVIGATION
========================================= */

@media (max-width: 991px) {

    .navbar-toggler {
        display: block;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;

        display: none;

        flex-direction: column;
        align-items: stretch;

        padding: 20px;

        background: #073b7a;

        border-radius: 0 0 12px 12px;

        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    .navbar-menu.open {
        display: flex;
    }

    .navbar-menu .nav-link {
        margin-left: 0;
        padding: 10px 5px !important;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero-visual {
        width: 100%;
    }

}


/* =========================================
   TABLET
========================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .hero-content {
        width: 100%;
    }

    .hero-visual {
        width: 100%;
        margin-top: 50px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .row {
        margin-left: -8px;
        margin-right: -8px;
    }

    .row > [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }

    .hero-content,
    .hero-visual {
        width: 100%;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .text-lg-end {
        text-align: center;
    }

}


/* =========================================
   LARGE SCREEN CTA
========================================= */

@media (min-width: 992px) {

    .text-lg-end {
        text-align: right;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-card {
        width: 100%;
    }

    .service-card,
    .about-card {
        padding: 25px 20px;
    }

}  
/* responsive layout */
