 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif;
 }

 body {
     background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
     color: #333;
     line-height: 1.6;
     overflow-x: hidden;
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }
 /* Header Styles */
 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     padding: 10px 0;
     cursor: pointer;
     white-space: nowrap;
     backdrop-filter: blur(10px);
     background: rgba(255, 255, 255, 0.15);
     color: rgb(39, 39, 39);
     border: 2px solid transparent;
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
 }

 /* Top Bar with Portfolio Buttons */
 .top-bar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 20px 10px;
     transition: all 0.3s ease;
 }

 .top-bar a:hover {
     color: #3498db;
 }


 .portfolio-type {
     display: flex;
     gap: 10px;
 }

 .portfolio-btn {
     background: #f8f9fa;
     border: 1px solid #e9ecef;
     border-radius: 30px;
     padding: 8px 20px;
     font-size: 14px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 8px;
     font-weight: 500;
 }

 .portfolio-btn.active,
 .portfolio-btn:hover {
     background: #3498db;
     color: white;
     border-color: #3498db;
 }

 .portfolio-btn a {
     color: inherit;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 /* Header Right Controls */
 .header-right {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 /* Language Selector */
 .language-selector {
     position: relative;
     top: 10px;
 }

 .lang-btn {
     padding: 10px 20px;
     border-radius: 30px;
     font-size: 1rem;
     cursor: pointer;
     display: flex;
     align-items: center;
     white-space: nowrap;
     gap: 8px;
     backdrop-filter: blur(20px);
     background: rgba(255, 255, 255, 0.15);
     color: rgb(39, 39, 39);
     border: 2px solid transparent;
     overflow: hidden;
 }


 .lang-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     border-radius: 50px;
     padding: 2px;
     background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #ffeaa7, #dda0dd);
     -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     -webkit-mask-composite: xor;
     mask-composite: exclude;
     animation: borderGlow 3s linear infinite;
 }

 .lang-btn::after {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
 }

 @keyframes borderGlow {
     0% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }

     100% {
         background-position: 0% 50%;
     }
 }
 .lang-btn:hover {
     transform: translateY(-8px) scale(1.05);
     background: rgba(255, 255, 255, 0.25);
     box-shadow:
         0 20px 40px rgba(255, 107, 107, 0.4),
         0 0 80px rgba(78, 205, 196, 0.3),
         inset 0 0 20px rgba(255, 255, 255, 0.2);
 }

 .lang-btn:hover::after {
     left: 100%;
 }
 .lang-modal {
     display: none;
     position: absolute;
     top: 110%;
     right: 0;
     width: 300px;
     background: white;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     padding: 20px;
     z-index: 100;
 }

 .lang-modal h3 {
     margin-bottom: 15px;
     color: var(--dark);
     text-align: center;
 }

 .lang-search {
     width: 100%;
     padding: 10px 15px;
     border: 1px solid #ddd;
     border-radius: 30px;
     margin-bottom: 15px;
     font-size: 1rem;
 }

 .lang-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 10px;
     max-height: 300px;
     overflow-y: auto;
 }

 .lang-option {
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 10px;
     border-radius: 10px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .lang-option:hover {
     background: #f0f4ff;
 }

 .flag {
     font-size: 1.8rem;
     margin-bottom: 5px;
 }

 .lang-name {
     font-size: 0.85rem;
     text-align: center;
     color: #2c3e50
 }

 /* Header   with flag manu Styles end */
 /* Main Header with Logo and Navigation */
 .main-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 20px 0;
     position: relative;
 }


 .logo img {
     height: 60px;
     width: auto;
     max-width: 200px;
 }

 /* Overlay */
 .overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 998;
 }

 .overlay.active {
     display: block;
 }

 /* Surreal Sky Background */
 .sky-container {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     overflow: hidden;
 }
 .colorful-sky {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7, #dda0dd);
     background-size: 400% 400%;
     animation: gradientShift 15s ease infinite;
 }

 .surreal-clouds {
     position: absolute;
     top: 0;
     left: 0;
     width: 200%;
     height: 100%;
     background-image: url('https://img.freepik.com/free-photo/mesmerizing-colorful-skies-illustration_23-2151879731.jpg?semt=ais_hybrid&w=740&q=80');
     background-size: cover;
     background-position: center;
     animation: cloudDream 180s linear infinite;
     mix-blend-mode: overlay;
     opacity: 0.9;
     filter: brightness(1.2) contrast(1.1);
 }

 .color-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
         radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.3) 0%, transparent 50%),
         radial-gradient(circle at 40% 40%, rgba(221, 160, 221, 0.2) 0%, transparent 50%);
     mix-blend-mode: soft-light;
 }

 @keyframes gradientShift {
     0% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }

     100% {
         background-position: 0% 50%;
     }
 }

 @keyframes cloudDream {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }
 /* Floating Color Orbs */
 .color-orbs {
     position: absolute;
     width: 100%;
     height: 100%;
     pointer-events: none;
 }

 .color-orb {
     position: absolute;
     width: 100px;
     height: 100px;
     border-radius: 50%;
     filter: blur(40px);
     animation: orbFloat 15s ease-in-out infinite;
     mix-blend-mode: screen;
 }

 .orb-1 {
     background: radial-gradient(circle, #ff6b6b, transparent);
     top: 20%;
     left: 10%;
     animation-delay: 0s;
 }

 .orb-2 {
     background: radial-gradient(circle, #4ecdc4, transparent);
     top: 60%;
     left: 85%;
     animation-delay: 3s;
 }

 .orb-3 {
     background: radial-gradient(circle, #ffeaa7, transparent);
     top: 80%;
     left: 15%;
     animation-delay: 6s;
 }

 .orb-4 {
     background: radial-gradient(circle, #dda0dd, transparent);
     top: 40%;
     left: 75%;
     animation-delay: 9s;
 }

 @keyframes orbFloat {

     0%,
     100% {
         transform: translate(0, 0) scale(1);
         opacity: 0.7;
     }

     25% {
         transform: translate(50px, -30px) scale(1.2);
         opacity: 0.9;
     }

     50% {
         transform: translate(-30px, 40px) scale(0.8);
         opacity: 0.5;
     }

     75% {
         transform: translate(40px, 20px) scale(1.1);
         opacity: 0.8;
     }
 }
 .particles {
     position: absolute;
     width: 100%;
     height: 100%;
     pointer-events: none;
 }

 .particle {
     position: absolute;
     width: 4px;
     height: 4px;
     background: white;
     border-radius: 50%;
     animation: particleFloat 20s linear infinite;
     filter: blur(1px);
 }

 @keyframes particleFloat {
     0% {
         transform: translateY(100vh) translateX(0) rotate(0deg);
         opacity: 0;
     }

     10% {
         opacity: 1;
     }

     90% {
         opacity: 1;
     }

     100% {
         transform: translateY(-100px) translateX(100px) rotate(360deg);
         opacity: 0;
     }
 }

 /* Light Beams */
 .light-beam {
     position: absolute;
     width: 2px;
     height: 100%;
     background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8), transparent);
     animation: beamSweep 8s ease-in-out infinite;
     filter: blur(1px);
 }

 .beam-1 {
     left: 20%;
     animation-delay: 0s;
 }

 .beam-2 {
     left: 50%;
     animation-delay: 2s;
 }

 .beam-3 {
     left: 80%;
     animation-delay: 4s;
 }

 @keyframes beamSweep {

     0%,
     100% {
         transform: rotate(0deg) scaleY(0);
         opacity: 0;
     }

     50% {
         transform: rotate(10deg) scaleY(1);
         opacity: 0.6;
     }
 }

 /* Mouse Trails */
 .mouse-trail {
     position: fixed;
     width: 20px;
     height: 20px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
     border-radius: 50%;
     pointer-events: none;
     z-index: 100;
     mix-blend-mode: screen;
     animation: trailFade 0.6s ease-out forwards;
 }

 @keyframes trailFade {
     0% {
         transform: scale(1);
         opacity: 1;
     }

     100% {
         transform: scale(3);
         opacity: 0;
     }
 }
 @media (max-width: 992px) {
     .portfolio-type {
         flex-wrap: wrap;
         justify-content: center;
     }


 }

 @media (max-width: 768px) {
     .top-bar {
         flex-direction: column;
         gap: 15px;
         padding-bottom: 15px;
     }

     .overlay.active {
         display: block;
     }

     .lang-modal {
         width: 300px;
         right: -20px;
     }

     .lang-grid {
         grid-template-columns: repeat(2, 1fr);
     }

 }

 @media (max-width: 576px) {
     .portfolio-btn {
         padding: 6px 12px;
         font-size: 12px;
     }

     .lang-btn {
         padding: 8px 12px;
         font-size: 14px;
     }

     .logo {
         font-size: 22px;
     }

     .lang-modal {
         width: 250px;
     }

     .lang-grid {
         grid-template-columns: repeat(2, 1fr);
     }


 }

 /* Terms of Service Section */
 .terms-of-service {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .terms-header {
     text-align: center;
     margin-bottom: 3rem;
     margin-top: 11rem;
 }

 .terms-title {
     font-size: clamp(2.5rem, 5vw, 3.5rem);
     font-weight: 900;
     margin-bottom: 1rem;
     background: linear-gradient(45deg, #9d4edd, #00b4d8);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .last-updated {
     font-size: 1.1rem;
     color: #9d4edd;
     margin-bottom: 2rem;
 }

 .terms-content {
     background-color: transparent;
     border-radius: 10px;
     padding: 3rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     border: 1px solid rgba(157, 78, 221, 0.1);
 }

 .terms-section {
     margin-bottom: 3rem;
 }

 .terms-section:last-child {
     margin-bottom: 0;
 }

 .section-title {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
     color: #ffffff;
     position: relative;
     padding-left: 1.5rem;
 }

 .section-title::before {
     content: '';
     position: absolute;
     left: 0;
     top: 50%;
     transform: translateY(-50%);
     width: 6px;
     height: 70%;
     background: linear-gradient(to bottom, #9d4edd, #00b4d8);
     border-radius: 3px;
 }

 .subsection-title {
     font-size: 1.4rem;
     font-weight: 600;
     margin: 2rem 0 1rem;
     color: #00b4d8;
 }

 .terms-text {
     margin-bottom: 1.5rem;
     font-size: 1.05rem;
 }

 .terms-list {
     margin-bottom: 1.5rem;
     padding-left: 2rem;
 }

 .terms-list li {
     margin-bottom: 0.8rem;
     position: relative;
 }

 .terms-list li::marker {
     color: #9d4edd;
 }

 .terms-numbered {
     counter-reset: section;
     list-style-type: none;
     padding-left: 0;
 }

 .terms-numbered li {
     counter-increment: section;
     margin-bottom: 1.5rem;
     position: relative;
     padding-left: 3rem;
 }

 .terms-numbered li::before {
     content: counter(section);
     position: absolute;
     left: 0;
     top: 0;
     width: 2rem;
     height: 2rem;
     background: linear-gradient(45deg, #9d4edd, #00b4d8);
     color: #ffffff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 0.9rem;
 }

 .highlight {
     color: #00b4d8;
     font-weight: 600;
 }

 .warning-box {
     background-color: rgba(157, 78, 221, 0.1);
     border-left: 4px solid #9d4edd;
     padding: 1.5rem;
     margin: 1.5rem 0;
     border-radius: 0 8px 8px 0;
 }

 .info-box {
     background-color: rgba(0, 180, 216, 0.1);
     border-left: 4px solid #00b4d8;
     padding: 1.5rem;
     margin: 1.5rem 0;
     border-radius: 0 8px 8px 0;
 }

 .contact-info {
     background-color: rgba(157, 78, 221, 0.05);
     padding: 1.5rem;
     border-radius: 8px;
     margin-top: 1rem;
 }

 .contact-info a {
     color: #9d4edd;
     text-decoration: none;
     font-weight: 600;
 }

 .contact-info a:hover {
     text-decoration: underline;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .terms-content {
         padding: 2rem 1.5rem;
     }

     .section-title {
         font-size: 1.5rem;
     }

     .subsection-title {
         font-size: 1.2rem;
     }

     .terms-numbered li {
         padding-left: 2.5rem;
     }

     .terms-numbered li::before {
         width: 1.8rem;
         height: 1.8rem;
         font-size: 0.8rem;
     }
 }

 @media (max-width: 480px) {
     .terms-of-service {
         padding: 0 1rem;
     }

     .terms-content {
         padding: 1.5rem 1rem;
     }

     .section-title {
         font-size: 1.3rem;
         padding-left: 1rem;
     }

     .section-title::before {
         width: 4px;
     }

     .terms-text {
         font-size: 1rem;
     }
 }

 /* Newsletter Section Styles */
 .newsletter-section {
     background: linear-gradient(135deg, #0A1429 0%, #1a2744 100%);
     padding: 60px 0;

 }

 .newsletter-content {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
 }

 .newsletter-left {
     display: flex;
     align-items: center;
     gap: 30px;
     flex: 1;
 }

 .newsletter-image img {
     width: 120px;
     height: auto;
     border-radius: 14px;

 }

 .newsletter-text h2 {
     color: white;
     font-size: 2rem;
     margin-bottom: 10px;
     font-weight: 600;
 }

 .newsletter-text p {
     color: rgba(255, 255, 255, 0.8);
     font-size: 1.1rem;
 }

 .newsletter-form {
     display: flex;
     gap: 15px;
     flex: 1;
     max-width: 500px;
 }

 .newsletter-form input {
     flex: 1;
     padding: 15px 20px;
     border: 2px solid rgba(255, 255, 255, 0.2);
     border-radius: 50px;
     background: rgba(255, 255, 255, 0.1);
     color: white;
     font-size: 1rem;
     outline: none;
     transition: all 0.3s ease;
 }

 .newsletter-form input::placeholder {
     color: rgba(255, 255, 255, 0.6);
 }

 .newsletter-form input:focus {
     border-color: #D4AF37;
     background: rgba(255, 255, 255, 0.15);
 }

 .newsletter-form button {
     padding: 15px 30px;
     background: linear-gradient(135deg, #D4AF37 0%, #e6c75a 100%);
     color: #0A1429;
     border: none;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     white-space: nowrap;
 }

 .newsletter-form button:hover:not(:disabled) {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
 }

 .newsletter-form button:disabled {
     opacity: 0.7;
     cursor: not-allowed;
 }

 /* Custom Thank You Message */
 .custom-thank-you {
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%) scale(0.8);
     background: white;
     padding: 40px;
     border-radius: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
     text-align: center;
     z-index: 10000;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
     max-width: 400px;
     width: 90%;
 }

 .custom-thank-you.active {
     opacity: 1;
     visibility: visible;
     transform: translate(-50%, -50%) scale(1);
 }

 .thank-you-icon {
     font-size: 4rem;
     color: #27ae60;
     margin-bottom: 20px;
 }

 .thank-you-title {
     font-size: 1.5rem;
     font-weight: 600;
     color: #0A1429;
     margin-bottom: 15px;
 }

 .thank-you-text {
     color: #666;
     line-height: 1.6;
     margin-bottom: 25px;
 }

 .thank-you-button {
     background: linear-gradient(135deg, #0A1429 0%, #1a2744 100%);
     color: white;
     border: none;
     padding: 12px 30px;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .thank-you-button:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(10, 20, 41, 0.3);
 }
 @media (max-width: 768px) {
     .newsletter-content {
         flex-direction: column;
         text-align: center;
         gap: 30px;
     }

     .newsletter-left {
         flex-direction: column;
         gap: 20px;
     }

     .newsletter-form {
         flex-direction: column;
         width: 100%;
     }

     .newsletter-text h2 {
         font-size: 1.5rem;
     }
 }

 /* Main Footer */
 footer {
     background-color: #1a1a2e;
     color: #fff;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .footer-grid {
     max-width: 1200px;
     margin: 0 auto;
     padding: 40px 20px 40px;
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 40px;
 }

 .footer-brand .brand-logo {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 20px;
 }

 .logo-icon {
     width: 50px;
     height: 50px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 .logo-icon img {
     width: 100%;
     height: auto;
     object-fit: contain;
 }

 .brand-name {
     font-size: 22px;
     font-weight: 700;
     color: white;
 }

 .brand-description {
     margin-bottom: 25px;
     line-height: 1.7;
     color: #b0b0b0;
     font-size: 15px;
 }

 .social-icons {
     display: flex;
     gap: 15px;
 }

 .social-icons a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: #2d2d44;
     border-radius: 50%;
     color: white;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .social-icons a:hover {
     background-color: #2575fc;
     transform: translateY(-3px);
 }

 .footer-column h3 {
     font-size: 18px;
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 10px;
     color: white;
 }

 .footer-column h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 3px;
     background-color: #2575fc;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: #b0b0b0;
     text-decoration: none;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .footer-links a:hover {
     color: #2575fc;
     transform: translateX(5px);
 }

 .footer-links i {
     font-size: 12px;
     color: #2575fc;
 }

 .qr-section {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 15px;
 }

 .qr-code {
     width: 120px;
     height: 120px;
     background-color: white;
     border-radius: 10px;
     padding: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .qr-code img {
     width: 100%;
     height: auto;
 }

 .visitor-counter {
     text-align: center;
 }

 .counter {
     font-size: 42px;
     font-weight: 700;
     color: #2575fc;
     margin-bottom: 10px;
 }

 .visitor-counter p {
     color: #b0b0b0;
     font-size: 14px;
 }

 .footer-bottom {
     max-width: 1200px;
     margin: 0 auto;
     padding: 25px 20px;
     border-top: 1px solid #2d2d44;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
 }

 .footer-bottom p {
     color: #b0b0b0;
 }

 .footer-links-bottom {
     display: flex;
     gap: 20px;
 }

 .footer-links-bottom a {
     color: #b0b0b0;
     text-decoration: none;
     font-size: 14px;
     transition: color 0.3s ease;
 }

 .footer-links-bottom a:hover {
     color: #2575fc;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .footer-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .qr-section {
         justify-content: center;
         text-align: center;
     }

     .footer-bottom {
         flex-direction: column;
         text-align: center;
     }
 }

 /*Floating Vertical Button*/
 .floating-btn {
     position: fixed;
     top: 50%;
     right: 0;
     transform: translateY(-50%);
     background-color: #ff2200;
     color: white;
     padding: 12px 5px;
     writing-mode: vertical-rl;
     text-orientation: mixed;
     font-size: 14px;
     font-weight: bold;
     border-radius: 5px 0 0 5px;
     text-align: center;
     cursor: pointer;
     z-index: 999;
     text-decoration: none;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
 }

 .floating-btn:hover {
     background-color: #e70000;
     transform: translateY(-5px);
 }

 /* end*/
 /* Responsive Design */
 /* Compact Accessibility Button */
 .accessibility-toggle {
     position: fixed;
     bottom: 10px;
     right: 30px;
     z-index: 1000;
     background: #2c3e50;
     color: white;
     border: none;
     border-radius: 50%;
     width: 60px;
     height: 60px;
     font-size: 24px;
     cursor: pointer;
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .accessibility-toggle:hover {
     background: #3498db;
     transform: scale(1.1);
 }

 /* Compact Accessibility Panel */
 .accessibility-panel {
     position: fixed;
     bottom: 10px;
     right: 40px;
     background: white;
     border-radius: 16px;
     padding: 20px;
     width: 400px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     z-index: 999;
     display: none;
     transform-origin: bottom right;
     animation: fadeIn 0.3s ease-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: scale(0.95);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 .panel-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 15px;
     padding-bottom: 10px;
     border-bottom: 1px solid #eee;
 }

 .panel-header h3 {
     color: #2c3e50;
     font-size: 1.1rem;
 }

 .close-btn {
     background: none;
     border: none;
     color: #7f8c8d;
     cursor: pointer;
     font-size: 1.2rem;
     transition: color 0.2s;
 }

 .close-btn:hover {
     color: #e74c3c;
 }

 .option-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 12px;
     margin-bottom: 15px;
 }

 .option-btn {
     background: #f8f9fa;
     border: 1px solid #e0e0e0;
     border-radius: 10px;
     padding: 15px 5px;
     cursor: pointer;
     display: flex;
     flex-direction: column;
     align-items: center;
     transition: all 0.2s ease;
 }

 .option-btn:hover {
     background: #e9ecef;
     border-color: #3498db;
 }

 .option-btn.active {
     background: #e3f2fd;
     border-color: #3498db;
 }

 .option-btn i {
     font-size: 20px;
     color: #2c3e50;
     margin-bottom: 8px;
 }

 .option-btn span {
     font-size: 0.7rem;
     color: #7f8c8d;
     text-align: center;
     line-height: 1.2;
 }

 .reset-btn {
     background: #f8f9fa;
     border: 1px solid #e0e0e0;
     border-radius: 8px;
     padding: 12px;
     width: 100%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     transition: all 0.2s ease;
 }

 .reset-btn:hover {
     background: #e9ecef;
     border-color: #e74c3c;
     color: #e74c3c;
 }

 .panel-footer {
     text-align: center;
     margin-top: 15px;
     padding-top: 15px;
     border-top: 1px solid #eee;
     font-size: 0.75rem;
     color: #7f8c8d;
 }

 /* Accessibility Features */
 .large-text {
     font-size: 120% !important;
 }

 .spaced-text {
     letter-spacing: 1.5px !important;
     line-height: 1.8 !important;
 }

 .readable-font {
     font-family: Arial, sans-serif !important;
 }

 .high-contrast {
     background: #000 !important;
     color: #fff !important;
 }

 .high-contrast .card {
     background: #111 !important;
     color: #fff !important;
     border: 1px solid #333 !important;
 }

 .high-contrast h1,
 .high-contrast h2,
 .high-contrast h3 {
     color: #4da6ff !important;
 }

 .high-contrast .accessibility-panel {
     background: #111 !important;
     border: 1px solid #333 !important;
     color: #fff !important;
 }

 .high-contrast .option-btn {
     background: #222 !important;
     border-color: #333 !important;
     color: #fff !important;
 }

 .high-contrast .option-btn i {
     color: #4da6ff !important;
 }

 .align-right {
     text-align: right !important;
 }

 .align-center {
     text-align: center !important;
 }

 .align-left {
     text-align: left !important;
 }

 .hide-images img {
     display: none !important;
 }

 .highlight-links a {
     background-color: yellow !important;
     padding: 2px 4px !important;
     color: #000 !important;
     border-radius: 3px !important;
 }

 .highlight-titles h1,
 .highlight-titles h2,
 .highlight-titles h3 {
     background-color: #ffeaa7 !important;
     padding: 5px 10px !important;
     border-radius: 5px !important;
     display: inline-block !important;
 }

 @media (max-width: 768px) {

     .accessibility-panel {
         right: 15px;
         bottom: 90px;
     }

     .accessibility-toggle {
         right: 15px;
         bottom: 20px;
     }
 }

 @media (max-width: 576px) {
     .accessibility-panel {
         right: 17px;
         bottom: 10px;
         width: 250px;
     }

     .accessibility-toggle {
         right: 15px;
         bottom: 10px;

     }

 }