
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #1e1a2f;
            scroll-behavior: smooth;
        }

        :root {
            --purple-deep: #3b1e54;
            --purple-primary: #6a1e9c;
            --purple-vibrant: #8b3cff;
            --purple-soft: #b77eff;
            --white-light: #ffffff;
            --white-off: #faf5ff;
            --card-bg: rgba(46, 21, 70, 0.8);
            --shadow-glow: 0 15px 35px rgba(0, 0, 0, 0.1);
            --dark-bg: #0f0520;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ========= NAVBAR with DROPDOWN ========= */
        nav {
            background: #62087d;
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .logo img {
            max-height: 60px;
            width: auto;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
            letter-spacing: 0.3px;
            display: inline-block;
            padding: 8px 0;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #d9a7ff;
            transform: translateY(-2px);
        }

        /* Dropdown Menu Styling */
        .dropdown {
            position: relative;
        }
        .dropdown-menu {
            position: absolute;
            top: 40px;
            left: 0;
            background: #ffffff;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            border-radius: 20px;
            min-width: 220px;
            padding: 12px 0;
            opacity: 0;
            visibility: hidden;
            transition: 0.25s ease;
            z-index: 200;
            border: 1px solid rgba(106, 30, 156, 0.2);
        }
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            top: 32px;
        }
        .dropdown-menu li {
            display: block;
            margin: 0;
        }
        .dropdown-menu a {
            color: #3b1e54 !important;
            padding: 10px 24px;
            display: block;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        .dropdown-menu a:hover {
            background: #f3eaff;
            color: #6a1e9c !important;
            transform: none;
            padding-left: 28px;
        }
        .dropdown > a i {
            margin-left: 6px;
            font-size: 0.8rem;
            transition: transform 0.2s;
        }
        .dropdown:hover > a i {
            transform: rotate(180deg);
        }

        /* ========= ABOUT HERO SECTION ========= */
        .about-hero {
            background: linear-gradient(135deg, #f9f1ff 0%, #e9daff 100%);
            padding: 80px 0 70px;
            border-bottom: 1px solid rgba(106, 30, 156, 0.15);
            text-align: center;
        }
        .about-hero h1 {
            font-size: 3.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #3b1e54, #8b3cff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }
        .hero-sub {
            font-size: 1.3rem;
            color: #4a2a6a;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.5;
        }

        /* Story & stats */
        .story-section {
            padding: 80px 0;
            background: #ffffff;
        }
        .story-grid {
            display: flex;
            gap: 50px;
            flex-wrap: wrap;
            align-items: center;
        }
        .story-text {
            flex: 1.5;
        }
        .story-text p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #2c2042;
            margin-bottom: 24px;
            text-align: justify;
        }
        .stats-card {
            flex: 1;
            background: #6a1e9c;
            border-radius: 48px;
            padding: 48px 32px;
            color: white;
            text-align: center;
            box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
        }
        .stat-item {
            margin: 32px 0;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f0d6ff;
        }

        /* mission vision cards */
        .mission-vision {
            padding: 70px 0;
            background: var(--white-off);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }
        .mv-card {
            background: white;
            border-radius: 40px;
            padding: 48px 40px;
            text-align: center;
            transition: 0.25s;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border: 1px solid #e9d9ff;
        }
        .mv-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 40px -12px rgba(106,30,156,0.25);
        }
        .mv-icon {
            font-size: 3rem;
            color: #6a1e9c;
            margin-bottom: 24px;
        }
        .mv-card h3 {
            font-size: 1.8rem;
            margin-bottom: 16px;
            color: #3b1e54;
        }
        .mv-card p {
            color: #2d3a4b;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Team showcase */
        .team-showcase {
            padding: 80px 0;
            background: #ffffff;
        }
        .team-flex {
            display: flex;
            justify-content: center;
            gap: 80px;
            flex-wrap: wrap;
        }
        .team-member {
            text-align: center;
            background: #faf5ff;
            padding: 40px 28px;
            border-radius: 56px;
            width: 320px;
            transition: 0.25s;
            border: 1px solid #e0ceff;
        }
        .team-member:hover {
            background: #6a1e9c;
            transform: scale(1.02);
            color: white;
        }
        .team-member:hover h3, .team-member:hover p {
            color: white;
        }
        .circle-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #b87aff;
            margin-bottom: 24px;
        }
        
        /* ========= FOOTER (inspired by techyall.com) ========= */
        .footer-new {
            background: #0c0719;
            color: #cbc3e0;
            padding: 60px 0 30px;
            font-family: 'Inter', sans-serif;
            border-top: 1px solid #2a1a3a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }
        .footer-col h3, .footer-col h4 {
            color: white;
            margin-bottom: 24px;
            font-size: 1.3rem;
            font-weight: 700;
        }
        .footer-logo {
            max-width: 180px;
            margin-bottom: 20px;
            filter: brightness(0) invert(1);
        }
        .footer-col p {
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        .social-links a {
            color: #cbc3e0;
            background: #2a1a3a;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: 0.25s;
            font-size: 1.2rem;
            text-decoration: none;
        }
        .social-links a:hover {
            background: #8b3cff;
            color: white;
            transform: translateY(-3px);
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 14px;
        }
        .footer-col ul li a {
            color: #cbc3e0;
            text-decoration: none;
            transition: 0.2s;
            font-size: 0.9rem;
        }
        .footer-col ul li a:hover {
            color: #c084fc;
            padding-left: 5px;
        }
        .contact-footer li {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 16px;
        }
        .contact-footer i {
            width: 24px;
            color: #b87aff;
        }
        .newsletter-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 16px;
        }
        .newsletter-form input {
            flex: 1;
            padding: 12px 16px;
            border-radius: 60px;
            border: none;
            background: #1f172e;
            color: white;
            outline: none;
        }
        .newsletter-form button {
            background: #8b3cff;
            border: none;
            padding: 0 20px;
            border-radius: 60px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .newsletter-form button:hover {
            background: #a155ff;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid #2a1a3a;
            font-size: 0.8rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        @media (max-width: 860px) {
            .container { padding: 0 24px; }
            .grid-2 { grid-template-columns: 1fr; }
            .nav-container { flex-direction: column; }
            .nav-links { justify-content: center; gap: 18px; }
            .dropdown-menu { left: -20px; }
        }
        .btn-soft {
            background: #6a1e9c;
            color: white;
            border-radius: 60px;
            padding: 10px 24px;
            display: inline-block;
            text-decoration: none;
            font-weight: 600;
        }
        h2.section-title {
            font-size: 2.5rem;
            margin-bottom: 48px;
            text-align: center;
            color: #6a1e9c;
            position: relative;
        }
        h2.section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #8b3cff;
            margin: 16px auto 0;
            border-radius: 4px;
        }
    

        /* Additional page-specific styles that complement assets/style.css */
        .disclaimer-hero {
            background: linear-gradient(135deg, #f9f1ff 0%, #e9daff 100%);
            padding: 80px 0 70px;
            border-bottom: 1px solid rgba(106, 30, 156, 0.15);
            text-align: center;
        }
        .disclaimer-hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #3b1e54, #8b3cff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }
        .hero-sub {
            font-size: 1.2rem;
            color: #4a2a6a;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.5;
        }
        .disclaimer-content {
            padding: 70px 0;
            background: #ffffff;
        }
        .disclaimer-card {
            background: #faf5ff;
            border-radius: 40px;
            padding: 50px;
            margin-bottom: 40px;
            border: 1px solid #e9d9ff;
            transition: 0.2s;
        }
        .disclaimer-card h2 {
            color: #6a1e9c;
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .disclaimer-card h2 i {
            color: #8b3cff;
            font-size: 1.8rem;
        }
        .disclaimer-card p, .disclaimer-card li {
            line-height: 1.7;
            color: #2c2042;
            margin-bottom: 16px;
            font-size: 1rem;
        }
        .disclaimer-card ul {
            padding-left: 28px;
            margin: 20px 0;
        }
        .disclaimer-card li {
            margin-bottom: 10px;
        }
        .highlight-box {
            background: #6a1e9c;
            color: white;
            padding: 28px 32px;
            border-radius: 32px;
            margin-top: 30px;
            text-align: center;
        }
        .highlight-box p {
            color: #f3eaff;
            margin-bottom: 0;
        }
        .last-updated {
            text-align: right;
            font-size: 0.85rem;
            color: #7a6a8a;
            margin-top: 30px;
            border-top: 1px solid #e0ceff;
            padding-top: 25px;
        }
        @media (max-width: 768px) {
            .disclaimer-card { padding: 30px 24px; }
            .disclaimer-hero h1 { font-size: 2.5rem; }
        }
    
/* ========= INDEX PAGE STYLES ========= */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            color: var(--purple-primary);
            margin: 60px 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #8445a3;
            scroll-behavior: smooth;
        }

        /* main purple theme with white accents */
        :root {
            --purple-deep: #3b1e54;
            --purple-primary: #6a1e9c;
            --purple-vibrant: #8b3cff;
            --purple-soft: #b77eff;
            --white-light: #ffffff;
            --white-off: #faf5ff;
            --card-bg: rgba(46, 21, 70, 0.8);
            --shadow-glow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        /* container and layout - IMPROVED SPACING */
        .container {
            max-width: 2200px;
            margin: 0 auto;
            padding: 0 32px;
            font-size: 18px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
        }

        section {
            padding: 70px 0;
            border-bottom: 1px solid rgba(106, 30, 156, 0.12);
        }

        section:first-of-type {
            padding-top: 30px;
        }

        h2 {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 56px;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
            letter-spacing: -0.01em;
            color: #6a1e9c;
        }

        h2:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #8b3cff;
            margin: 18px auto 0;
            border-radius: 4px;
        }

        /* navbar - improved spacing */
        nav {
            background: #62087d;
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, #c084fc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 38px;
            flex-wrap: wrap;
            list-style: none;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1rem;
            letter-spacing: 0.3px;
        }

        .nav-links a:hover {
            color: #d9a7ff;
            transform: translateY(-2px);
        }

        /* Swiper slider - improved height and spacing */
        .swiper {
            width: 100%;
            height: 750px;
            border-radius: 36px;
            margin: 0 0 20px 0;
            box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.25);
        }

        .swiper-slide {
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 36px;
        }


        .slide-content {
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(8px);
            padding: 32px 56px;
            border-radius: 80px;
            text-align: center;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .slide-content h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .slide-content p {
            font-size: 1.2rem;
            opacity: 0.95;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 36px;
        }

        /* cards & hover effects */
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: #62087d;
            backdrop-filter: blur(4px);
            border-radius: 32px;
            padding: 32px 28px;
            border: 1px solid rgba(183, 126, 255, 0.4);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .card-hover:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 38px -12px rgba(0, 0, 0, 0.4);
            border-color: #c084fc;
            background: #6a1e9c;
        }

        /* why choose us grid - improved gap */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 24px;
        }

        .feature-icon {
            font-size: 3rem;
            color: #ca9eff;
            margin-bottom: 20px;
        }

        .card-hover h3 {
            margin-bottom: 16px;
            font-size: 1.5rem;
            letter-spacing: -0.2px;
        }

        .card-hover p {
            line-height: 1.6;
            color: #f3eaff;
        }

        /* team section: two circle pics - improved spacing */
        .team-flex {
            display: flex;
            justify-content: center;
            gap: 100px;
            flex-wrap: wrap;
            align-items: center;
        }

        .team-member {
            text-align: center;
            background: #6a1e9c;
            padding: 40px 28px 36px;
            border-radius: 56px;
            width: 380px;
            transition: 0.25s ease;
            box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
        }

        .team-member:hover {
            background: #7b2ab0;
            transform: scale(1.02);
        }

        .circle-img {
            width: 240px;
            height: 240px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid #b87aff;
            margin-bottom: 24px;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
        }

        .team-member h3 {
            font-size: 1.6rem;
            margin-bottom: 8px;
        }

        /* products dropdown + gallery - improved button spacing */
        .product-selector {
            background: #62087d;
            padding: 28px 24px;
            border-radius: 100px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 56px;
        }

        .prod-btn {
            background: rgba(255, 255, 255, 0.12);
            border: none;
            color: white;
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1.5rem;
            display: inline-flex;
            align-items: center;
            gap: 20px;
        }

        .prod-btn.active,
        .prod-btn:hover {
            background: #ffffff;
            color: #6a1e9c;
            box-shadow: 0 0 16px #b77eff;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 100px;
            margin-top: 20px;
        }

        .product-item {
            background: #62087d;
            border-radius: 36px;
            overflow: hidden;
            transition: 0.3s ease;
            text-align: center;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .product-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-bottom: 3px solid #c084fc;
        }

        .product-item h4 {
            margin: 50px 24px 16px 12px;
            font-size: 1.45rem;
            color: #ffffff;
        }

        .product-item p {
            padding: 0 20px 28px;
            font-size: 0.95rem;
            color: #f0e6ff;
            line-height: 1.5;
        }

        /* Gallery Slider Styling */
        /* --- UPDATED GALLERY STYLES --- */
        #gallery {
            background: #ffff;
            padding: 5px 0;
        }

        .gallery-container {
            position: relative;
            padding: 10px;
        }

        .gallerySwiper {
            width: 100%;
            height: auto;
            padding: 40px 0;
            background: #ffff;
        }

        .gallerySwiper .swiper-slide {
            width: auto;
            /* Allows the image to dictate width */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .gallerySwiper img {
            width: 350px;
            /* Increased image width */
            height: 350px;
            /* Increased image height */
            object-fit: contain;
            border-radius: 200px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            border: 6px solid white;
            transition: transform 0.4s ease;
        }


        .gallerySwiper .swiper-slide-active img {
            border-color: #6a1e9c;
            transform: scale(1.08);
        }

        /* Navigation Arrows Fix */
        .gallery-prev,
        .gallery-next {
            color: #6a1e9c !important;
            background: #ffff;
            width: 60px;
            height: 60px;
            border-radius: 100%;
            z-index: 10;
        }

        .gallery-prev::after,
        .gallery-next::after {
            font-size: 50px;
            font-weight: bold;
        }



        /* ... (Rest of your original styles) ... */

        /* Navigation Buttons */
        .nav-btn {
            background-color: #333;
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 18px;
            border-radius: 50%;
            position: absolute;
            z-index: 1;
        }

        .prev {
            left: -40px;
        }

        .next {
            right: -40px;
        }

        .nav-btn:hover {
            background-color: #555;
        }

        /* contact form - improved spacing and alignment */
        .contact-form {
            max-width: 760px;
            margin: 0 auto;
            background: #6a1e9c;
            padding: 48px 44px;
            border-radius: 56px;
            backdrop-filter: blur(8px);
            box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.25);
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 16px 24px;
            margin-bottom: 24px;
            background: #2f1a46;
            border: 1px solid #b77eff;
            border-radius: 60px;
            color: white;
            font-size: 1rem;
            transition: 0.2s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #ffffff;
            background: #3b2357;
        }

        .contact-form textarea {
            border-radius: 32px;
            resize: vertical;
        }

        .contact-form button {
            background: #ffffff;
            border: none;
            padding: 16px 32px;
            border-radius: 60px;
            font-weight: bold;
            color: #6a1e9c;
            cursor: pointer;
            width: 100%;
            font-size: 1.1rem;
            transition: 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 8px;
        }

        .contact-form button:hover {
            background: #f0e6ff;
            transform: scale(0.98);
        }

        .contact-info {
            margin-top: 28px;
            text-align: center;
            color: #f0e6ff;
            font-size: 1rem;
            letter-spacing: 0.3px;
        }

    /*----------------------------------------------------------------*/
        /* Contact Details Section */
        .contact-details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
            text-align: center;
        }

        .info-card {
            background: var(--white-off);
            padding: 40px;
            border-radius: 40px;
            border: 2px solid var(--purple-soft);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            background: var(--purple-primary);
        }

        .info-card:hover i, 
        .info-card:hover h4, 
        .info-card:hover p,
        .info-card:hover a {
            color: #ffffff !important;
        }

        .info-card i {
            font-size: 2.5rem;
            color: var(--purple-primary);
            margin-bottom: 20px;
        }

        .info-card h4 {
            color: var(--purple-deep);
            font-size: 1.4rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .info-card p, .info-card a {
            color: var(--purple-primary);
            font-size: 1.1rem;
            text-decoration: none;
            font-weight: 500;
        }
/*---------------------------------------------------------------*/
        /* toast notification style */
        .toast-notify {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: #1e2a1f;
            color: #ffffff;
            padding: 14px 28px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            z-index: 2000;
            backdrop-filter: blur(12px);
            background: #3b1e54e6;
            border-left: 6px solid #b87aff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            pointer-events: none;
            transition: opacity 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .toast-notify.success {
            border-left-color: #4caf50;
            background: #1e3a2fe6;
        }

        .toast-notify.error {
            border-left-color: #f44336;
            background: #5e2a2ae6;
        }

        footer {
            text-align: center;
            padding: 38px 24px;
            background: #0f0520;
            font-size: 0.9rem;
            color: #b9a0da;
            border-top: 1px solid #2f1a46;
        }

        @media (max-width: 780px) {
            .swiper {
                height: 420px;
            }

            .nav-links {
                gap: 20px;
                justify-content: center;
                margin-top: 8px;
            }

            .nav-container {
                flex-direction: column;
                text-align: center;
            }

            h2 {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .product-selector {
                border-radius: 60px;
                padding: 20px 16px;
                gap: 12px;
            }

            .team-member {
                width: 300px;
                padding: 28px 20px;
            }

            .circle-img {
                width: 180px;
                height: 180px;
            }

            .slide-content h3 {
                font-size: 1.8rem;
            }

            .slide-content {
                padding: 20px 32px;
            }

            .contact-form {
                padding: 32px 24px;
            }

            section {
                padding: 50px 0;
            }
        }

        /* About section text spacing */
        #about .card-hover p {
            margin-bottom: 18px;
            line-height: 1.7;
        }

        #about .card-hover {
            line-height: 1.6;
        }

        /* fallback image style */
        .product-item img {
            background: #3b1e54;
        }

        /* loading spinner for button */
        .btn-loading {
            opacity: 0.7;
            pointer-events: none;
        }

        .spinner-icon {
            display: inline-block;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }
    

/* ========= UTILITY CLASSES ========= */
.section-home { padding-top: 20px; }
.text-white { color: #fff; }
.text-justify { text-align: justify; }
.text-center { text-align: center; }
.mt-28 { margin-top: 28px; }
.mb-20 { margin-bottom: 20px; }
.mt-5 { margin-top: 5px; }
.min-h-55 { min-height: 55px; }
.about-card {
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
    color: #fff;
    font-size: 1.30rem;
    line-height: 38px;
}
.toast-msg {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b1e54e6;
    color: white;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 500;
    z-index: 9999;
    backdrop-filter: blur(8px);
}
.footer-col h3 { color: white; margin-bottom: 16px; }
.footer-bottom a { color: #cbc3e0; }
