:root {
    --bg-dark: #080b1a;
    --glass: rgba(255, 255, 255, 0.14);
    --text: #f1f5ff;
}

body {
    background: radial-gradient(circle at top left, #1b2559 0%, #080b1a 45%, #05060d 100%);
    color: var(--text);
    font-family: "Inter", "Segoe UI", sans-serif;
    scroll-behavior: smooth;
}

.page-transition {
    animation: pageFade .5s ease;
}

@keyframes pageFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.glass-nav, .glass-card, .premium-card {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
}

.glass-card, .premium-card {
    border-radius: 1.3rem;
}

.premium-card {
    padding: 1.5rem;
    transition: transform .3s ease, box-shadow .3s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(17, 232, 255, 0.16);
}

.btn-gradient {
    background: linear-gradient(135deg, #00d3ff, #7b5cff);
    border: 0;
    color: #fff;
    border-radius: 999px;
    padding: .62rem 1.35rem;
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-gradient:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 211, 255, 0.35);
}

.hero-slide {
    min-height: 68vh;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(6, 8, 19, .85), rgba(12, 27, 54, .45));
}

.hero-content {
    max-width: 660px;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-gradient-text {
    background: linear-gradient(90deg, #8be8ff, #ffffff, #8be8ff);
    background-size: 220% 220%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.gradient-section {
    background: linear-gradient(130deg, rgba(30, 48, 120, 0.45), rgba(98, 37, 122, 0.2));
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    text-decoration: none;
    margin-right: .5rem;
    transition: .3s;
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(123, 92, 255, .85);
    color: #fff;
}

.footer-full {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    background: linear-gradient(180deg, rgba(4, 8, 24, .96), rgba(5, 8, 18, .98));
}

.footer-main-row {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .9rem;
    padding: .9rem .8rem;
}

.footer-social-row .social-link {
    width: 36px;
    height: 36px;
    margin-right: .35rem;
}

.footer-logo-india {
    width: min(190px, 100%);
    height: auto;
}

.gem-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .8rem;
    padding: .75rem .75rem;
}

.footer-logo-gem {
    width: min(220px, 100%);
    height: auto;
}

.site-logo {
    
    height: 42px;
    object-fit: cover;
 
}

.brand-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d3ff, #7b5cff);
}

.glass-input {
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.glass-input:focus {
    color: #fff;
    background: rgba(255, 255, 255, .09);
    border-color: #7b5cff;
    box-shadow: 0 0 0 .2rem rgba(123, 92, 255, .2);
}

.products-category-select {
    background: rgba(255, 255, 255, .95);
    color: #111;
    border-color: rgba(17, 17, 17, .16);
}

.products-category-select:focus {
    background: rgba(255, 255, 255, .95);
    color: #111;
    border-color: rgba(17, 17, 17, .28);
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .16);
}

.products-category-select option {
    background: rgba(255, 255, 255, .95);
    color: #111;
}

.timeline-item {
    background: rgba(255, 255, 255, .08);
    border-left: 3px solid #00d3ff;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    border-radius: .8rem;
}

.team-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

#cursor-glow {
    position: fixed;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(0, 211, 255, 0.35);
    box-shadow: 0 0 30px rgba(0, 211, 255, .45);
    z-index: 2000;
    transform: translate(-50%, -50%);
}

@media (max-width: 767.98px) {
    .hero-slide { min-height: 56vh; }
    #cursor-glow { display: none; }
    .gem-card { text-align: center !important; }
    .footer-main-row { padding: .85rem .7rem; }
}
