/* Global reset for full width elements */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}/* Font Awesome Import */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #a5b4fc;
    --primary-bg: #eef2ff;
    --secondary: #ec4899;
    --secondary-light: #fbcfe8;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gray-light: #e2e8f0;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text: #334155;
    --border-radius: 12px;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   font-family: 'Poppins', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body {
    background: linear-gradient(-45deg, #f8fafc, #eef2ff, #ede9fe, #fae8ff);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Add a new container class that doesn't restrict width */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
    box-sizing: border-box;
}

.main-title {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
    text-align: center;
}

.main-title h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #2d3748;
    margin-bottom: 1.5rem;
}
.main-title h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.main-title img {
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
}

.main-title p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 auto;
    text-align: left;
}

.main-title b {
    color: #3490dc;
    font-weight: 600;
}

/* Responsive styles */
@media (max-width: 768px) {
    .main-title {
        padding: 1.5rem 1rem;
    }
    
    .main-title h1 {
        font-size: 2rem;
    }
    
    .main-title p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .main-title h1 {
        font-size: 1.7rem;
    }
}
/* Navigation Header Styles */
.main-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.site-brand:hover {
    transform: scale(1.05);
}

.site-brand:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Logo Image Styles */
.site-brand img {
    height: 65px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1);
}

/* Logo hover effect */
.site-brand:hover img {
    filter: brightness(1.1) saturate(1.1);
}

.main-nav {
    display: flex;
    justify-content: center;
    flex: 1;
    margin: 0 1.25rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.875rem;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-item a {
    text-decoration: none;
    font-weight: 500;
    color: black;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-item a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: var(--transition);
    border-radius: 3px;
}

.nav-item a:hover {
    color: black;
}

.nav-item a:hover:after {
    width: 100%;
}

.nav-item.active a {
  color: black;
    font-weight: 600;
}

.nav-item.active a:after {
    width: 100%;
    background-color: var(--secondary-light);
}

.nav-actions {
    display: flex;
    gap: 0.9375rem;
    align-items: center;
}

.action-btn {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    padding: 0.625rem 1.125rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.action-btn.highlight {
    background-color: var(--secondary);
    font-weight: 600;
    padding: 0.625rem 1.25rem;
}

.action-btn.highlight:hover {
    background-color: #db2777;
}

.action-btn i {
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu Styling */
@media (max-width: 768px) {
    .main-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        padding: 0;
        margin: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        z-index: 200;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        padding: 0;
    }

    .nav-item a {
        display: block;
        padding: 1rem 2rem;
        color: white;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-item:last-child a {
        border-bottom: none;
    }

    .nav-item a:hover {
        background-color: rgba(255, 255, 255, 0.12);
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: rgba(255,255,255,0.1);
        transition: background 0.2s;
    }

    .mobile-menu-btn:hover {
        background: rgba(255,255,255,0.2);
    }

    .nav-actions {
        display: none;
    }
}
 .site-footer {
            background-color: #333;
            color: #fff;
            padding: 30px 20px 20px;
            margin-top: auto;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-links {
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #4a90e2;
        }

        .separator {
            color: #666;
            margin: 0 5px;
        }

        .social-icons {
            margin: 25px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #555;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .social-icon.facebook:hover {
            background-color: #1877f2;
        }

        .social-icon.twitter:hover {
            background-color: #1da1f2;
        }

        .social-icon.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-icon.linkedin:hover {
            background-color: #0077b5;
        }

        .social-icon.youtube:hover {
            background-color: #ff0000;
        }

        .social-icon svg {
            width: 22px;
            height: 22px;
            fill: #fff;
        }

        .footer-copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 14px;
            color: #ccc;
        }

        .footer-copyright a {
            color: #4a90e2;
            text-decoration: none;
        }

        .footer-copyright a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .footer-links {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .separator {
                display: none;
            }

            .social-icons {
                gap: 15px;
            }

            .social-icon {
                width: 40px;
                height: 40px;
            }

            .social-icon svg {
                width: 20px;
                height: 20px;
            }
        }

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Responsive footer adjustments */
@media (max-width: 1024px) {
    .container {
        padding: 1.5rem;
    }
    
    .main-title h1 {
        font-size: 2.25rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .options {
        flex-direction: column;
        gap: 0.9375rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .main-title h1 {
        font-size: 2rem;
    }
    
    .main-title p {
        font-size: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .main-title h1 {
        font-size: 1.75rem;
    }
    
    .brand-text {
        font-size: 1.25rem;
    }
    
    .option-group {
        width: 100%;
    }
    
    .select-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.625rem;
    }
    
    .select-container select {
        width: 100%;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sign-item {
    animation: fadeIn 0.5s ease forwards;
}
.btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
}

.all-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #3a86ff;
  color: white;
  font-weight: 500;
  font-family: Arial, sans-serif;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.all-btn:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.all-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .btn-list {
    flex-direction: column;
    align-items: center;
  }
  
  .all-btn {
    width: 90%;
    text-align: center;
  }
}



@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .site-brand img {
        height: 65px;
        width: auto;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
        height: 55px;
    }
    
    .site-brand img {
       height: 65px;
        width: auto;
        max-width: 250px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .main-header {
        background-color: #1f2937;
        border-bottom-color: #374151;
    }
    
    .site-brand img {
        filter: brightness(0.9);
    }
    
    .site-brand:hover img {
        filter: brightness(1) saturate(1.1);
    }
    
    .logo-fallback {
        color: #ffffff;
    }
}
#vr-wrapper-main{
    width:100%;
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

#vr-wrapper-main .vr-single-card{
    width:100%;
    max-width:540px;
}

#vr-wrapper-main .vr-card-heading{
    font-size:32px;
    line-height:54px;
    font-weight:700;
    color:#2d2926;
    text-align:center;
    margin:0 0 20px 0;
}

#vr-wrapper-main .vr-card-image{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
}

#vr-wrapper-main .vr-content-box{
       padding:0 15px;

}

#vr-wrapper-main {
    font-size:18px;
    line-height:32px;
    color:#777777;
    text-align:left;
    margin:0;
}

/* Mobile Responsive */

@media only screen and (max-width:768px){

    #vr-wrapper-main{
        gap:35px;
    }

    #vr-wrapper-main .vr-card-heading{
        font-size:20px;
        line-height:30px;
        margin-bottom:7px;
    }

    #vr-wrapper-main .vr-card-text{
        font-size:16px;
        line-height:20px;
 padding:0 10px; /* mobile spacing */
    }

}
.article{
    max-width: 1200px;
    margin: 40px auto;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
    line-height: 1.7;
}

.article h2{
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #111;
}

.article h3{
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #222;
}

.article p{
    font-size: 16px;
    color: #555;
    margin-bottom: 18px;
}

/* Mobile Responsive */
@media(max-width:768px){
    .article{
        padding: 18px;
        margin: 20px 10px;
    }

    .article h2{
        font-size: 26px;
    }

    .article h3{
        font-size: 20px;
    }

    .article p{
        font-size: 15px;
    }
}
