        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0a0f1d;
            --secondary: #121a2d;
            --accent: #4361ee;
            --accent-light: #4895ef;
            --accent-dark: #3a56d4;
            --text: #f8f9fa;
            --text-secondary: #adb5bd;
            --border: rgba(255, 255, 255, 0.1);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --content-bg: #ffffff;
            --content-text: #1e293b;
            --content-secondary: #475569;
            --divider: #e2e8f0;
        }

        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            color: var(--content-text);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 20px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

       

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        nav a:hover {
            color: var(--accent-light);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .main-content {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 25px;
            width: 100%;
            background: var(--content-bg);
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            padding: 50px;
            position: relative;
            z-index: 2;
        }

        .page-title {
            text-align: center;
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: var(--primary);
            font-weight: 800;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            border-radius: 2px;
            box-shadow: 0 2px 8px rgba(67, 97, 238, 0.4);
        }

        .last-updated {
            text-align: center;
            color: var(--content-secondary);
            font-size: 1.15rem;
            margin-bottom: 40px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .section {
            margin-bottom: 45px;
            padding-bottom: 35px;
            border-bottom: 1px solid var(--divider);
        }

        .section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .section-title {
            font-size: 2.1rem;
            margin-bottom: 22px;
            color: var(--primary);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 55px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            border-radius: 2px;
        }

        .section-content {
            color: var(--content-secondary);
            font-size: 1.08rem;
            line-height: 1.75;
        }

        .section-content p {
            margin-bottom: 18px;
        }

        .section-content ul, 
        .section-content ol {
            margin: 20px 0 20px 30px;
            line-height: 1.8;
        }

        .section-content li {
            margin-bottom: 10px;
        }

        .section-content a {
            color: var(--accent);
            text-decoration: underline;
            transition: var(--transition);
            font-weight: 500;
        }

        .section-content a:hover {
            color: var(--accent-dark);
            text-decoration: none;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.08), rgba(114, 9, 183, 0.08));
            border: 1px solid rgba(67, 97, 238, 0.2);
            border-radius: 16px;
            padding: 25px;
            margin: 25px 0;
            position: relative;
            overflow: hidden;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.07) 0%, transparent 70%);
            z-index: 0;
        }

        .highlight-box > * {
            position: relative;
            z-index: 1;
        }

        .highlight-title {
            font-weight: 700;
            color: var(--accent-dark);
            font-size: 1.35rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .highlight-title::before {
            content: '!';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            font-weight: bold;
            flex-shrink: 0;
        }

        .acceptance-section {
            text-align: center;
            padding: 35px;
            background: rgba(67, 97, 238, 0.07);
            border-radius: 16px;
            margin: 30px 0;
            border: 1px solid rgba(67, 97, 238, 0.15);
        }

        .acceptance-section h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--accent-dark);
        }

        .acceptance-section p {
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto 20px;
            color: var(--content-secondary);
        }

        .signature-line {
            width: 300px;
            height: 1px;
            background: var(--divider);
            margin: 25px auto;
            position: relative;
        }

        .signature-line::after {
            content: '_________________________';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-weight: 500;
            letter-spacing: 3px;
            color: var(--content-secondary);
        }

        .contact-info {
            background: rgba(248, 250, 252, 0.7);
            border-radius: 16px;
            padding: 30px;
            margin: 30px 0;
            border: 1px solid var(--divider);
        }

        .contact-info h3 {
            font-size: 1.7rem;
            margin-bottom: 20px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-info h3::before {
            content: '✉️';
        }

        .contact-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .contact-label {
            font-weight: 600;
            color: var(--accent-dark);
        }

        .contact-value {
            color: var(--content-secondary);
            font-size: 1.05rem;
        }

       /* Advanced Footer Styles with Reveal Animation */
footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text);
    padding-top: 60px;
    padding-bottom: 45px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

footer.visible {
    opacity: 1;
    transform: translateY(0);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg,
        var(--accent),
        var(--accent-light),
        var(--accent-dark),
        var(--accent-light),
        var(--accent));
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.footer-section {
    opacity: 0;
    transform: translateY(25px);
    transition: var(--transition);
    padding: 0 5px;
}

.footer-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-section h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

/* About Us Section */
.about-us p {
    color: var(--text-secondary);
    margin: 12px 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Visit Us Section */
.visit-us p {
    color: var(--text-secondary);
    margin: 12px 0;
    line-height: 1.8;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 3px;
}

.visit-us p::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 7px;
}

/* Quick Links Section */
.quick-links ul {
    list-style: none;
    margin-top: 10px;
}

.quick-links li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 28px;
    opacity: 0.9;
}

.quick-links li:hover {
    opacity: 1;
    transform: translateX(3px);
    padding-left: 32px;
}

.quick-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.quick-links li:hover::before {
    transform: translateX(-2px);
}

.quick-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    display: inline-block;
    padding: 3px 0;
    position: relative; /* 👈 THIS is the key */
}


.quick-links a:hover {
    color: var(--accent);
}

.quick-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.quick-links a:hover::after {
    transform: scaleX(1);
}


/* Contact Us Section */
.contact-us p {
    color: var(--text-secondary);
    margin: 12px 0;
    font-size: 1.05rem;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 3px;
}

.contact-us p::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 7px;
}

.contact-us p a {
    color: var(--text);
    text-decoration: none;
}

.contact-us p a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Social Media Bubbles - Image-Based */
.social-media {
    display: flex;
    gap: 18px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.social-bubble {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.social-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.social-bubble:hover::before {
    opacity: 1;
}

.social-bubble:hover {
    transform: translateY(-6px) scale(1.07);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.social-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.social-bubble.facebook {
    background: linear-gradient(135deg, #1877f2, #0d62d9);
}

.social-bubble.twitter {
    background: linear-gradient(135deg, #000304, #0d0d0e);
}

.social-bubble.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-bubble.whatsapp {
    background: linear-gradient(135deg, #23e232, #3cc964);
}

/* Advanced Bubbles Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.social-bubble {
    animation: float 6s ease-in-out infinite;
}

.social-bubble:nth-child(2) {
    animation-delay: 0.6s;
}

.social-bubble:nth-child(3) {
    animation-delay: 1.2s;
}

.social-bubble:nth-child(4) {
    animation-delay: 1.8s;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    padding: 0 25px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright span {
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.05rem;
    position: relative;
    padding: 3px 0;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Enhanced Terms & Conditions */
.terms-styled {
    display: flex;
    align-items: center;
}

.terms-styled a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.05rem;
    position: relative;
    padding: 3px 0;
    font-weight: 500;
    display: inline-block;
    background: rgba(59, 130, 246, 0.08);
    padding: 8px 18px;
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.terms-styled a:hover {
    color: var(--accent);
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.25);
}

.terms-styled a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.terms-styled a:hover::after {
    width: 100%;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: var(--transition);
    z-index: 1000;
    visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}

/* Decorative Elements */
.footer-decor {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
}

.decor-1 {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    top: -120px;
    right: -60px;
}

.decor-2 {
    background: linear-gradient(45deg, #10b981, #3b82f6);
    bottom: -100px;
    left: -40px;
}

.decor-3 {
    background: linear-gradient(45deg, #8b5cf6, #ec4899);
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
}

.decor-4 {
    background: linear-gradient(45deg, #f59e0b, #f97316);
    bottom: 15%;
    right: -60px;
    width: 200px;
    height: 200px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 20px;
    }
    
    .social-media {
        justify-content: center;
    }
    
    footer {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    
    .scroll-to-top {
        bottom: 35px;
        right: 35px;
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.3rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .content-box {
        padding: 25px;
    }
    
    .scroll-prompt h2 {
        font-size: 1.8rem;
    }
    
    .arrow {
        font-size: 4rem;
    }
    
    .footer-section h3 {
        font-size: 1.6rem;
    }
    
    .quick-links li, 
    .visit-us p, 
    .contact-us p,
    .about-us p {
        font-size: 1.02rem;
        margin: 10px 0;
    }
    
    .social-bubble {
        width: 52px;
        height: 52px;
    }
    
    .social-media {
        gap: 15px;
        margin-top: 20px;
    }
    
    .footer-bottom {
        gap: 16px;
    }
    
    .copyright, 
    .footer-links a, 
    .terms-styled a {
        font-size: 1.02rem;
    }
    
    .terms-styled a {
        padding: 7px 15px;
    }
    
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 28px;
        right: 28px;
        font-size: 1.6rem;
    }
    
    footer::before {
        height: 6px;
    }
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;

  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}


.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #ffb703;
}

/* CATEGORY BUTTON */
.cat-btn {
  background: #f3f3f3;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 4px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* ANIMATION ☰ → X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
}

.mobile-menu a {
  padding: 14px 20px;
  border-bottom: 1px solid #f1f1f1;
  text-decoration: none;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  /* center logo on mobile */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-menu.active {
    display: flex;
  }
}

.logo a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
html {
  scroll-behavior: smooth;
}
