/* Modern CSS with attractive design - Desktop & Mobile Responsive */
        :root {
            --primary: #4361ee;
            --primary-dark: #3a56d4;
            --primary-light: rgba(67, 97, 238, 0.1);
            --secondary: #7209b7;
            --secondary-light: rgba(114, 9, 183, 0.1);
            --accent: #f72585;
            --accent-light: rgba(247, 37, 133, 0.1);
            --success: #4cc9f0;
            --success-light: rgba(76, 201, 240, 0.1);
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --border-radius: 16px;
            --border-radius-sm: 8px;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
            --shadow-large: 0 25px 50px rgba(0, 0, 0, 0.15);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
            --gradient-accent: linear-gradient(135deg, var(--accent), var(--secondary));
            --gradient-dark: linear-gradient(135deg, var(--dark), #000);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            font-weight: 400;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header Styles */
        header {
            background: var(--gradient-dark);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow-large);
            position: relative;
            overflow: hidden;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }

        /* Enhanced Header with Glass Effect */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    color: var(--dark);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
}

.logo-icon {
    background: var(--gradient-primary);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.3);
    transition: var(--transition);
}

/*logo img.*/
.logo img {
  height: 40px;   /* logo size */
  width: auto;
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.1);
}

.h1Logo {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.5px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    position: relative;
    display: inline-block;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 80%;
}

nav a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.auth-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(67, 97, 238, 0.4);
}

.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
    background: var(--primary-light);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu:hover {
    background: var(--primary);
    color: white;
}

/*start secation*/
.logo-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    justify-content: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 500px;
    line-height: 1.5;
}

.last-updated {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px 28px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
}



        /* Main Content Styles */
        main {
            padding: 4rem 0;
        }

        .privacy-content {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-large);
            padding: 3.5rem;
            margin-bottom: 3rem;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .privacy-content:hover {
            box-shadow: var(--shadow-hover);
        }

        .intro {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--light-gray);
        }

        .intro h2 {
            color: var(--dark);
            margin-bottom: 1.2rem;
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .intro p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 800px;
        }

        .policy-section {
            margin-bottom: 3rem;
            padding: 1.5rem;
            border-radius: var(--border-radius-sm);
            transition: var(--transition);
        }

        .policy-section:hover {
            background-color: var(--primary-light);
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--light-gray);
        }

        .section-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 6px 15px rgba(67, 97, 238, 0.3);
        }

        .section-content {
            padding-left: 65px;
        }

        .section-content p {
            margin-bottom: 1rem;
            color: var(--dark);
            font-size: 1.05rem;
        }

        .section-content ul {
            margin-left: 1.5rem;
            margin-top: 1rem;
            margin-bottom: 1.5rem;
        }

        .section-content li {
            margin-bottom: 0.8rem;
            color: var(--gray);
            position: relative;
            padding-left: 5px;
        }

        .section-content li::before {
            content: "•";
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
            position: absolute;
            left: -15px;
        }

        .highlight-box {
            background: var(--secondary-light);
            border-left: 5px solid var(--secondary);
            padding: 1.8rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .highlight-box:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-hover);
        }

        .highlight-box p {
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .highlight-box strong {
            color: var(--secondary);
        }

        /* Contact Section */
        .contact-section {
            background: var(--gradient-primary);
            border-radius: var(--border-radius);
            padding: 3rem;
            text-align: center;
            margin-top: 3rem;
            box-shadow: var(--shadow-large);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.2;
        }

        .contact-section h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            position: relative;
            z-index: 2;
        }

        .contact-section p {
            max-width: 700px;
            margin: 0 auto 1.5rem;
            font-size: 1.1rem;
            opacity: 0.95;
            position: relative;
            z-index: 2;
        }

        .contact-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: white;
            color: var(--primary);
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 1rem;
            transition: var(--transition);
            border: 2px solid white;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2;
        }

        .contact-button:hover {
            background-color: transparent;
            color: white;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        /* Enhanced Footer 2025 */
footer {
    background: var(--gradient-dark);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.footer-column a:hover {
    color: white;
    padding-left: 8px;
}

.footer-column a i {
    width: 20px;
    text-align: center;
}

.copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Enhanced Social Icons */
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    font-size: 1.5rem;
    color: #adb5bd;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.social-icon.facebook:hover { 
    color: #3b5998; 
    box-shadow: 0 10px 20px rgba(59, 89, 152, 0.3);
}
.social-icon.instagram:hover { 
    color: #e4405f; 
    box-shadow: 0 10px 20px rgba(228, 64, 95, 0.3);
}
.social-icon.linkedin:hover { 
    color: #0e76a8; 
    box-shadow: 0 10px 20px rgba(14, 118, 168, 0.3);
}
.social-icon.twitter:hover { 
    color: #1da1f2; 
    box-shadow: 0 10px 20px rgba(29, 161, 242, 0.3);
}
.social-icon.youtube:hover { 
    color: #ff0000; 
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}


        /* Responsive Styles */
        @media (max-width: 992px) {
            .header-content {
                
               justify-content: flex-start;
            }
            
            
            .hero-content {
             display: flex;
           justify-content: space-between;
           align-items: center;
         }
        }
          .mobile-menu {
        display: flex;
        position: absolute;
        right: 10px;
        }


        /*mobile layout desgin*/
        @media (max-width: 768px) {

            .header-content {
         padding: 1px 2px;
         align-content: left;
         }
         .hero-content {
             display: flex;
           justify-content: space-between;
           align-items: center;
         }
    
       .logo {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;

  }

  .logo i {
    font-size: 25px; 
    text-align: left;  /* icon small */
    
  }

  .logo h1,
  .logo .logo-text {
    font-size: 20px;   /* text small */
    font-weight: 700;
  }

      .logo img {
      height: 40px;   /* logo size */
     justify-content: flex-start;
     width: auto; }
      
     nav ul {
        display: none;
     }
     .mobile-menu {
        display: flex;
       justify-content: center;
       align-content: center;
        right: 20px;
    }
    /*header part END*/
            .container {
                padding: 0 20px;
            }
            
            .section-content {
                padding-left: 0;
                margin-top: 20px;
            }
            
            .section-title {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }
            
            .footer-links {
                justify-content: center;
            }
            
            .contact-section {
                padding: 2.5rem 1.5rem;
            }
            
            .privacy-content {
                padding: 2rem;
            }
            
            .intro h2 {
                font-size: 1.8rem;
            }
            .auth-buttons {
            display: none;
             }
            .last-updated i {
        font-size: 1rem;
           }
    
          .last-updated span {
           font-weight: 500;
           }
        }

        @media (max-width: 576px) {
            header {
                padding: 0.9rem 0;
            }
             .hero-content {
             display: flex;
           justify-content: space-between;
           align-items: center;
           }
            .logo-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .logo-text h1 {
                font-size: 1.6rem;
                align-content: center;
            }
            
            .last-updated {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .privacy-content {
                padding: 1.5rem;
            }
            
            .policy-section {
                padding: 1rem;
            }
            
            .contact-section {
                padding: 2rem 1rem;
            }
            
            .contact-button {
                padding: 14px 28px;
            }
        }

        /* Animation for page load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .privacy-content {
            animation: fadeInUp 0.8s ease-out;
        }

        .policy-section {
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .policy-section:nth-child(2) { animation-delay: 0.1s; }
        .policy-section:nth-child(3) { animation-delay: 0.2s; }
        .policy-section:nth-child(4) { animation-delay: 0.3s; }
        .policy-section:nth-child(5) { animation-delay: 0.4s; }
        .policy-section:nth-child(6) { animation-delay: 0.5s; }
        .contact-section { animation-delay: 0.6s; }
