/* CSS START */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #05060b;
    --text-white: #ffffff;
    --accent-purple: #a561ff;
    --accent-blue: #2bd9fe;
    --gradient-btn: linear-gradient(90deg, #7b42f6, #b01eff);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #1a0b2e);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* NAVBAR */
.navbar {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    padding: 25px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    /* Black color hata diya, ab bas halka sa tint (0.1) rahega */
    background: rgba(255, 255, 255, 0.05) !important;

    /* Strong Blur Effect (Glass look ke liye) */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px);

    /* Halki si border taaki alag dikhe */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;

    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    /* Halka shadow */
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin: 0;
}

.brand-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.brand-text {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

.brand-slogan {
    font-size: 10px;
    color: var(--accent-purple);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin-left: 25px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(165, 97, 255, 0.6);
}

/* --- ACTIVE LINK STYLING --- */

/* Jab link Active ho (Current Page) */
.navbar-nav .nav-link.active {
    color: #a561ff !important;
    /* Purple Color */
    font-weight: 700 !important;
    /* Bold Text */
    text-shadow: 0 0 15px rgba(165, 97, 255, 0.8);
    /* Glowing Effect */
    border-bottom: 2px solid #a561ff;
    /* Niche Line (Optional) */
}

/* HERO */
.hero-section {
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to right, rgba(5, 6, 11, 0.95) 30%, rgba(5, 6, 11, 0.1) 100%), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-small-text {
    color: #d4a5ff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* BOXES */
.content-box,
.service-box,
.office-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.service-box:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

/* FORM & BUTTONS */
.btn-vision {
    background: var(--gradient-btn);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    border: 2px solid transparent;
    /* Border add kiya taaki size same rahe */
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(123, 66, 246, 0.4);
    transition: all 0.3s ease;
}

/* 2. Contact Us Button (Outline) */
.btn-outline-vision {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 15px;
    transition: all 0.3s ease;
}

/* Hover Effect: FILL Button */
.btn-outline-vision:hover {
    background: white;
    /* Pura White Fill ho jayega */
    color: #0b0d17;
    /* Text Dark ho jayega */
    border-color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.form-control-dark {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;

    /* 🚨 YE LINE HONI CHAHIYE */
    width: 100%;
    display: block;
}

.form-control-dark:focus {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: var(--accent-purple);
    box-shadow: none;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
}

/* FOOTER */
.site-footer {
    padding: 80px 0 30px 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* --- DYNAMIC SERVICE BOXES (Fixed Sizing) --- */

.service-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center Content */
}

.service-box:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

/* --- ICON BOX (Round Circle) --- */
.service-icon-box {
    width: 80px;          /* Fixed Width */
    height: 80px;         /* Fixed Height */
    background: rgba(255, 255, 255, 0.05); /* Halka Background */
    border-radius: 50%;   /* Gol Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto; /* Center alignment */
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;     /* Image bahar nahi niklegi */
    padding: 15px;        /* Image aur Border ke beech gap */
}

/* --- IMAGE STYLING --- */
.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* Image pichkegi nahi, fit aayegi */
    border-radius: 50%;
}

.service-title {
    color: var(--accent-purple);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}