* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* 1. The Canvas */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(image/home.jpg);
    z-index: -1;
}
.background-img-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0f1e;
    z-index: -1;
}
/* ===== ANIMATED BACKGROUND ===== */
.background-img-animation::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.background-img-animation::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 0, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 30%;
    left: 30%;
    animation: pulse 6s ease-in-out infinite reverse;
}
.orb {
    position: absolute;
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-duration: 4s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 0, 255, 0.1) 0%, transparent 70%);
    top: 40%;
    left: -150px;
    animation-duration: 6s;
    animation-direction: reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 100, 255, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: 20%;
    animation-duration: 5s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 180, 0.08) 0%, transparent 70%);
    top: 10%;
    right: 30%;
    animation-duration: 7s;
    animation-direction: reverse;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
}
.shooting-star {
    position: absolute;
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0), #00e5ff);
    border-radius: 50%;
    top: 80%;
    left: -200px;
    transform: rotate(-25deg);
    animation: shoot 4s ease-in infinite;
    box-shadow: 0 0 10px #00e5ff, 0 0 8px #00e5ff;
}

@keyframes shoot {
    0% { 
        top: 100%;
        left: -400px;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    12.5% {
        top: -200px;
        left: 100%;
        opacity: 1;
    }
    100% { 
        top: 100px;
        left: -400%;
        opacity: 0;
    }
}
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00e5ff;
    box-shadow: 0 0 6px #00e5ff;
    border-radius: 50%;
    animation: fall ease-in infinite;
}
@keyframes fall {
    0% { transform: translateY(0); opacoty: 1;}
    100% { transform: translateY(100vh); opacity: 0;}
}
/* 2. The Glass Container */
.login-card {
    width: 400px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.07); /* Low opacity white */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    
    /* The Glassmorphism core */
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    
    color: white;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* 3. The Inputs */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    color: white;
    outline: none;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.input-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Utility Links */
.form-options {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.form-options a, .footer-text a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* The Action Button */
.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: white;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.footer-text {
    margin-top: 20px;
    font-size: 0.9rem;
}
.modal{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal-content{
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    color: white;
    max-height: 70vh;
    overflow-y: auto;
}
.modal-content h2 {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
}
.modal-content button {
    margin-top: 20px;
    padding: 10px 28px;
    background: white;
    color: #333;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.modal-content button:hover {
    background: rgba(255, 255, 255, 0.8);
}
#termsWarning {
    color: #ff4d4d;
    font-size: 13px;
    margin-top: 6px;
    width: 100px;
    white-space: nowrap;
}

  /* Remove default spacing */
body {
    margin: 0;
    align-self: flex-start;
    padding-top:12px 40px 12px 15px;
    font-family: Arial, sans-serif;
}

/* Navbar styling */
.navbar {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    padding: 10px 40px;
    margin-left: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    z-index: 10;
    background: transparent; /* Just to confirm it's working */
}

.logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 5px !important;
}

.logo img {
    height: 40px !important;
    width: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.companyname {
    color: white !important;
    font-size: 20px !important;
    font-family: 'Raleway', san-serif;;
    font-weight: 400 !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;
}
.container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.navbar a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.first-section{
    position: relative;
    height: 100vh;
    background: url(image/home.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-align: center;
    color:white;
    overflow: hidden;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.first-section .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.section-content{
    position: relative;
    z-index: 2;
}
.first-section .subtitle{
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}
.first-section h1{
    font-size: 56PX;
    line-height: 1.2;
    margin-bottom: 25px;

}
.first-section button {
  padding: 14px 32px;
  font-size: 16px;
  background: #00e5ff; /* soft green like screenshot */
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s ease;
}

.first-section button:hover {
  background: #0a1628;
}
/* ===== FEATURES ===== */
.features {
  display: flex;
  justify-content: space-between;
  padding: 60px 10%;
  text-align: center;
  background: #f5f5f5;
}

.feature-box {
  flex: 1;
}

.feature-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 15px;
  display: block;
}

.feature-box h4 {
  margin-bottom: 5px;
  font-weight: 600;
}

.feature-box p {
  color: #777;
  font-size: 14px;
}

.divider {
  width: 80%;
  margin: 0 auto;
  border: 0.5px solid #ddd;
}


/* ===== PRODUCTS ===== */
.products {
  padding: 80px 10%;
  text-align: center;
  background: #f5f5f5;
}

.products h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  text-align: left;
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.product-card h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.category {
  color: #888;
  font-size: 14px;
  margin-bottom: 5px;
}

.price {
  font-weight: bold;
}
/* ===== FLASH SALE SECTION ===== */
.flash-sale {
  position: relative;
  height: 60vh;
  background: url('image/tech.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Dark overlay */
.flash-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Content */
.flash-content {
  position: relative;
  max-width: 800px;
  padding: 20px;
  z-index: 2;
}

.flash-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.flash-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Button style (outlined like screenshot) */
.flash-content button {
  padding: 12px 30px;
  font-size: 16px;
  background: transparent;
  border: 2px solid white;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.flash-content button:hover {
  background: white;
  color: black;
}
/* ===== CATEGORIES ===== */
.categories {
  padding: 80px 10%;
  text-align: center;
  background: #f7f7f7;
}

.categories h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

.category-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.category-item img {
  width: 130px;
  height: auto;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.category-item p {
  font-weight: 500;
}

.category-item:hover img {
  transform: scale(1.05);
}


/* ===== ABOUT SECTION ===== */
.about-section {
  background: #0a0f1e; /* soft green */
  padding: 100px 10%;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.about-image img {
  width: 450px;
  max-width: 100%;
}

.about-content {
  max-width: 500px;
}

.about-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #00e5ff;
}

.about-content p {
  color: white;
  margin-bottom: 25px;
}

.about-content hr {
  border: 0.5px solid rgba(0,0,0,0.2);
  margin: 25px 0;
}

.stats {
  display: flex;
  gap: 60px;
}

.stats h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #00e5ff;
}

.stats span {
  font-size: 14px;
  color: rgb(233, 232, 232);
}
/* ================= TESTIMONIALS ================= */

.testimonials {
  background: #0a0f1e;
  padding: 100px 5%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 60px; /* row gap | column gap */
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* HEADER */
.testimonials-header {
  max-width: 520px;
  color: #00e5ff;
}

.testimonials-header h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.testimonials-header p {
  font-size: 18px;
  line-height: 1.8;
  color: white;
}

/* CARDS */
.testimonial-card {
  background: #f1f1f1;
  padding: 40px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
}

/* Make layout match screenshot naturally */
.testimonial-card:nth-of-type(1) {
  grid-column: 2;
}

.testimonial-card:nth-of-type(2) {
  grid-column: 1;
}

.testimonial-card:nth-of-type(3) {
  grid-column: 2;
}

/* QUOTE */
.quote {
  font-size: 42px;
  color: #00e5ff;
  margin-bottom: 20px;
}

/* TEXT */
.testimonial-card p {
  margin-bottom: 30px;
  line-height: 1.7;
}

/* CLIENT */
.client {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.client img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card,
  .testimonials-header {
    grid-column: auto !important;
  }
}
/* ================= CTA ================= */
.cta {
  position: relative;
  background: url('image/robo.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.cta-content {
  position: relative;
  max-width: 700px;
  padding: 20px;
}

.cta-content h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.cta-content p {
  margin-bottom: 25px;
  color: #ddd;
}

.cta-content button {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.cta-content button:hover {
  background: #7aa2;
}


/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1b2a 50%, #0a1628 100%);
  padding: 60px 10% 30px;
  color: white;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
}

.footer-logo h3 {
  font-weight: 600;
  color: white;
}
.footer-logo img {
  width: 150px;
}

.footer-links,
.footer-social {
  display: flex;
  gap: 20px;
}

.footer a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 15px;
  transition: 0.3s;
}

.footer a:hover {
  color: #00e5ff;
}

.footer hr {
  margin: 30px 0;
  border: 0.5px solid rgba(255,255,255,0.1);
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}
/*============================Product Page================================*/
/* ===== SHOP PAGE STYLES ===== */

/* SHOP NAVBAR */
.shop-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.shop-navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 0;
}

.shop-navbar .logo img {
    height: 32px;
    width: 32px;
    object-fit: contain;
    display: block;
}

.shop-navbar .companyname {
    color: white;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 32px;
    display: inline-block;
    vertical-align: middle;
}

.shop-navbar .nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.shop-navbar .nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: 0.3s ease;
    letter-spacing: 1px;
}

.shop-navbar .nav-links a:hover,
.shop-navbar .nav-links a.active {
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.08);
}

/* SHOP HEADER */
.shop-header {
    padding: 140px 60px 60px;
    text-align: center;
    background: linear-gradient(180deg, #0a0f1e 0%, #0d1b2a 100%);
    position: relative;
    overflow: hidden;
}

.shop-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.shop-header h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: white;
    position: relative;
}

.shop-header h1 span {
    color: #00e5ff;
}

.shop-header p {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    margin-top: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* SHOP TOOLBAR */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #0d1b2a;
    border-top: 1px solid rgba(0,229,255,0.08);
    border-bottom: 1px solid rgba(0,229,255,0.08);
}

.shop-toolbar p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    letter-spacing: 1px;
}

.shop-toolbar select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,229,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    font-family: 'Raleway', sans-serif;
}

.shop-toolbar select option {
    background: #0d1b2a;
}

/* SHOP SECTION */
.shop-section {
    padding: 60px;
    background: #0a0f1e;
}

.shop-section .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* PRODUCT CARD */
.shop-section .product-card {
    background: #0d1b2a;
    border: 1px solid rgba(0, 229, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.shop-section .product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 229, 255, 0.05);
}

.product-card-image {
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.shop-section .product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.add-to-cart-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: linear-gradient(0deg, rgba(10,15,30,0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.shop-section .product-card:hover .add-to-cart-overlay {
    transform: translateY(0);
}

.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background: #00e5ff;
    color: #0a0f1e;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.add-to-cart-btn:hover {
    background: #00b8cc;
}

.product-card-info {
    padding: 20px;
}

.product-card-info h3 {
    font-size: 17px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.product-card-info .category {
    color: #00e5ff;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-card-info .price {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

/* SHOP CTA */
.shop-cta {
    position: relative;
    background: url('image/robo.jpg') no-repeat center center / cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.shop-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.shop-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}

.shop-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.shop-cta-content span{
    color: #00e5ff;
}

.shop-cta-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    font-size: 16px;
}

.shop-cta-content button {
    padding: 14px 36px;
    border-radius: 30px;
    border: none;
    background: #00e5ff;
    color: #0a0f1e;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Raleway', sans-serif;
}

.shop-cta-content button:hover {
    background: #00b8cc;
}

/* SHOP FOOTER */
.shop-footer {
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1b2a 50%, #0a1628 100%);
    padding: 60px 10% 30px;
    border-top: 1px solid rgba(0,229,255,0.1);
}

.shop-footer a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: 0.3s;
    letter-spacing: 1px;
}

.shop-footer a:hover {
    color: #00e5ff;
}

.shop-footer hr {
    margin: 30px 0;
    border: 0.5px solid rgba(255,255,255,0.08);
}

.shop-footer .copyright {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
}
/*===========================================About Page============================*/
/* ===== ABOUT PAGE ===== */
.about-intro {
    padding: 80px 60px;
    background: #0a0f1e;
}

.about-intro-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-intro-image img {
    width: 480px;
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0,229,255,0.15);
}

.about-label {
    color: #00e5ff;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-intro-content h2 span {
    color: #00e5ff;
}

.about-intro-content p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: #00e5ff;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

/* VALUES */
.about-values {
    padding: 80px 60px;
    background: #0d1b2a;
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-values-container h2 {
    font-size: 38px;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
}

.about-values-container h2 span {
    color: #00e5ff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: #0a0f1e;
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 12px;
    padding: 32px 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,229,255,0.3);
}

.value-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 17px;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-card p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.7;
}

/* TEAM */
.about-team {
    padding: 80px 60px;
    background: #0a0f1e;
    text-align: center;
}

.about-team h2 {
    font-size: 38px;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
}

.about-team h2 span {
    color: #00e5ff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: #0d1b2a;
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 12px;
    padding: 30px 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,229,255,0.3);
}

.team-img-wrapper img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0,229,255,0.3);
    margin-bottom: 16px;
}

.team-card h4 {
    color: white;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.team-card span {
    color: #00e5ff;
    font-size: 13px;
    letter-spacing: 1px;
}
/*==================================Contact page==========================*/
/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 60px;
    background: #0a0f1e;
}

.contact-container {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* CONTACT INFO */
.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.contact-info h2 span {
    color: #00e5ff;
}

.contact-info > p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    font-size: 22px;
    width: 48px;
    height: 48px;
    background: rgba(0,229,255,0.08);
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.contact-detail-item span {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.contact-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-socials a {
    padding: 8px 18px;
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 20px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.contact-socials a:hover {
    border-color: #00e5ff;
    color: #00e5ff;
    background: rgba(0,229,255,0.05);
}

/* CONTACT FORM */
.contact-form-wrapper {
    flex: 1.2;
    min-width: 300px;
    background: #0d1b2a;
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-wrapper h3 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,229,255,0.15);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00e5ff;
    background: rgba(0,229,255,0.03);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

.contact-submit-btn {
    width: 100%;
    padding: 14px;
    background: #00e5ff;
    color: #0a0f1e;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.contact-submit-btn:hover {
    background: #00b8cc;
}

/* MAP */
.contact-map {
    border-top: 1px solid rgba(0,229,255,0.08);
    border-bottom: 1px solid rgba(0,229,255,0.08);
}
/*===================================Service Page====================*/
/* ===== SERVICES PAGE ===== */
.services-section {
    padding: 80px 60px;
    background: #0a0f1e;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-heading {
    font-size: 38px;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
}

.services-heading span {
    color: #00e5ff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #0d1b2a;
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,229,255,0.3);
}

.service-icon {
    font-size: 36px;
    margin-bottom: 18px;
}

.service-card h4 {
    color: white;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: #00e5ff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.service-link:hover {
    opacity: 0.7;
}

/* HOW IT WORKS */
.how-it-works {
    padding: 80px 60px;
    background: #0d1b2a;
    text-align: center;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-card {
    background: #0a0f1e;
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 12px;
    padding: 36px 28px;
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,229,255,0.3);
}

.step-number {
    font-size: 42px;
    font-weight: 700;
    color: rgba(0,229,255,0.2);
    margin-bottom: 16px;
    line-height: 1;
}

.step-card h4 {
    color: white;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-card p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.7;
}

.step-divider {
    font-size: 28px;
    color: rgba(0,229,255,0.3);
    flex-shrink: 0;
}

/* FAQ */
.faq-section {
    padding: 80px 60px;
    background: #0a0f1e;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(0,229,255,0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.faq-icon {
    color: #00e5ff;
    font-size: 22px;
    font-weight: 300;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.8;
}
/*=========================================Cart Page=============================*/
.cart-nav-btn {
    background: rgba(0,229,255,0.1);
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: 20px;
    padding: 6px 14px !important;
    color: #00e5ff !important;
    font-size: 13px !important;
}

.cart-section {
    padding: 60px;
    background: #0a0f1e;
    min-height: 60vh;
}

.cart-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cart-items-wrapper {
    flex: 2;
    min-width: 300px;
}

.cart-items-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    padding: 14px 20px;
    background: #0d1b2a;
    border-radius: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    gap: 12px;
}

.cart-empty-icon {
    font-size: 56px;
    opacity: 0.3;
}

.cart-empty h3 {
    color: white;
    font-size: 22px;
}

.cart-empty p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

.cart-shop-btn {
    margin-top: 10px;
    padding: 12px 28px;
    background: #00e5ff;
    color: #0a0f1e;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.cart-shop-btn:hover {
    background: #00b8cc;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    align-items: center;
    padding: 16px 20px;
    background: #0d1b2a;
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: border-color 0.3s;
}

.cart-item:hover {
    border-color: rgba(0,229,255,0.2);
}

.cart-item-product {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-item-product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-product h4 {
    color: white;
    font-size: 15px;
    margin-bottom: 4px;
}

.cart-item-product span {
    color: #00e5ff;
    font-size: 12px;
    letter-spacing: 1px;
}

.cart-item-price,
.cart-item-subtotal {
    color: white;
    font-size: 15px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    background: rgba(0,229,255,0.1);
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 6px;
    color: #00e5ff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-qty button:hover {
    background: rgba(0,229,255,0.2);
}

.cart-item-qty span {
    color: white;
    font-size: 15px;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.3);
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #ff4d4d;
}

/* ORDER SUMMARY */
.cart-summary {
    flex: 1;
    min-width: 260px;
    background: #0d1b2a;
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 12px;
    padding: 30px;
    transition: opacity 0.3s;
}

.cart-summary h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.summary-divider {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 16px 0;
}

.summary-total {
    color: white;
    font-size: 17px;
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    background: #00e5ff;
    color: #0a0f1e;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
    font-family: 'Raleway', sans-serif;
}

.checkout-btn:hover {
    background: #00b8cc;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 14px;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.continue-shopping:hover {
    color: #00e5ff;
}