/* =========================================================
   VAIDESH IT SOLUTIONS
   Main Website Styles
   ========================================================= */


/* ================= ROOT ================= */

:root {
    --bg: #070b14;
    --bg-soft: #0c1220;
    --card: #101827;
    --card-hover: #141f32;

    --text: #f5f7fb;
    --text-soft: #aab4c5;
    --text-muted: #778398;

    --accent: #4f8cff;
    --accent-light: #76a7ff;
    --accent-dark: #2864d7;

    --border: rgba(255, 255, 255, 0.09);
    --border-light: rgba(255, 255, 255, 0.14);

    --success: #25d366;

    --container: 1180px;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}


/* ================= RESET ================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

button,
input,
textarea,
select {
    font-family: inherit;
}

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


/* ================= CONTAINER ================= */

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}


/* ================= NAVBAR ================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(7, 11, 20, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);
}

.nav-container {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ================= LOGO ================= */

.logo {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    line-height: 1;
    text-decoration: none;
}

.logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo span {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.logo small {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--text-muted);
}

/* ================= NAV LINKS ================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 500;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.nav-links a:hover {
    color: var(--text);
    transform: translateY(-1px);
}


/* ================= NAV BUTTON ================= */

.nav-button {
    padding: 11px 18px;

    border-radius: 10px;

    background: rgba(79, 140, 255, 0.12);
    border: 1px solid rgba(79, 140, 255, 0.35);

    color: #dbe8ff;

    font-size: 13px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.nav-button:hover {
    background: rgba(79, 140, 255, 0.2);
    border-color: rgba(79, 140, 255, 0.6);
    transform: translateY(-2px);
}


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

.hero {
    position: relative;
    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(79, 140, 255, 0.15),
            transparent 34%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(79, 140, 255, 0.07),
            transparent 30%
        );
}

.hero::before {
    content: "";

    position: absolute;
    width: 500px;
    height: 500px;

    right: -200px;
    top: -180px;

    border-radius: 50%;

    border: 1px solid rgba(79, 140, 255, 0.12);

    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 80px;

    padding: 100px 0;
}


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

.hero-text {
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;

    padding: 8px 12px;

    margin-bottom: 25px;

    border-radius: 999px;

    background: rgba(79, 140, 255, 0.08);
    border: 1px solid rgba(79, 140, 255, 0.2);

    color: var(--accent-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 800;

    margin-bottom: 28px;
}

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

.hero-text > p {
    max-width: 600px;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 38px;
}


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

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    flex-wrap: wrap;
}


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

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: white;

    box-shadow:
        0 12px 30px rgba(79, 140, 255, 0.2);
}

.btn-primary:hover {
    background: var(--accent-dark);

    box-shadow:
        0 16px 35px rgba(79, 140, 255, 0.3);
}

.btn-secondary {
    background: transparent;

    border: 1px solid var(--border-light);

    color: var(--text);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}


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

.hero-card {
    position: relative;

    padding: 1px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            rgba(79, 140, 255, 0.55),
            rgba(255, 255, 255, 0.05),
            rgba(79, 140, 255, 0.1)
        );

    box-shadow: var(--shadow);
}

.hero-card-content {
    padding: 42px;

    border-radius: calc(var(--radius-lg) - 1px);

    background:
        linear-gradient(
            145deg,
            #101827,
            #0b111d
        );
}

.hero-card-label {
    display: block;

    color: var(--accent-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.hero-card h2 {
    font-size: 38px;
    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 18px;
}

.hero-card p {
    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 35px;
}


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

.hero-stat-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.hero-stat-grid div {
    padding: 18px;

    border: 1px solid var(--border);

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.025);
}

.hero-stat-grid strong {
    display: block;

    font-size: 15px;

    margin-bottom: 3px;
}

.hero-stat-grid span {
    color: var(--text-muted);

    font-size: 11px;
}


/* ================= SECTIONS ================= */

.section {
    padding: 120px 0;
}

.products-section {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.018),
            transparent
        );
}


/* ================= SECTION HEADING ================= */

.section-heading {
    max-width: 720px;

    margin-bottom: 55px;
}

.section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--accent-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 18px;
}

.section-heading h2 span {
    color: var(--accent-light);
}

.section-heading > p {
    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.8;

    max-width: 650px;
}


/* ================= INFO GRID ================= */

.info-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.info-grid .info-card:nth-child(4) {
    grid-column: span 1;
}


/* ================= INFO CARD ================= */

.info-card {
    padding: 30px;

    min-height: 220px;

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    border: 1px solid var(--border);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);

    border-color: rgba(79, 140, 255, 0.35);

    background: var(--card-hover);
}

.card-number {
    color: var(--accent-light);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 24px;
}

.info-card h3 {
    font-size: 19px;

    margin-bottom: 12px;

    letter-spacing: -0.3px;
}

.info-card p {
    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.75;
}


/* ================= PRODUCT GRID ================= */

.catalog-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* ================= PRODUCT CARD ================= */

.catalog-card {
    position: relative;

    min-height: 350px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            145deg,
            #101827,
            #0b111c
        );

    border: 1px solid var(--border);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.catalog-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background: rgba(79, 140, 255, 0.08);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.catalog-card:hover {
    transform: translateY(-7px);

    border-color: rgba(79, 140, 255, 0.35);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25);
}

.catalog-card:hover::before {
    transform: scale(1.5);

    background: rgba(79, 140, 255, 0.12);
}


/* ================= BRAND SHORT FORM ================= */

.brand-short {
    position: relative;
    z-index: 1;

    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 26px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(79, 140, 255, 0.2),
            rgba(79, 140, 255, 0.06)
        );

    border: 1px solid rgba(79, 140, 255, 0.25);

    color: var(--accent-light);

    font-size: 23px;

    font-weight: 800;

    letter-spacing: -1px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.catalog-card h3 {
    position: relative;
    z-index: 1;

    font-size: 22px;

    margin-bottom: 12px;

    letter-spacing: -0.5px;
}

.catalog-card p {
    position: relative;
    z-index: 1;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 25px;
}

.catalog-link {
    position: relative;
    z-index: 1;

    margin-top: auto;

    color: var(--accent-light);

    font-size: 12px;

    font-weight: 700;

    transition: transform 0.25s ease;
}

.catalog-card:hover .catalog-link {
    transform: translateX(4px);
}


/* ================= CONTACT ================= */

.contact-grid {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 50px;

    align-items: start;
}


/* ================= CONTACT DETAILS ================= */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.contact-card {
    padding: 22px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.025);
}

.contact-card > span {
    display: block;

    color: var(--text-muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;

    margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.6;

    transition: color 0.25s ease;
}

.contact-card a:hover {
    color: var(--accent-light);
}


/* ================= FORM ================= */

.contact-form {
    padding: 32px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.015)
        );
}

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--text-soft);

    font-size: 12px;

    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.035);

    color: var(--text);

    outline: none;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group input,
.form-group select {
    height: 46px;

    padding: 0 14px;
}

.form-group textarea {
    min-height: 130px;

    resize: vertical;

    padding: 13px 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(79, 140, 255, 0.6);

    background: rgba(79, 140, 255, 0.035);

    box-shadow:
        0 0 0 3px rgba(79, 140, 255, 0.08);
}

.form-submit {
    margin-top: 25px;

    width: 100%;
}


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

.cta-section {
    padding: 70px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(79, 140, 255, 0.09),
            transparent 50%
        );
}

.cta-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 44px);

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.cta-content h2 span {
    color: var(--accent-light);
}


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

.footer {
    padding-top: 70px;

    background: #050810;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 0.7fr 1fr;

    gap: 70px;

    padding-bottom: 55px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-grid > div:first-child p {
    max-width: 360px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.8;
}

.footer h4 {
    margin-bottom: 18px;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1.3px;
}

.footer-grid > div:not(:first-child) {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-grid a,
.footer-grid span {
    color: var(--text-muted);

    font-size: 12px;

    transition: color 0.25s ease;
}

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


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

.footer-bottom {
    border-top: 1px solid var(--border);

    padding: 20px 0;
}

.footer-bottom p {
    color: var(--text-muted);

    font-size: 11px;
}


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

.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.whatsapp-icon {
    font-size: 28px;
    font-weight: bold;
}
}


/* ================= SELECTION ================= */

::selection {
    background: rgba(79, 140, 255, 0.35);

    color: white;
}


/* ================= SCROLLBAR ================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050810;
}

::-webkit-scrollbar-thumb {
    background: #1c2739;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2a3b58;
}


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

@media (max-width: 1000px) {

    .hero-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-text {
        max-width: 800px;
    }

    .hero-card {
        max-width: 700px;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}


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

@media (max-width: 700px) {

    .container {
        width: min(100% - 32px, var(--container));
    }

    .navbar {
        position: relative;
    }

    .nav-container {
        min-height: 70px;
    }

    .nav-links {
        display: none;
    }

    .nav-button {
        padding: 9px 13px;

        font-size: 11px;
    }

    .logo span {
        font-size: 18px;
    }

    .logo small {
        font-size: 7px;
    }


    /* HERO */

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 75px 0;

        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 60px);

        letter-spacing: -2.5px;
    }

    .hero-text > p {
        font-size: 15px;
    }

    .hero-card-content {
        padding: 28px;
    }

    .hero-card h2 {
        font-size: 30px;
    }

    .hero-stat-grid {
        gap: 8px;
    }

    .hero-stat-grid div {
        padding: 14px;
    }


    /* SECTIONS */

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 36px;
    }


    /* GRIDS */

    .info-grid {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-card {
        min-height: 320px;
    }


    /* FORM */

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .contact-form {
        padding: 22px;
    }


    /* CTA */

    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }


    /* WHATSAPP */

    .whatsapp-float {
        right: 18px;
        bottom: 18px;

        width: 54px;
        height: 54px;
    }

    .whatsapp-icon {
        font-size: 25px;
    }

}


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

@media (max-width: 420px) {

    .nav-button {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

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

    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 42px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

}
/* ENQUIRY DROPDOWN FIX */

.contact-form select {
    width: 100%;
    height: 58px;
    padding: 0 50px 0 18px;

    background: #0d1422;
    color: #ffffff;

    border: 1px solid rgba(90, 145, 255, 0.45);
    border-radius: 14px;

    font-family: inherit;
    font-size: 15px;

    outline: none;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #6ea1ff 50%),
        linear-gradient(135deg, #6ea1ff 50%, transparent 50%);

    background-position:
        calc(100% - 23px) 25px,
        calc(100% - 17px) 25px;

    background-size: 6px 6px;
    background-repeat: no-repeat;
}

.contact-form select:hover {
    border-color: #6ea1ff;
}

.contact-form select:focus {
    border-color: #6ea1ff;
    box-shadow: 0 0 0 3px rgba(70, 130, 255, 0.12);
}

.contact-form select option {
    background: #0d1422;
    color: #ffffff;
}
/* ================= PRODUCT PAGE ================= */

.product-page {
    padding-top: 120px;
}

.product-page .section-heading {
    max-width: 850px;
}


/* PRODUCT MARK */

.brand-mark {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(77, 148, 255, 0.45);

    border-radius: 16px;

    background: rgba(40, 80, 150, 0.18);

    color: #6ea2ff;

    font-size: 22px;
    font-weight: 800;

    margin-bottom: 30px;
}


/* PRODUCT FEATURES */

.product-features {
    list-style: none;

    padding: 0;
    margin: 24px 0 30px;
}

.product-features li {
    position: relative;

    padding-left: 20px;
    margin-bottom: 10px;

    color: #aebbd4;

    font-size: 14px;
}

.product-features li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #6ea2ff;

    font-weight: 700;
}


/* FEATURED PRODUCT */

.featured-product {
    border-color: rgba(77, 148, 255, 0.65);
}

.product-badge {
    display: inline-block;

    padding: 6px 10px;

    margin-bottom: 18px;

    border-radius: 20px;

    background: rgba(77, 148, 255, 0.12);

    border: 1px solid rgba(77, 148, 255, 0.3);

    color: #6ea2ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* MOBILE */

@media (max-width: 768px) {

    .product-page {
        padding-top: 90px;
    }

    .brand-mark {
        width: 58px;
        height: 58px;
    }

}
/* ================= BRAND SHORT FORM ================= */

.brand-short {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(70, 130, 255, 0.08);
    border: 1px solid rgba(70, 140, 255, 0.35);

    color: #6ea0ff;

    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;

    margin-bottom: 28px;

    transition: all 0.3s ease;
}

.catalog-card:hover .brand-short {
    background: rgba(70, 130, 255, 0.15);
    border-color: #5f9cff;
    transform: translateY(-3px);
}
