 /* ===== General Styles ===== */
 body {
     margin: 0;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: #0a0a0a;
     color: #fff;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 /* ===== Animated Background ===== */
 header {
     position: fixed;
     width: 100%;
     top: 0;
     left: 0;
     z-index: 1000;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
 }

 header::before {
     content: '';
     position: absolute;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle at 30% 30%, #111111, #0a0a0a, #111111);
     animation: bgMove 10s linear infinite;
     z-index: 0;
 }

 @keyframes bgMove {
     0% {
         transform: translate(0, 0) scale(1);
     }

     50% {
         transform: translate(-20%, -20%) scale(1.1);
     }

     100% {
         transform: translate(0, 0) scale(1);
     }
 }

 /* ===== Navbar ===== */
 .navbar {
     position: relative;
     max-width: 1200px;
     margin: auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 2rem;
     z-index: 1;
 }

 .navbar .logo {
     font-size: 2rem;
     font-weight: bold;
     color: #00ffe0;
     text-shadow: 0 0 15px #00ffe0;
 }

 .navbar ul {
     list-style: none;
     display: flex;
     gap: 1.8rem;
     align-items: center;
 }

 .navbar ul li a {
     font-size: 1.1rem;
     padding: 0.4rem 0.6rem;
     border-radius: 4px;
     transition: 0.3s;
 }

 .navbar ul li a:hover {
     color: #ff6f61;
     text-shadow: 0 0 8px #ff6f61, 0 0 12px #ff6f61;
 }

 /* ===== Buttons ===== */
 .btn {
     padding: 0.5rem 1.2rem;
     border-radius: 25px;
     font-weight: bold;
     border: 2px solid #00ffe0;
     background: transparent;
     color: #00ffe0;
     text-shadow: 0 0 5px #00ffe0;
     transition: 0.4s;
     cursor: pointer;
 }

 .btn:hover {
     background: #00ffe0;
     color: #0a0a0a;
     text-shadow: none;
     box-shadow: 0 0 15px #00ffe0, 0 0 25px #00ffe0 inset;
 }

 /* ===== Toggle ===== */
 .toggle-btn {
     display: none;
     flex-direction: column;
     cursor: pointer;
     gap: 5px;
     z-index: 2;
 }

 .toggle-btn span {
     width: 28px;
     height: 3px;
     background-color: #00ffe0;
     border-radius: 2px;
     transition: all 0.3s ease;
 }

 .toggle-btn.open span:nth-child(1) {
     transform: rotate(45deg) translate(5px, 5px);
 }

 .toggle-btn.open span:nth-child(2) {
     opacity: 0;
 }

 .toggle-btn.open span:nth-child(3) {
     transform: rotate(-45deg) translate(5px, -5px);
 }

 /* ===== Responsive ===== */
 @media (max-width: 768px) {
     .navbar ul {
         position: fixed;
         top: 70px;
         right: -100%;
         height: calc(100vh - 70px);
         width: 250px;
         background-color: #111;
         flex-direction: column;
         align-items: center;
         justify-content: flex-start;
         padding-top: 2rem;
         gap: 2rem;
         transition: 0.3s;
         border-left: 2px solid #00ffe0;
     }

     .navbar ul.active {
         right: 0;
     }

     .toggle-btn {
         display: flex;
     }

     .navbar ul li .btn {
         border: 2px solid #ff6f61;
         color: #ff6f61;
         text-shadow: 0 0 5px #ff6f61;
     }

     .navbar ul li .btn:hover {
         background: #ff6f61;
         color: #0a0a0a;
         box-shadow: 0 0 15px #ff6f61, 0 0 25px #ff6f61 inset;
     }
 }

 /* ===== Section Type Container ===== */
 .section-type {
     padding: 6rem 2rem;
     background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
     position: relative;
     overflow: hidden;
 }

 /* Optional animated background */
 .section-type::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle at 50% 50%, rgba(0, 255, 224, 0.05), rgba(255, 111, 97, 0.05), rgba(138, 43, 226, 0.05));
     animation: rotateBG 30s linear infinite;
     z-index: 0;
 }

 @keyframes rotateBG {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 /* ===== Section Content ===== */
 .section-type-content {
     position: relative;
     z-index: 1;
     max-width: 1200px;
     margin: auto;
     text-align: center;
 }

 .section-type-content h2 {
     font-size: 2.8rem;
     color: #00ffe0;
     text-shadow: 0 0 15px #00ffe0, 0 0 25px #00ffe0;
     margin-bottom: 1rem;
 }

 .section-type-content p {
     color: #ccc;
     font-size: 1.1rem;
     margin-bottom: 4rem;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.6;
 }

 /* ===== Cards / Blocks ===== */
 .section-cards {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 2rem;
 }

 .card {
     background: #111;
     border: 2px solid #00ffe0;
     border-radius: 20px;
     padding: 2rem;
     flex: 1 1 250px;
     min-width: 250px;
     max-width: 350px;
     transition: transform 0.3s, box-shadow 0.3s;
     text-align: center;
 }

 .card:hover {
     transform: translateY(-10px);
     box-shadow: 0 0 20px #00ffe0, 0 0 40px #00ffe0 inset;
 }

 .card-icon {
     font-size: 3rem;
     color: #ff6f61;
     margin-bottom: 1rem;
     text-shadow: 0 0 8px #ff6f61;
 }

 .card h3 {
     color: #ff6f61;
     margin-bottom: 1rem;
 }

 .card p {
     color: #ccc;
     line-height: 1.5;
 }

 /* ===== Responsive ===== */
 @media (max-width: 768px) {
     .section-type-content h2 {
         font-size: 2.2rem;
     }

     .section-type-content p {
         font-size: 1rem;
     }
 }

 .hero-unique {
     min-height: 100vh;
     background: #050505;
     display: flex;
     align-items: center;
     padding: 4rem 2rem;
     position: relative;
     overflow: hidden;
 }

 /* floating glow shapes */
 .hero-unique::before,
 .hero-unique::after {
     content: "";
     position: absolute;
     width: 350px;
     height: 350px;
     border-radius: 50%;
     filter: blur(120px);
     opacity: 0.6;
 }

 .hero-unique::before {
     background: #00ffe0;
     top: -80px;
     left: -80px;
 }

 .hero-unique::after {
     background: #ff6f61;
     bottom: -80px;
     right: -80px;
 }

 /* grid */
 .hero-grid {
     max-width: 1200px;
     margin: auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     position: relative;
     z-index: 2;
 }

 /* text */
 .hero-text .badge {
     display: inline-block;
     padding: 6px 16px;
     border-radius: 20px;
     background: rgba(0, 255, 224, 0.15);
     color: #00ffe0;
     margin-bottom: 1rem;
     font-size: 0.85rem;
 }

 .hero-text h1 {
     font-size: 3.1rem;
     line-height: 1.2;
     margin-bottom: 1rem;
 }

 .hero-text h1 span {
     color: #00ffe0;
     text-shadow: 0 0 20px #00ffe0;
 }

 .hero-text p {
     color: #bfbfbf;
     max-width: 500px;
     margin-bottom: 2.5rem;
 }

 /* buttons */
 .hero-actions {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .btn {
     padding: 0.8rem 2rem;
     border-radius: 30px;
     font-weight: 600;
     transition: 0.4s;
 }

 .btn.neon {
     background: #00ffe0;
     color: #000;
     box-shadow: 0 0 25px #00ffe0;
 }

 .btn.neon:hover {
     box-shadow: 0 0 40px #00ffe0;
 }

 .btn.outline {
     border: 2px solid #ff6f61;
     color: #ff6f61;
 }

 .btn.outline:hover {
     background: #ff6f61;
     color: #000;
     box-shadow: 0 0 30px #ff6f61;
 }

 /* RIGHT IMAGE */
 .hero-image {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     animation: floatImage 4s ease-in-out infinite;
 }

 .hero-image img {
     max-width: 100%;
     width: 420px;
     z-index: 2;
     filter: drop-shadow(0 0 25px rgba(0, 255, 224, 0.6));
 }

 /* glow behind image */
 .image-glow {
     position: absolute;
     width: 300px;
     height: 300px;
     background: linear-gradient(120deg, #00ffe0, #8a2be2);
     filter: blur(90px);
     opacity: 0.6;
     animation: pulseGlow 3s infinite alternate;
 }

 /* animations */
 @keyframes floatImage {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-15px);
     }

     100% {
         transform: translateY(0);
     }
 }

 @keyframes pulseGlow {
     from {
         opacity: 0.4;
     }

     to {
         opacity: 0.8;
     }
 }

 /* RESPONSIVE */
 @media (max-width: 900px) {
     .hero-grid {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .hero-actions {
         justify-content: center;
     }

     .hero-image img {
         width: 300px;
     }
 }




 /* about us css */


 /* ===== ABOUT UNIQUE SECTION ===== */
 .about-unique {
     padding: 6rem 1.5rem;
     background: transparent;
     position: relative;
 }

 /* Soft background light orbs */
 .about-unique::before,
 .about-unique::after {
     content: "";
     position: absolute;
     width: 300px;
     height: 300px;
     border-radius: 50%;
     filter: blur(120px);
     opacity: 0.4;
     z-index: -1;
 }

 .about-unique::before {
     background: #00ffe0;
     top: 10%;
     left: -5%;
 }

 .about-unique::after {
     background: #8a2be2;
     bottom: 10%;
     right: -5%;
 }

 /* Container */
 .about-container {
     max-width: 1200px;
     margin: auto;
     display: grid;
     grid-template-columns: 1.1fr 1fr;
     gap: 3rem;
     align-items: center;
 }

 /* ===== LEFT TEXT ===== */
 .about-badge {
     display: inline-block;
     padding: 6px 18px;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(10px);
     color: #00ffe0;
     font-size: 0.85rem;
     letter-spacing: 1px;
     margin-bottom: 1rem;
 }

 .about-text h2 {
     font-size: 2.6rem;
     margin-bottom: 1rem;
     line-height: 1.3;
 }

 .about-text h2 span {
     color: #00ffe0;
     text-shadow: 0 0 20px rgba(0, 255, 224, 0.6);
 }

 .about-text p {
     color: #cfcfcf;
     font-size: 1.05rem;
     line-height: 1.7;
     max-width: 520px;
 }

 /* ===== STATS ===== */
 .about-stats {
     display: flex;
     gap: 1.5rem;
     margin-top: 2.5rem;
     flex-wrap: wrap;
 }

 .stat-box {
     padding: 1.4rem 1.8rem;
     border-radius: 18px;
     background: rgba(255, 255, 255, 0.06);
     backdrop-filter: blur(14px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     text-align: center;
     min-width: 150px;
     transition: 0.4s;
 }

 .stat-box:hover {
     transform: translateY(-6px);
     box-shadow: 0 0 25px rgba(0, 255, 224, 0.25);
 }

 .stat-box h3 {
     font-size: 1.6rem;
     color: #00ffe0;
 }

 .stat-box span {
     font-size: 0.9rem;
     color: #aaa;
 }

 /* ===== RIGHT CARDS ===== */
 .about-cards {
     display: flex;
     flex-direction: column;
     gap: 1.4rem;
 }

 .about-card {
     padding: 1.8rem;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(16px);
     border: 1px solid rgba(255, 255, 255, 0.12);
     transition: 0.5s;
     position: relative;
     overflow: hidden;
 }

 /* Neon border glow */
 .about-card::before {
     content: "";
     position: absolute;
     inset: 0;
     border-radius: 20px;
     background: linear-gradient(120deg,
             transparent,
             rgba(0, 255, 224, 0.4),
             transparent);
     opacity: 0;
     transition: 0.5s;
 }

 .about-card:hover::before {
     opacity: 1;
 }

 .about-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 0 35px rgba(138, 43, 226, 0.25);
 }

 .about-card h4 {
     font-size: 1.2rem;
     margin-bottom: 0.6rem;
     color: #ffffff;
 }

 .about-card p {
     color: #bdbdbd;
     font-size: 0.95rem;
     line-height: 1.6;
 }

 /* ===== RESPONSIVE ===== */
 @media (max-width: 900px) {
     .about-container {
         grid-template-columns: 1fr;
     }

     .about-text h2 {
         font-size: 2.1rem;
     }
 }

 @media (max-width: 480px) {
     .about-text h2 {
         font-size: 1.9rem;
     }

     .stat-box {
         min-width: 100%;
     }
 }



 /* ===== SERVICES SECTION ===== */
 .services-unique {
     padding: 6rem 1.5rem;
     position: relative;
     background: transparent;
 }

 /* Neon background lights */
 .services-unique::before,
 .services-unique::after {
     content: "";
     position: absolute;
     width: 260px;
     height: 260px;
     border-radius: 50%;
     filter: blur(120px);
     opacity: 0.35;
     z-index: -1;
 }

 .services-unique::before {
     background: #00ffe0;
     top: 15%;
     right: -5%;
 }

 .services-unique::after {
     background: #ff6f61;
     bottom: 10%;
     left: -5%;
 }

 /* Container */
 .services-container {
     max-width: 1200px;
     margin: auto;
 }

 /* Header */
 .services-header {
     text-align: center;
     max-width: 700px;
     margin: 0 auto 4rem;
 }

 .services-badge {
     display: inline-block;
     padding: 6px 20px;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(10px);
     color: #00ffe0;
     font-size: 0.85rem;
     letter-spacing: 1px;
     margin-bottom: 1rem;
 }

 .services-header h2 {
     font-size: 2.6rem;
     margin-bottom: 1rem;
 }

 .services-header h2 span {
     color: #00ffe0;
     text-shadow: 0 0 20px rgba(0, 255, 224, 0.6);
 }

 .services-header p {
     color: #bdbdbd;
     font-size: 1.05rem;
     line-height: 1.6;
 }

 /* Grid */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
 }

 /* Card */
 .service-card {
     padding: 2.2rem 1.8rem;
     border-radius: 22px;
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(16px);
     border: 1px solid rgba(255, 255, 255, 0.12);
     transition: 0.5s;
     position: relative;
     overflow: hidden;
 }

 /* Neon hover line */
 .service-card::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(120deg,
             transparent,
             rgba(0, 255, 224, 0.35),
             transparent);
     opacity: 0;
     transition: 0.5s;
 }

 .service-card:hover::before {
     opacity: 1;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 0 40px rgba(0, 255, 224, 0.25);
 }

 /* Icon */
 .service-icon {
     font-size: 2rem;
     margin-bottom: 1rem;
     color: #00ffe0;
 }

 /* Text */
 .service-card h4 {
     font-size: 1.25rem;
     margin-bottom: 0.6rem;
 }

 .service-card p {
     font-size: 0.95rem;
     color: #cfcfcf;
     line-height: 1.6;
 }

 /* ===== RESPONSIVE ===== */
 @media (max-width: 992px) {
     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .services-header h2 {
         font-size: 2.2rem;
     }
 }

 @media (max-width: 576px) {
     .services-grid {
         grid-template-columns: 1fr;
     }

     .services-header h2 {
         font-size: 1.9rem;
     }
 }



 /* ===== FAQ SECTION ===== */
 .faq-unique {
     padding: 6rem 1.5rem;
     background: transparent;
     position: relative;
 }

 /* Background glow */
 .faq-unique::before,
 .faq-unique::after {
     content: "";
     position: absolute;
     width: 280px;
     height: 280px;
     border-radius: 50%;
     filter: blur(120px);
     opacity: 0.35;
     z-index: -1;
 }

 .faq-unique::before {
     background: #00ffe0;
     top: 10%;
     left: -5%;
 }

 .faq-unique::after {
     background: #8a2be2;
     bottom: 10%;
     right: -5%;
 }

 /* Container */
 .faq-container {
     max-width: 900px;
     margin: auto;
 }

 /* Header */
 .faq-header {
     text-align: center;
     margin-bottom: 3.5rem;
 }

 .faq-badge {
     display: inline-block;
     padding: 6px 20px;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(10px);
     color: #00ffe0;
     font-size: 0.85rem;
     letter-spacing: 1px;
     margin-bottom: 1rem;
 }

 .faq-header h2 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .faq-header h2 span {
     color: #00ffe0;
     text-shadow: 0 0 18px rgba(0, 255, 224, 0.6);
 }

 .faq-header p {
     color: #bdbdbd;
     font-size: 1.05rem;
     max-width: 650px;
     margin: auto;
 }

 /* FAQ List */
 .faq-list {
     display: flex;
     flex-direction: column;
     gap: 1.2rem;
 }

 /* FAQ Item */
 .faq-item {
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.06);
     backdrop-filter: blur(16px);
     border: 1px solid rgba(255, 255, 255, 0.12);
     padding: 1.4rem 1.6rem;
     transition: 0.4s;
 }

 .faq-item[open] {
     box-shadow: 0 0 30px rgba(0, 255, 224, 0.25);
 }

 /* Question */
 .faq-item summary {
     list-style: none;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 1.05rem;
     font-weight: 600;
 }

 .faq-item summary::-webkit-details-marker {
     display: none;
 }

 .faq-item summary i {
     transition: 0.4s;
     color: #00ffe0;
 }

 .faq-item[open] summary i {
     transform: rotate(180deg);
 }

 /* Answer */
 .faq-item p {
     margin-top: 1rem;
     font-size: 0.95rem;
     color: #cfcfcf;
     line-height: 1.6;
 }

 /* ===== RESPONSIVE ===== */
 @media (max-width: 576px) {
     .faq-header h2 {
         font-size: 2rem;
     }

     .faq-item {
         padding: 1.2rem;
     }
 }


 /* ===== FOOTER ===== */
 .footer-unique {
     position: relative;
     background: transparent;
     padding-top: 5rem;
 }

 /* Neon glow background */
 .footer-unique::before {
     content: "";
     position: absolute;
     inset: 0;
     background: radial-gradient(circle at bottom, rgba(0, 255, 224, 0.08), transparent 70%);
     z-index: -1;
 }

 /* Container */
 .footer-container {
     max-width: 1200px;
     margin: auto;
     padding: 0 1.5rem 3rem;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 2.5rem;
 }

 /* Brand */
 .footer-brand h3 {
     font-size: 1.6rem;
     margin-bottom: 0.8rem;
 }

 .footer-brand h3 span {
     color: #00ffe0;
     text-shadow: 0 0 15px rgba(0, 255, 224, 0.7);
 }

 .footer-brand p {
     font-size: 0.95rem;
     color: #bdbdbd;
     line-height: 1.6;
 }

 /* Headings */
 .footer-links h4,
 .footer-support h4,
 .footer-social h4 {
     font-size: 1.1rem;
     margin-bottom: 1rem;
 }

 /* Links */
 .footer-links ul {
     list-style: none;
     padding: 0;
 }

 .footer-links ul li {
     margin-bottom: 0.6rem;
 }

 .footer-links ul li a {
     color: #cfcfcf;
     font-size: 0.95rem;
     transition: 0.3s;
 }

 .footer-links ul li a:hover {
     color: #00ffe0;
 }

 /* Support */
 .footer-support p {
     font-size: 0.95rem;
     margin-bottom: 0.7rem;
     color: #cfcfcf;
 }

 .footer-support i {
     color: #00ffe0;
     margin-right: 8px;
 }

 .footer-support a {
     color: #00ffe0;
 }

 /* Social */
 .social-icons {
     display: flex;
     gap: 0.8rem;
 }

 .social-icons a {
     width: 38px;
     height: 38px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(10px);
     transition: 0.4s;
 }

 .social-icons a i {
     color: #00ffe0;
 }

 .social-icons a:hover {
     box-shadow: 0 0 18px rgba(0, 255, 224, 0.6);
     transform: translateY(-4px);
 }

 /* Bottom */
 .footer-bottom {
     text-align: center;
     padding: 1.2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .footer-bottom p {
     font-size: 0.85rem;
     color: #9f9f9f;
 }

 /* ===== RESPONSIVE ===== */
 @media (max-width: 992px) {
     .footer-container {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 576px) {
     .footer-container {
         grid-template-columns: 1fr;
     }

     .footer-brand {
         text-align: center;
     }

     .footer-social {
         text-align: center;
     }

     .social-icons {
         justify-content: center;
     }
 }


 .footer-social h4 {
     margin-bottom: 1rem;
     font-size: 1.1rem;
 }

 .social-icons {
     display: flex;
     gap: 12px;
 }

 .social-icons a {
     width: 38px;
     height: 38px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(10px);
     transition: 0.4s;
 }

 .social-icons a i {
     color: #00ffe0;
     font-size: 16px;
 }

 .social-icons a:hover {
     transform: translateY(-4px);
     box-shadow: 0 0 18px rgba(0, 255, 224, 0.6);
 }