@charset "UTF-8";
/* ==============================
   TM TECHWORKS WEBSITE
============================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#FFFFFF;

    background:
        linear-gradient(rgba(0,0,0,.20), rgba(0,0,0,.35)),
        url("TMTechWorks Background.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

/* Navigation */

.site-header{
    position:absolute;
    top:0;
    right:0;
    width:100%;

    display:flex;
    justify-content:flex-end;
    align-items:center;

    padding:18px 55px;
    background:transparent;
    z-index:1000;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:#FFFFFF;
    text-decoration:none;
    font-size:17px;
    font-weight:bold;

    text-shadow:
        0 0 8px rgba(255,255,255,.65),
        0 0 18px rgba(86,192,235,.35);

    transition:.3s ease;
}

nav a:hover{
    color:#39FF6A;

    text-shadow:
        0 0 10px #39FF6A,
        0 0 22px rgba(57,255,106,.8);
}

/* Floating Logo */

.floating-logo{
    position:absolute;
    top:90px;
    left:45px;

    width:170px;
    height:auto;

    border-radius:18px;
    z-index:999;

    box-shadow:
        0 0 18px rgba(57,255,106,.45),
        0 0 35px rgba(57,255,106,.22);
}

/* Hero */

.hero{
    min-height:62vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:115px 20px 25px;
}

.hero h1{
    font-size:76px;
    text-transform:uppercase;
    letter-spacing:4px;

    color:#223350;

    text-shadow:
        0 0 6px rgba(255,255,255,.9),
        0 0 16px rgba(86,192,235,.65),
        0 0 30px rgba(30,120,255,.40);
}

.hero p{
    font-size:26px;
    font-weight:bold;
    margin-top:12px;

    color:#FFFFFF;

    text-shadow:
        0 0 8px rgba(255,255,255,.75);
}

.hero span{
    color:#39FF6A;

    text-shadow:
        0 0 12px rgba(57,255,106,.95),
        0 0 25px rgba(57,255,106,.60);
}

/* Shared Section Styling */

section{
    padding:65px 40px;
}

section h2{
    text-align:center;
    font-size:38px;
    color:#FFFFFF;
    margin-bottom:42px;

    text-shadow:
        0 0 8px rgba(255,255,255,.65),
        0 0 24px rgba(86,192,235,.35);
}

/* Section Icons */

.section-icon{
    display:block;
    text-align:center;

    font-size:72px;
    color:#39FF6A;

    margin-bottom:22px;

    text-shadow:
        0 0 10px rgba(57,255,106,.95),
        0 0 25px rgba(57,255,106,.70),
        0 0 45px rgba(86,192,235,.55);

    transition:.35s ease;
}

.section-icon:hover{
    transform:scale(1.08);
    color:#56C0EB;

    text-shadow:
        0 0 12px rgba(86,192,235,.95),
        0 0 28px rgba(86,192,235,.70),
        0 0 50px rgba(57,255,106,.45);
}

/* Welcome */

.welcome{
    padding-top:15px;
    padding-bottom:75px;

    display:flex;
    justify-content:center;
}

.welcome-box{
    max-width:900px;
    padding:40px;

    background:rgba(0,0,0,.60);
    border:1px solid rgba(255,255,255,.15);
    border-radius:22px;

    text-align:center;

    box-shadow:
        0 0 20px rgba(86,192,235,.25),
        0 0 40px rgba(57,255,106,.12);
}

.welcome-box p{
    font-size:18px;
    line-height:1.7;
    color:#DCEBFF;
    margin-bottom:18px;
}

/* Buttons */

.btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 30px;

    color:#061008;
    background:#39FF6A;

    text-decoration:none;
    font-weight:bold;

    border-radius:30px;

    box-shadow:
        0 0 20px rgba(57,255,106,.75),
        0 0 35px rgba(57,255,106,.45);

    transition:.3s ease;
}

.btn:hover{
    transform:translateY(-4px);

    box-shadow:
        0 0 25px rgba(57,255,106,.95),
        0 0 50px rgba(57,255,106,.65);
}

/* Section Spacing */

.services{
    padding-top:75px;
    padding-bottom:80px;
}

.why-choose{
    padding-top:85px;
    padding-bottom:85px;
}

.skills{
    padding-top:85px;
    padding-bottom:85px;
}

.store-preview,
.portfolio-preview,
.contact-preview{
    display:flex;
    justify-content:center;

    padding-top:75px;
    padding-bottom:75px;
}

/* Cards */

.card-grid{
    max-width:1100px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.card{
    padding:32px;

    background:rgba(0,0,0,.58);
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;

    text-align:center;

    box-shadow:
        0 0 18px rgba(86,192,235,.18),
        0 0 35px rgba(57,255,106,.08);

    transition:.35s ease;
}

.card:hover{
    transform:translateY(-8px);

    border-color:#39FF6A;

    box-shadow:
        0 0 25px rgba(57,255,106,.35),
        0 0 45px rgba(86,192,235,.22);
}

.card i{
    display:block;

    font-size:56px;
    color:#39FF6A;

    margin-bottom:22px;

    text-shadow:
        0 0 10px rgba(57,255,106,.80),
        0 0 22px rgba(86,192,235,.55);
}

.card h3{
    color:#39FF6A;
    font-size:24px;
    margin-bottom:15px;
}

.why-choose .card h3{
    color:#FFFFFF;
}

.card p{
    font-size:16px;
    line-height:1.6;
    color:#DCEBFF;
}

/* Skills */

.skills-grid{
    max-width:1100px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

.skill{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:22px 26px;

    background:rgba(0,0,0,.58);
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;

    color:#D9E9FF;
    font-size:18px;
    font-weight:bold;

    box-shadow:
        0 0 15px rgba(86,192,235,.16),
        0 0 30px rgba(57,255,106,.08);

    transition:.3s ease;
}

.skill i{
    color:#39FF6A;
    font-size:24px;

    text-shadow:
        0 0 8px rgba(57,255,106,.75),
        0 0 18px rgba(86,192,235,.45);
}

.skill:hover{
    transform:translateY(-6px);

    border-color:#39FF6A;

    box-shadow:
        0 0 20px rgba(57,255,106,.35),
        0 0 40px rgba(86,192,235,.22);
}

/* Footer */

footer{
    width:100%;

    text-align:center;

    padding:25px 20px;
    margin-top:40px;

    background:rgba(0,0,0,.45);
    border-top:1px solid rgba(255,255,255,.15);

    color:#FFFFFF;
    font-size:12px;
    font-weight:500;
}

footer p{
    white-space:nowrap;
}

/* Responsive */

@media(max-width:900px){

    .site-header{
        padding:18px 25px;
    }

    nav{
        gap:18px;
        flex-wrap:wrap;
        justify-content:flex-end;
    }

    nav a{
        font-size:15px;
    }

    .floating-logo{
        width:120px;
        top:80px;
        left:25px;
    }

    .hero{
        min-height:58vh;
        padding-top:130px;
    }

    .hero h1{
        font-size:46px;
    }

    .hero p{
        font-size:20px;
    }

    .card-grid{
        grid-template-columns:1fr;
    }

    .skills-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    footer p{
        white-space:normal;
        line-height:1.6;
    }
}

/* ===== ABOUT PAGE ===== */
/* ===== FIX NAV BAR ===== */

header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 8%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 55px;
    height: auto;
	filter: drop-shadow(0 0 4px #39FF6A)
			drop-shadow(0 0 9px rgba(0,255,102,.45));

	border-radius: 12px;
}


.logo span {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00bfff;
}

.about-hero {
    padding: 120px 8% 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #00bfff;
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.4);
}

.about-text {
    max-width: 650px;
}

.about-text h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 24px;
    color: #00bfff;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.about-section {
    padding: 60px 8%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #00bfff;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.about-card {
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.15);
    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.35);
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

.about-card p {
    font-size: 15px;
    line-height: 1.6;
}

.mission-section {
    text-align: center;
    padding-bottom: 90px;
}

/* Mobile About Page */
@media (max-width: 900px) {
    .about-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .about-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .about-text h1 {
        font-size: 32px;
    }

    .about-text h2 {
        font-size: 20px;
    }

    .about-image img {
        width: 220px;
        height: 220px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tech-list span {
    padding: 12px 22px;
    border-radius: 30px;
    background: rgba(0, 255, 120, 0.15);
    color: white;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 255, 120, 0.35);
}

/* My Story quote */
.about-quote {
    max-width: 850px;
    margin: 50px auto 0;
    padding: 30px;
    font-size: 1.3rem;
    font-style: italic;
    color: #ffffff;
    border-left: 5px solid #00eaff;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.25);
}

/* Meet Max Section */
.max-section {
    padding: 100px 10%;
    text-align: center;
}

.max-section h2 {
    font-size: 3rem;
    color: #00cfff;
    margin-bottom: 60px;
    text-shadow:
        0 0 10px #00cfff,
        0 0 25px #00cfff;
}

.max-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.max-image img {
    width: 350px;
    max-width: 100%;
    border-radius: 30px;
    border: 4px solid #00d4ff;
    box-shadow:
        0 0 20px #00d4ff,
        0 0 40px #00ff99;
}

.max-text {
    max-width: 650px;
    text-align: left;
}

.max-text h3 {
    color: #00ff99;
    font-size: 2rem;
    margin-bottom: 20px;
}

.max-text p {
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.store-title {
    width: 100%;
    max-width: 1400px;
    margin: 50px auto 30px;
    padding: 0 60px;
}

/* ================================
Merch Store
=================================== */
.store-title {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 35px;
    width: 100%;
}
.store-title h1 {
    font-size: 3.8rem;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 25px rgba(0,255,255,.45);
}

.store-title p {
    margin-top: 10px;
    color: #39FF6A;
    font-size: 1.3rem;
}
/* Looking Ahead Section */

.looking-ahead {
    padding: 100px 8%;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border-top: 2px solid rgba(0, 234, 255, 0.25);
}

.looking-container {
    max-width: 950px;
    margin: 0 auto;
}

.looking-ahead h2 {
    font-size: 3rem;
    color: #00d9ff;
    margin-bottom: 40px;
    text-shadow:
        0 0 12px #00d9ff,
        0 0 28px rgba(0, 217, 255, 0.45);
}

.looking-ahead p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 2;
    margin-bottom: 28px;
}

.looking-ahead strong {
    color: #00ff99;
}

.signature {
    margin-top: 70px;
    text-align: center;
}

.signature h3 {
    color: #00ff99;
    font-size: 2rem;
    margin-bottom: 10px;
}

.signature p {
    color: #00d9ff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

/* ===========================
   STORE HERO SECTION
=========================== */

.store-hero {
    min-height: 90vh;
    padding: 170px 8% 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.store-divider {
    width: 100%;
    max-width: 650px;
    height: 3px;
    margin-top: 20px;
    background: linear-gradient(to right,
        #00eaff,
        #43ff9f,
        #00eaff);
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0,255,170,.6);
}

.store-hero-content {
    max-width: 950px;
    margin: 0 auto;
}

.store-hero-content::before {
    content: "";
    display: block;
    width: 160px;
    height: 4px;
    margin: 0 auto 35px;
    border-radius: 50px;
    background: linear-gradient(to right, #00d9ff, #00ff99);
    box-shadow: 0 0 18px #00ff99;
}

.store-hero h1 {
    font-size: 4.5rem;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow:
        0 0 15px #ffffff,
        0 0 35px rgba(0, 217, 255, 0.65);
}

.store-hero h2 {
    font-size: 2.1rem;
    color: #00d9ff;
    margin-bottom: 30px;
    text-shadow:
        0 0 10px #00d9ff,
        0 0 25px rgba(0, 217, 255, 0.7);
}

.store-hero p {
    max-width: 850px;
    margin: 0 auto 40px;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    padding: 16px 45px;
    border-radius: 50px;
    background: linear-gradient(90deg, #00ff99, #00d9ff);
    color: #000000;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(0, 255, 153, 0.7);
    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 25px #00ff99,
        0 0 45px #00d9ff;
}

/* ===================================
Changing Images
====================================== */

.merch-slider {
  width: 92%;
  height: 420px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 255, 170, 0.35);
  box-shadow: 0 0 35px rgba(0, 255, 170, 0.25);
  max-width: 1400px;
 align-self: flex-start;
}

.merch-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.merch-slide.active {
  opacity: 1;
}

.merch-slide img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(0, 255, 170, 0.45));
}

.store-feature-area {
  width: 92%;
  max-width: 1400px;
  margin: 45px auto 80px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 35px;
  align-items: stretch;
}

.store-categories {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 170, 0.25);
  border-radius: 22px;
  padding: 25px 20px;
  box-shadow: 0 0 25px rgba(0, 255, 170, 0.15);
}

@media (max-width: 850px) {
  .store-feature-area {
    grid-template-columns: 1fr;
  }

  .store-categories {
    text-align: center;
  }

  .merch-slider {
    height: 400px;
  }
}

.store-categories h2 {
  color: #43ff9f;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.store-categories a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 13px 16px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 170, 0.15);
  font-weight: bold;
  transition: 0.3s ease;
}

.store-categories a:hover {
  color: #001b22;
  background: linear-gradient(90deg, #00eaff, #43ff9f);
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.45);
  transform: translateX(6px);
}

.merch-slider {
  height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 255, 170, 0.2);
  box-shadow: 0 0 30px rgba(0, 255, 170, 0.18);
}

.merch-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.merch-slide.active {
  opacity: 1;
}

.merch-slide img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(0, 255, 170, 0.35));
}

.featured-products {
  width: 92%;
  max-width: 1400px;
  margin: 80px auto;
}

.featured-products h2 {
  color: #43ff9f;
  font-size: 2.3rem;
  margin-bottom: 30px;
  text-shadow: 0 0 18px rgba(67, 255, 159, 0.7);
}

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

.product-card {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 255, 170, 0.25);
  border-radius: 22px;
  padding: 22px;
  color: white;
  box-shadow: 0 0 25px rgba(0, 255, 170, 0.15);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(0, 255, 170, 0.35);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 18px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.stars {
  color: gold;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.stars span {
  color: #dffcff;
  margin-left: 8px;
}

.price {
  color: #43ff9f;
  font-size: 1.35rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.product-card button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 25px;
  border: 1px solid rgba(0, 255, 170, 0.35);
  background: transparent;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.product-card button:hover,
.cart-btn {
  background: linear-gradient(90deg, #00eaff, #43ff9f);
  color: #001b22;
}

.store-categories {
  position: sticky;
  top: 90px;
  align-self: start;
}

.store-feature-area {
  align-items: start;
}

.store-feature-area {
  width: 92%;
  max-width: 1400px;
  margin: 45px auto 80px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 35px;
  align-items: start;
}

.store-categories {
  position: sticky;
  top: 100px;
  align-self: start;
}
.store-layout {
  width: 92%;
  max-width: 1400px;
  margin: 45px auto 80px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 35px;
  align-items: start;
}

.store-categories {
  position: sticky;
  top: 100px;
  align-self: start;
  height: auto;
  max-height: none;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 255, 170, 0.25);
  border-radius: 22px;
  padding: 22px 18px;
  box-shadow: 0 0 25px rgba(0, 255, 170, 0.15);
  z-index: 5;
}

.store-categories h2 {
  color: #43ff9f;
  font-size: 1.25rem;
  margin-bottom: 16px;
  text-align: center;
  text-shadow: 0 0 15px rgba(67, 255, 159, 0.8);
}

.store-categories a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 14px;
  margin-bottom: 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 170, 0.15);
  font-weight: bold;
}

.store-main-content {
  min-width: 0;
}

.merch-slider {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 255, 170, 0.2);
  box-shadow: 0 0 30px rgba(0, 255, 170, 0.18);
}

/* ===========================
   FEATURED PRODUCTS GRID
   =========================== */

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

.product-card {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(0, 255, 170, 0.25);
    border-radius: 22px;
    padding: 22px;
    color: #fff;
    box-shadow: 0 0 25px rgba(0,255,170,.15);
    transition: all .3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(0,255,170,.35);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
    border-radius: 15px;
    background: rgba(255,255,255,.05);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.stars {
    color: gold;
    margin-bottom: 10px;
}

.stars span {
    color: #ddd;
    font-size: .9rem;
}

.price {
    color: #43ff9f;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 18px;
}

.product-card button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

.product-card button:hover {
    transform: scale(1.03);
}

.cart-btn {
    background: linear-gradient(90deg,#00cfff,#38ff8b);
    color: #000;
}

.cart-btn:hover {
    box-shadow: 0 0 20px rgba(0,255,170,.6);
}

/* ==========================
   Shopping Cart
========================== */

.cart-icon{
    position: absolute;
    top:125px;
    right:40px;
    z-index:1000;
}

.cart-icon a{
    display:flex;
    align-items:center;
    gap:8px;

    padding:12px 20px;

    color:#ffffff;
    text-decoration:none;
    font-weight:bold;
    font-size:18px;

    border:2px solid #2cff8f;
    border-radius:40px;

    background:rgba(0,0,0,.65);

    box-shadow:
        0 0 10px rgba(44,255,143,.4);

    transition:.3s;
}

.cart-icon a:hover{

    background:#2cff8f;
    color:#000;

    box-shadow:
        0 0 20px #2cff8f;
}

#cart-count{

    background:#2cff8f;
    color:#000;

    padding:2px 8px;

    border-radius:20px;

    font-size:14px;
}

/* Featured Products Title Divider */

.featured-products h2 {
    text-align: center;
    color: #43ff9f;
    font-size: 2.4rem;
    margin-bottom: 15px;
    text-shadow: 0 0 18px rgba(67,255,159,.8);
}

.featured-products h2::after {
    content: "";
    display: block;
    width: 320px;
    height: 3px;
    margin: 15px auto 35px;
    background: linear-gradient(90deg, #00eaff, #43ff9f, #00eaff);
    border-radius: 50px;
    box-shadow: 0 0 18px rgba(67,255,159,.7);
}

/* Product Card Hover */

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

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(67,255,159,.45);
}

.product-card img {
    transition: transform .35s ease;
}

.product-card:hover img {
    transform: scale(1.04);
}

/* Product Buttons */

.product-card button {
    width: 100%;
    padding: 13px;
    margin-top: 12px;
    border-radius: 28px;
    border: 1px solid rgba(67,255,159,.45);
    background: rgba(255,255,255,.06);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: .3s ease;
}

.product-card button:hover {
    background: rgba(67,255,159,.15);
    box-shadow: 0 0 18px rgba(67,255,159,.45);
}

.product-card .cart-btn {
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
}

.product-card .cart-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(67,255,159,.75);
}

/* Product Badge */

.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: bold;
    box-shadow: 0 0 18px rgba(67,255,159,.7);
}

/* Smooth Scrolling */

html {
    scroll-behavior: smooth;
}

/* ==========================
   Newsletter Section
========================== */

.newsletter-section {
    width: 92%;
    max-width: 1200px;
    margin: 100px auto 80px;
}

.newsletter-box {
    text-align: center;
    padding: 50px 35px;
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(67, 255, 159, 0.35);
    box-shadow: 0 0 35px rgba(67, 255, 159, 0.22);
}

.newsletter-box h2 {
    color: #43ff9f;
    font-size: 2.4rem;
    margin-bottom: 18px;
    text-shadow: 0 0 18px rgba(67, 255, 159, 0.8);
}

.newsletter-box p {
    color: #dffcff;
    max-width: 780px;
    margin: 0 auto 30px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 380px;
    padding: 15px 18px;
    border-radius: 30px;
    border: 1px solid rgba(67, 255, 159, 0.45);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #b8fbea;
}

.newsletter-form button {
    padding: 15px 32px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(67, 255, 159, 0.45);
}

.newsletter-form button:hover {
    transform: scale(1.04);
    box-shadow: 0 0 28px rgba(67, 255, 159, 0.8);
}

.newsletter-box small {
    color: #b8fbea;
    font-size: 0.85rem;
}

.subscribe-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.subscribe-popup-box {
    width: 90%;
    max-width: 520px;
    padding: 40px;
    text-align: center;
    border-radius: 25px;
    background: rgba(0, 0, 0, .9);
    border: 2px solid #43ff9f;
    box-shadow: 0 0 40px rgba(67,255,159,.75);
    color: white;
}

.subscribe-popup-box h2 {
    color: #43ff9f;
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 18px rgba(67,255,159,.9);
}

.subscribe-popup-box p {
    line-height: 1.6;
    margin-bottom: 25px;
}

.subscribe-popup-box button {
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
    font-weight: bold;
    cursor: pointer;
}

/* ===========================
   PRODUCT CARD BUTTONS
   =========================== */

.product-card button {
    width: 100%;
    padding: 14px;
    margin-top: 12px;
    display: block;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* View Details Button */
.product-card button:first-of-type {
    background: transparent;
    color: #ffffff;
    border: 2px solid #2dff9d;
}

.product-card button:first-of-type:hover {
    background: rgba(45,255,157,0.15);
    box-shadow: 0 0 15px rgba(45,255,157,0.6);
    transform: translateY(-2px);
}

/* Add To Cart Button */
.product-card .cart-btn {
    background: linear-gradient(90deg, #00d4ff, #2dff9d);
    color: #081018;
    border: none;
    font-weight: bold;
}

.product-card .cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(45,255,157,0.8);
}

/* Make sure buttons never overflow */
.product-card {
    overflow: hidden;
}

/* ===== FORCE ADD TO CART BUTTON STYLE ===== */

.product-card .cart-btn{
    display:block !important;
    width:100% !important;

    padding:14px 20px !important;
    margin-top:12px !important;

    background:linear-gradient(90deg,#00d8ff,#31ff84) !important;
    color:#081018 !important;

    border:none !important;
    border-radius:30px !important;

    font-size:17px !important;
    font-weight:bold !important;

    cursor:pointer !important;

    text-align:center !important;

    box-sizing:border-box !important;
}

.product-card .cart-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 0 18px #31ff84;
}

.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    border: 1px solid #43ff9f;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(67,255,159,.35);
}

.dot.active-dot {
    background: #43ff9f;
    box-shadow: 0 0 18px #43ff9f;
}

.store-categories a.current-category {
    background: linear-gradient(90deg, #00eaff, #43ff9f) !important;
    color: #001b22 !important;
    box-shadow: 0 0 20px rgba(67,255,159,.8) !important;
    border: 1px solid #43ff9f !important;
    transform: scale(1.04);
}

.store-categories a.current-category::before {
    content: "▶ ";
}

#cart-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0,0,0,.85);
    color: #43ff9f;
    border: 1px solid #43ff9f;
    border-radius: 25px;
    padding: 14px 24px;
    box-shadow: 0 0 25px rgba(67,255,159,.7);
    font-weight: bold;
    display: none;
    z-index: 9999;
}


/* ==========================
   Mini Cart Popup
========================== */

.mini-cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    justify-content: flex-end;
}

.mini-cart-box {
    width: 390px;
    max-width: 90%;
    height: 100%;
    background: rgba(5, 15, 20, 0.97);
    border-left: 2px solid #43ff9f;
    box-shadow: 0 0 35px rgba(67,255,159,.8);
    padding: 25px;
    color: white;
    overflow-y: auto;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-cart-header h2 {
    color: #43ff9f;
    text-shadow: 0 0 15px #43ff9f;
}

#closeMiniCart {
    background: none;
    border: none;
    color: #43ff9f;
    font-size: 2rem;
    cursor: pointer;
}

.mini-cart-item {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    border-bottom: 1px solid rgba(67,255,159,.3);
    padding-bottom: 15px;
}

.mini-cart-item img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
}

.mini-cart-item h3 {
    font-size: 1rem;
    margin: 0 0 8px;
}

.mini-cart-summary {
    margin-top: 25px;
}

.mini-cart-btn,
.mini-cart-checkout {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: 30px;
    margin-top: 12px;
    text-decoration: none;
    font-weight: bold;
    box-sizing: border-box;
    cursor: pointer;
}

.mini-cart-btn {
    border: 1px solid #43ff9f;
    color: white;
    background: transparent;
}

.mini-cart-checkout {
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
    border: none;
}

.mini-qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}

.mini-qty-controls button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
    font-weight: bold;
    cursor: pointer;
}

.mini-qty-controls span {
    font-weight: bold;
    color: #43ff9f;
}

.mini-remove-btn {
    margin-top: 8px;
    padding: 7px 14px;
    border-radius: 20px;
    border: 1px solid #43ff9f;
    background: transparent;
    color: white;
    cursor: pointer;
}

/* Mini Cart Quantity Buttons */

.mini-qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.mini-qty-controls button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
    font-weight: bold;
    cursor: pointer;
}

.mini-qty-controls span {
    color: #43ff9f;
    font-weight: bold;
}

.mini-remove-btn {
    margin-top: 8px;
    padding: 7px 14px;
    border-radius: 20px;
    border: 1px solid #43ff9f;
    background: transparent;
    color: white;
    cursor: pointer;
}

.mini-remove-btn:hover {
    background: rgba(67, 255, 159, 0.15);
}


/* ==========================
   Cart Page
========================== */

.cart-page {
    padding: 80px 8%;
    color: white;
}

.cart-header h1 {
    font-size: 3rem;
    color: #43ff9f;
    text-shadow: 0 0 20px #43ff9f;
    margin-bottom: 10px;
}

.cart-header p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 40px;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    align-items: start;
}

.cart-items {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid #43ff9f;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(67, 255, 159, 0.35);
    min-height: 250px;
}

.cart-summary {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid #43ff9f;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(67, 255, 159, 0.45);
}

.cart-summary h2 {
    color: #43ff9f;
    text-shadow: 0 0 15px #43ff9f;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 15px 0;
    font-size: 1rem;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #43ff9f;
}

.cart-summary hr {
    border: none;
    border-top: 1px solid rgba(67, 255, 159, 0.5);
    margin: 20px 0;
}

.continue-shopping-btn,
.checkout-btn {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 14px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
}

.continue-shopping-btn {
    border: 1px solid #43ff9f;
    color: white;
}

.checkout-btn {
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
}

@media (max-width: 800px) {
    .cart-container {
        grid-template-columns: 1fr;
    }

    .cart-header h1 {
        font-size: 2.3rem;
    }
}

.cart-page-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(67,255,159,.3);
}

.cart-page-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255,255,255,.05);
}

.checkout-note {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: #bfbfbf;
    line-height: 1.5;
}

.empty-cart-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.empty-cart-box {
  width: 90%;
  max-width: 480px;
  padding: 35px;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #00ff66;
  border-radius: 25px;
  box-shadow: 0 0 25px #00ff66;
  color: white;
}

.empty-cart-box h2 {
  color: #00ff66;
  font-size: 32px;
  text-shadow: 0 0 15px #00ff66;
}

.empty-cart-box p {
  margin: 20px 0;
  font-size: 18px;
}

.empty-cart-box button {
  padding: 16px 36px;
  border: none;
  border-radius: 30px;
  background: #00ff66;
  color: black;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px #00ff66;
  font-size: 17px;
}

.modal-close {
  display: block;
  margin-top: 20px;
  color: #00ff66;
  cursor: pointer;
}

.empty-cart-box h2 {
    text-shadow: 0 0 10px #00ff66,
                 0 0 20px #00ff66,
                 0 0 35px #00ff66;
}

.empty-cart-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #00ff66;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: white;
    text-shadow: 0 0 15px #00ff66;
}

.empty-cart-modal {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.checkout-page {
  padding: 120px 7% 60px;
  color: white;
}

.checkout-page h1 {
  text-align: center;
  font-size: 48px;
  color: #00ff66;
  text-shadow: 0 0 15px #00ff66;
}

.checkout-subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.checkout-container {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 30px;
  align-self: flex-start;
}

.checkout-box,
.checkout-summary {
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid #00ff66;
  border-radius: 25px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.6);
}

.checkout-box h2,
.checkout-summary h2 {
  color: #00ff66;
  text-shadow: 0 0 10px #00ff66;
  margin-bottom: 20px;
}

.checkout-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #00ff66;
  background: rgba(0, 0, 0, 0.8);
  color: white;
}

.checkout-box input::placeholder {
  color: #cccccc;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-options span {
  padding: 10px 15px;
  border: 1px solid #00ff66;
  border-radius: 20px;
  color: #00ff66;
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.checkout-summary hr {
  border: none;
  border-top: 1px solid #00ff66;
  margin: 20px 0;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.place-order-btn {
  width: 100%;
  margin-top: 25px;
  padding: 16px;
  border: none;
  border-radius: 30px;
  background: #00ff66;
  color: black;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 20px #00ff66;
}

.place-order-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px #00ff66;
}

.secure-note {
  text-align: center;
  margin-top: 18px;
  color: #ddd;
}

@media (max-width: 900px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }
}

.checkout-summary {
    align-self: flex-start;
    top: 120px;
	margin-top: 0;
}

.checkout-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.checkout-popup-box {
  width: 90%;
  max-width: 480px;
  padding: 35px;
  text-align: center;
  background: rgba(0, 0, 0, 0.92);
  border: 2px solid #00ff66;
  border-radius: 25px;
  box-shadow: 0 0 25px #00ff66;
  color: white;
}

.checkout-popup-box h2 {
  color: #00ff66;
  font-size: 32px;
  text-shadow: 0 0 15px #00ff66;
}

.checkout-popup-box p {
  margin: 20px 0;
  font-size: 18px;
  color: white;
}

.checkout-popup-box button {
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  background: #00ff66;
  color: black;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px #00ff66;
}

.checkout-popup-box button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #00ff66;
}

.order-success-page {
  min-height: 100vh;
  padding: 140px 7% 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.success-card {
  width: 90%;
  max-width: 700px;
  text-align: center;
  padding: 45px;
  background: rgba(0, 0, 0, 0.82);
  border: 2px solid #00ff66;
  border-radius: 30px;
  box-shadow: 0 0 30px #00ff66;
}

.success-check {
  width: 95px;
  height: 95px;
  margin: 0 auto 25px;
  border-radius: 50%;
  border: 3px solid #00ff66;
  color: #00ff66;
  font-size: 60px;
  line-height: 90px;
  text-shadow: 0 0 20px #00ff66;
  box-shadow: 0 0 25px #00ff66;
  animation: successPulse 1.5s infinite;
}

.success-card h1 {
  color: #00ff66;
  font-size: 45px;
  text-shadow: 0 0 18px #00ff66;
}

.success-message,
.next-steps {
  font-size: 18px;
  margin: 20px 0;
}

.order-info {
  margin: 30px 0;
  display: grid;
  gap: 15px;
}

.order-info div {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #00ff66;
  border-radius: 15px;
  background: rgba(0, 255, 102, 0.08);
}

.order-info strong {
  color: #00ff66;
}

.success-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.success-buttons a {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  background: #00ff66;
  color: black;
  font-weight: bold;
  box-shadow: 0 0 18px #00ff66;
}

.success-buttons a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #00ff66;
}

@keyframes successPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px #00ff66;
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 40px #00ff66;
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 20px #00ff66;
  }
}

/* ===========================
   Customer Reviews
=========================== */
.store-home-link {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease;
}

.store-home-link:hover {
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff,
                 0 0 20px #00eaff;
}
.reviews-section {
    padding: 80px 8%;
    text-align: center;
}

.reviews-section h2 {
    font-size: 42px;
    color: #00ff66;
    text-shadow: 0 0 15px #00ff66;
    margin-bottom: 10px;
}

.reviews-subtitle {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 50px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.review-card {
    width: 320px;
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid #00ff66;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.45);
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(0, 255, 102, 0.8);
}

.stars {
    color: gold;
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px gold;
}

.review-card p {
    color: white;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-card h3 {
    color: #00ff66;
    font-size: 18px;
    text-shadow: 0 0 10px #00ff66;
}

/* ==========================
   Overall Customer Rating
========================== */

.reviews-rating {
    text-align: center;
    margin-bottom: 40px;
}

.overall-stars {
    font-size: 3rem;
    color: #FFD700;
    letter-spacing: 8px;
    text-shadow:
        0 0 8px #FFD700,
        0 0 15px #FFD700,
        0 0 25px #FFD700;
    margin-bottom: 10px;
}

.reviews-rating h3 {
    font-size: 2.4rem;
    color: #00ff88;
    margin: 10px 0;
    text-shadow:
        0 0 8px #00ff88,
        0 0 15px #00ff88;
}

.reviews-rating p {
    color: #dddddd;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Optional glowing divider */

.reviews-rating::after {
    content: "";
    display: block;
    width: 180px;
    height: 2px;
    margin: 30px auto 0;
    background: #00ff88;
    box-shadow:
        0 0 10px #00ff88,
        0 0 20px #00ff88;
}

.site-footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid #00ff66;
  color: white;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #00ff66;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  text-shadow: 0 0 8px #00ff66;
  transition: 0.3s;
}

.footer-links a:hover {
  color: white;
  text-shadow: 0 0 15px #00ff66;
}

.site-footer p {
  color: white;
  font-size: 14px;
}

/* ===========================
   SHIPPING POLICY PAGE
   Matches other neon blue pages
=========================== */

.policy-section {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e8f6ff;
}

.policy-card {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.policy-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.policy-card h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #00e5ff;
}

.policy-updated {
    text-align: center;
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
}

.policy-intro {
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.policy-divider {
    height: 2px;
    width: 100%;
    margin: 35px 0 25px;
    background: #00e5ff;
    box-shadow:
        0 0 10px #00e5ff,
        0 0 20px rgba(0, 229, 255, 0.6);
    border-radius: 50px;
}

.policy-card h2 {
    color: #39ff14;
    font-size: 1.45rem;
    margin-top: 25px;
    margin-bottom: 12px;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.policy-card p {
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.policy-card strong {
    color: #ffffff;
}

.policy-contact-box {
    margin-top: 35px;
    padding: 25px;
    border: 2px solid #00e5ff;
    border-radius: 15px;
    background: rgba(0, 229, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
    text-align: center;
}

.policy-contact-box h2 {
    border-left: none;
    padding-left: 0;
    text-align: center;
    color: #39ff14;
    font-size: 1.7rem;
}

.policy-contact-box p {
    text-align: center;
}

.policy-contact-box a {
    color: #39ff14;
    font-weight: bold;
    text-decoration: none;
}

.policy-contact-box a:hover {
    color: #00e5ff;
    text-shadow: 0 0 8px #00e5ff;
}

.return-store {
    margin-top: 40px;
    text-align: center;
}

.return-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
    transition: 0.3s ease;
}

.return-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
    .policy-section {
        padding: 100px 15px 40px;
    }

    .policy-card {
        padding: 25px;
    }

    .policy-icon {
        font-size: 3rem;
    }

    .policy-card h1 {
        font-size: 2.2rem;
    }

    .policy-card h2 {
        font-size: 1.2rem;
    }

    .policy-card p,
    .policy-intro {
        font-size: 0.95rem;
    }

    .return-store-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ================================
   Return to Store Section
================================ */

.return-store {
    width: 100%;
    text-align: center;
    margin: 60px auto;
    padding: 30px 20px;
}

.return-store h3 {
    color: #00ff66;
    font-size: 2rem;
    margin-bottom: 12px;
    text-shadow: 0 0 12px #00ff66;
}

.return-store p {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.return-store-btn {
    display: inline-block;
    justify-content: center;
    align-items: center;
	margin: 0 auto;

    min-width: 260px;
    padding: 16px 38px;

    background: linear-gradient(90deg, #00ff66, #00d4ff);
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;

    border: 2px solid #00ff66;
    border-radius: 50px;

    box-shadow: 0 0 20px rgba(0,255,100,0.6);

    transition: all .3s ease;
}

.return-store-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(90deg, #00d4ff, #00ff66);
    box-shadow: 0 0 35px rgba(0,255,100,.9);
}

.return-store-btn:active {
    transform: scale(.98);
}

.return-policy {
  min-height: 100vh;
  padding: 120px 20px 60px;
  background: radial-gradient(circle at top, #10243a, #05080d 70%);
  color: #e8f7ff;
}

.policy-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 35px;
  background: rgba(5, 12, 20, 0.9);
  border: 2px solid #00bfff;
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(0, 191, 255, 0.45);
}

.policy-box h1 {
  text-align: center;
  color: #00bfff;
  font-size: 2.4rem;
  margin-bottom: 25px;
  text-shadow: 0 0 10px #00bfff;
}

.policy-box h2 {
  color: #39ff14;
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.policy-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d9f4ff;
}

.policy-box strong {
  color: #ffffff;
}

@media (max-width: 600px) {
  .return-policy {
    padding-top: 100px;
  }

  .policy-box {
    padding: 22px;
  }

  .policy-box h1 {
    font-size: 2rem;
  }
}


/* ===========================
   RETURN POLICY PAGE
=========================== */

.return-policy {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: transparent;
}

.policy-box {
    width: 100%;
    max-width: 950px;
    padding: 45px;
    background: rgba(8, 15, 28, 0.55);
    border: 3px solid #00d9ff;
    border-radius: 20px;
    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.9),
        0 0 30px rgba(0, 217, 255, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.policy-box h1 {
    text-align: center;
    font-size: 2.8rem;
    color: #00d9ff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow:
        0 0 10px #00d9ff,
        0 0 20px rgba(0, 217, 255, 0.8);
}

.policy-box h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.35rem;
    color: #39ff14;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.7);
}

.policy-box p {
    margin-bottom: 18px;
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
}

.policy-box strong {
    color: #ffffff;
}

.policy-box a {
    color: #00d9ff;
    text-decoration: none;
    transition: 0.3s ease;
}

.policy-box a:hover {
    color: #39ff14;
    text-shadow: 0 0 8px #39ff14;
}

.policy-box hr {
    border: none;
    height: 1px;
    background: rgba(0, 217, 255, 0.45);
    margin: 30px 0;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 768px) {
    .return-policy {
        padding: 100px 15px 40px;
    }

    .policy-box {
        padding: 25px;
        background: rgba(8, 15, 28, 0.65);
    }

    .policy-box h1 {
        font-size: 2rem;
    }

    .policy-box h2 {
        font-size: 1.2rem;
    }

    .policy-box p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}
/* ===========================
   PRIVACY POLICY PAGE
=========================== */

.privacy-policy {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy-box {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.privacy-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.privacy-box h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #00e5ff;
}

.last-updated {
    text-align: center;
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.privacy-box h2 {
    color: #39ff14;
    font-size: 1.35rem;
    margin-top: 35px;
    margin-bottom: 12px;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.privacy-box p {
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.return-button-area {
    margin-top: 40px;
    text-align: center;
}

.return-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
    transition: 0.3s ease;
}

.return-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 15px 40px;
    }

    .privacy-box {
        padding: 25px;
    }

    .privacy-icon {
        font-size: 3rem;
    }

    .privacy-box h1 {
        font-size: 2.2rem;
    }

    .privacy-box h2 {
        font-size: 1.2rem;
    }

    .privacy-box p,
    .intro-text {
        font-size: 0.95rem;
    }

    .return-store-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================
   TERMS & CONDITIONS PAGE
=========================== */

.terms-policy {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.terms-box {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.terms-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.terms-box h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #00e5ff;
}

.last-updated {
    text-align: center;
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.terms-box h2 {
    color: #39ff14;
    font-size: 1.35rem;
    margin-top: 35px;
    margin-bottom: 12px;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.terms-box p {
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.terms-box strong {
    color: #ffffff;
}

.return-button-area {
    margin-top: 40px;
    text-align: center;
}

.return-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
    transition: 0.3s ease;
}

.return-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 768px) {

    .terms-policy {
        padding: 100px 15px 40px;
    }

    .terms-box {
        padding: 25px;
    }

    .terms-icon {
        font-size: 3rem;
    }

    .terms-box h1 {
        font-size: 2.2rem;
    }

    .terms-box h2 {
        font-size: 1.2rem;
    }

    .terms-box p,
    .intro-text {
        font-size: 0.95rem;
    }

    .return-store-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================
   TERMS & CONDITIONS PAGE
=========================== */

.terms-policy {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e8f6ff;
}

.terms-box {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.terms-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.terms-box h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #00e5ff;
}

.terms-box .last-updated {
    text-align: center;
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
}

.terms-box .intro-text {
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.terms-box h2 {
    color: #39ff14;
    font-size: 1.35rem;
    margin-top: 35px;
    margin-bottom: 12px;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.terms-box p {
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.terms-box strong {
    color: #ffffff;
}

.return-button-area {
    margin-top: 40px;
    text-align: center;
}

.return-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
    transition: 0.3s ease;
}

.return-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
    .terms-policy {
        padding: 100px 15px 40px;
    }

    .terms-box {
        padding: 25px;
    }

    .terms-icon {
        font-size: 3rem;
    }

    .terms-box h1 {
        font-size: 2.2rem;
    }

    .terms-box h2 {
        font-size: 1.2rem;
    }

    .terms-box p,
    .terms-box .intro-text {
        font-size: 0.95rem;
    }

    .return-store-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================
   FAQ PAGE
=========================== */

.faq-policy {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e8f6ff;
}

.faq-box {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.faq-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.faq-box h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #00e5ff;
}

.faq-box .last-updated {
    text-align: center;
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
}

.faq-box .intro-text {
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-box h2 {
    color: #39ff14;
    font-size: 1.35rem;
    margin-top: 35px;
    margin-bottom: 12px;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.faq-box p {
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.faq-box strong {
    color: #ffffff;
}

.return-button-area {
    margin-top: 40px;
    text-align: center;
}

.return-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
    transition: all 0.3s ease;
}

.return-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 768px) {

    .faq-policy {
        padding: 100px 15px 40px;
    }

    .faq-box {
        padding: 25px;
    }

    .faq-icon {
        font-size: 3rem;
    }

    .faq-box h1 {
        font-size: 2.2rem;
    }

    .faq-box h2 {
        font-size: 1.2rem;
    }

    .faq-box p,
    .faq-box .intro-text {
        font-size: 0.95rem;
    }

    .return-store-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================
   FAQ PAGE
=========================== */

.faq-page {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e8f6ff;
}

.faq-container {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.faq-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.faq-container h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #00e5ff;
}

.faq-container .last-updated {
    text-align: center;
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
}

.faq-container .intro-text {
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-container h2 {
    color: #39ff14;
    font-size: 1.35rem;
    margin-top: 35px;
    margin-bottom: 12px;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.faq-container p {
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.faq-container strong {
    color: #ffffff;
}

.faq-button-area {
    margin-top: 40px;
    text-align: center;
}

.faq-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
    transition: 0.3s ease;
}

.faq-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
    .faq-page {
        padding: 100px 15px 40px;
    }

    .faq-container {
        padding: 25px;
    }

    .faq-icon {
        font-size: 3rem;
    }

    .faq-container h1 {
        font-size: 2.2rem;
    }

    .faq-container h2 {
        font-size: 1.2rem;
    }

    .faq-container p,
    .faq-container .intro-text {
        font-size: 0.95rem;
    }

    .faq-store-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================
   CONTACT PAGE
=========================== */

.contact-page {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e8f6ff;
}

.contact-container {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.contact-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.contact-container h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 15px;
    text-shadow: 0 0 12px #00e5ff;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-info {
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 35px;
}

.contact-info p {
    margin: 10px 0;
    color: #ffffff;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 20px;
    margin-bottom: 8px;
    color: #39ff14;
    font-weight: bold;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #00e5ff;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: 0.3s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #39ff14;
    box-shadow: 0 0 15px rgba(57,255,20,0.4);
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-submit-btn {
    margin-top: 30px;
    padding: 16px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(0,229,255,0.45);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57,255,20,0.7);
}

.contact-note {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,229,255,0.3);
    text-align: center;
}

.contact-note h2 {
    color: #39ff14;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(57,255,20,0.6);
}

.contact-note p {
    color: #e8f6ff;
    line-height: 1.8;
}

.contact-button-area {
    margin-top: 40px;
    text-align: center;
}

.contact-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(0,229,255,0.45);
}

.contact-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57,255,20,0.7);
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 768px) {

    .contact-page {
        padding: 100px 15px 40px;
    }

    .contact-container {
        padding: 25px;
    }

    .contact-icon {
        font-size: 3rem;
    }

    .contact-container h1 {
        font-size: 2.2rem;
    }

    .intro-text {
        font-size: 0.95rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem;
    }

    .contact-submit-btn,
    .contact-store-btn {
        width: 100%;
        max-width: 300px;
    }

}

/* ===========================
   CONTACT PAGE FIX
=========================== */

.contact-page {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e8f6ff;
}

.contact-container {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    width: 100%;
    max-width: 700px;
    margin: 30px auto 0;
}

.contact-form label {
    display: block;
    color: #39ff14;
    font-weight: bold;
    margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 14px;
    border: 2px solid #00e5ff;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-submit-btn {
    margin: 25px auto 0;
    padding: 15px 42px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    font-weight: bold;
    cursor: pointer;
}


.product-card {
    width: 320px;
    background: rgba(20,20,30,.9);
    border: 2px solid rgba(0,255,170,.35);
    border-radius: 22px;
    padding: 20px;
    text-align: center;
}

.product-image-swap {
    position: relative;
    width: 100%;
    height: 230px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 18px;
}

.product-image-swap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .35s ease;
}
.front-image {
    opacity: 1;
}

.back-image {
    opacity: 0;
}

.product-image-swap:hover .front-image {
    opacity: 0;
}

.product-image-swap:hover .back-image {
    opacity: 1;
}

/* ===========================
   Store Search
=========================== */

.store-search {
    margin-bottom: 25px;
}

.store-search h3 {
    color: #32ff7e;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 0 10px rgba(50,255,126,0.8);
}

.store-search input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #32ff7e;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(50,255,126,0.25);
}

.store-search input::placeholder {
    color: #9fdfff;
}

.store-search input:focus {
    border-color: #00ffff;
    box-shadow:
        0 0 10px #00ffff,
        0 0 20px #32ff7e;
}

.techy-assistant {
  position: sticky;
  right: 35px;
  bottom: 40px;
  z-index: 9999;
}

#techyToggle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #00ff88;
  background: #050505;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 0 20px #00ff88;
}

.techy-chat {
  display: none;
  position: absolute;
  right: 0;
  bottom: 80px;
  width: 310px;
  background: rgba(0, 0, 0, 0.92);
  border: 2px solid #00ff88;
  border-radius: 18px;
  box-shadow: 0 0 25px #00ff88;
  overflow: hidden;
}

.techy-chat.show {
  display: block;
}

.techy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,255,136,0.15);
  padding: 12px 15px;
  color: #00ff88;
}

.techy-header h3 {
  margin: 0;
}

#techyClose {
  background: none;
  border: none;
  color: #00ff88;
  font-size: 1.5rem;
  cursor: pointer;
}

.techy-body {
  padding: 15px;
  color: white;
}

.techy-body button {
  display: block;
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #00ffff;
  background: rgba(0,255,255,0.1);
  color: white;
  cursor: pointer;
}

.techy-body button:hover {
  background: #00ff88;
  color: black;
}

/* =========================================
   SERVICES PAGE
========================================= */

.services-page {
    width: 100%;
    min-height: 100vh;
    padding: 40px 20px 80px;
}


/* =========================================
   SERVICES HERO
========================================= */

.services-hero {
    width: min(1100px, 92%);
    margin: 30px auto 60px;
    padding: 70px 30px;
    text-align: center;

    background: rgba(0, 15, 35, 0.78);
    border: 2px solid #00d9ff;
    border-radius: 24px;

    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.75),
        0 0 30px rgba(0, 217, 255, 0.35);

    backdrop-filter: blur(8px);
}

.services-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.services-label {
    margin-bottom: 12px;
    color: #50ff9a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-hero h1 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(2.3rem, 6vw, 4.5rem);
    line-height: 1.1;

    text-shadow:
        0 0 8px #00d9ff,
        0 0 18px rgba(0, 217, 255, 0.85);
}

.services-hero p {
    max-width: 760px;
    margin: 0 auto 30px;
    color: #e8f9ff;
    font-size: 1.1rem;
    line-height: 1.8;
}


/* =========================================
   SERVICES INTRODUCTION
========================================= */

.services-intro {
    width: min(950px, 92%);
    margin: 0 auto 45px;
    padding: 35px;
    text-align: center;

    background: rgba(0, 15, 35, 0.75);
    border: 1px solid rgba(0, 217, 255, 0.75);
    border-radius: 20px;

    box-shadow:
        0 0 14px rgba(0, 217, 255, 0.4);

    backdrop-filter: blur(7px);
}

.services-intro h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);

    text-shadow:
        0 0 7px #00d9ff,
        0 0 14px rgba(0, 217, 255, 0.7);
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: #e8f9ff;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* =========================================
   SERVICES GRID
========================================= */

.services-section {
    width: min(1200px, 94%);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}


/* =========================================
   SERVICE CARDS
========================================= */

.service-card {
    position: relative;
    overflow: hidden;

    padding: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(0, 20, 45, 0.92),
            rgba(0, 10, 28, 0.88)
        );

    border: 1px solid rgba(0, 217, 255, 0.9);
    border-radius: 20px;

    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.35);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #00d9ff,
        #50ff9a
    );

    box-shadow:
        0 0 12px #00d9ff;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: #50ff9a;

    box-shadow:
        0 0 16px rgba(0, 217, 255, 0.8),
        0 0 32px rgba(80, 255, 154, 0.35);
}

.service-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 217, 255, 0.12);
    border: 1px solid #00d9ff;
    border-radius: 18px;

    font-size: 2rem;

    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.55);
}

.service-card h2 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.65rem;
    line-height: 1.3;

    text-shadow:
        0 0 6px rgba(0, 217, 255, 0.9);
}

.service-card p {
    margin-bottom: 20px;
    color: #dff7ff;
    line-height: 1.75;
}

.service-card ul {
    margin: 0;
    padding-left: 22px;
}

.service-card li {
    margin-bottom: 10px;
    color: #f0fdff;
    line-height: 1.5;
}

.service-card li::marker {
    color: #50ff9a;
}


/* =========================================
   SERVICE PROCESS
========================================= */

.services-process {
    width: min(1100px, 92%);
    margin: 70px auto 0;
    padding: 45px 30px;

    text-align: center;

    background: rgba(0, 15, 35, 0.78);
    border: 1px solid rgba(80, 255, 154, 0.8);
    border-radius: 22px;

    box-shadow:
        0 0 18px rgba(80, 255, 154, 0.25);

    backdrop-filter: blur(8px);
}

.services-process > h2 {
    margin-bottom: 35px;
    color: #ffffff;
    font-size: clamp(1.9rem, 4vw, 3rem);

    text-shadow:
        0 0 8px #00d9ff;
}

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

.process-card {
    padding: 28px 24px;

    background: rgba(0, 22, 48, 0.85);
    border: 1px solid rgba(0, 217, 255, 0.65);
    border-radius: 18px;

    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.25);
}

.process-card span {
    display: block;
    margin-bottom: 12px;

    color: #50ff9a;
    font-size: 2rem;
    font-weight: 800;

    text-shadow:
        0 0 10px rgba(80, 255, 154, 0.8);
}

.process-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.25rem;
}

.process-card p {
    color: #dff7ff;
    line-height: 1.65;
}


/* =========================================
   SERVICES CALL TO ACTION
========================================= */

.services-cta {
    width: min(950px, 92%);
    margin: 70px auto 0;
    padding: 55px 30px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(0, 40, 75, 0.92),
            rgba(0, 18, 38, 0.92)
        );

    border: 2px solid #00d9ff;
    border-radius: 24px;

    box-shadow:
        0 0 18px rgba(0, 217, 255, 0.65),
        inset 0 0 25px rgba(0, 217, 255, 0.08);
}

.services-cta h2 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.2rem);

    text-shadow:
        0 0 8px #00d9ff;
}

.services-cta p {
    max-width: 700px;
    margin: 0 auto 28px;

    color: #eafaff;
    font-size: 1.05rem;
    line-height: 1.75;
}

.services-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}


/* =========================================
   SERVICES BUTTONS
========================================= */

.services-main-button,
.services-secondary-button {
    display: inline-block;

    min-width: 190px;
    padding: 14px 24px;

    border-radius: 999px;

    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.services-main-button {
    color: #00131f;
    background: linear-gradient(
        90deg,
        #00d9ff,
        #50ff9a
    );

    box-shadow:
        0 0 14px rgba(0, 217, 255, 0.75);
}

.services-main-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 0 18px rgba(0, 217, 255, 1),
        0 0 28px rgba(80, 255, 154, 0.55);
}

.services-secondary-button {
    color: #ffffff;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid #00d9ff;

    box-shadow:
        0 0 10px rgba(0, 217, 255, 0.35);
}

.services-secondary-button:hover {
    transform: translateY(-3px);

    background: rgba(0, 217, 255, 0.18);

    box-shadow:
        0 0 18px rgba(0, 217, 255, 0.75);
}


/* =========================================
   RESPONSIVE SERVICES PAGE
========================================= */

@media screen and (max-width: 850px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .services-hero {
        padding: 50px 22px;
    }

    .services-intro,
    .services-process,
    .services-cta {
        padding-left: 22px;
        padding-right: 22px;
    }

}


@media screen and (max-width: 500px) {

    .services-page {
        padding-left: 10px;
        padding-right: 10px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .services-button-group {
        flex-direction: column;
        align-items: stretch;
    }

    .services-main-button,
    .services-secondary-button {
        width: 100%;
    }

}

/* =========================================
   PORTFOLIO PAGE
========================================= */

.portfolio-page {
    width: 100%;
    min-height: 100vh;
    padding: 40px 20px 80px;
}


/* =========================================
   PORTFOLIO HERO
========================================= */

.portfolio-hero {
    width: min(1100px, 94%);
    margin: 30px auto 60px;
    padding: 75px 35px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(0, 18, 42, 0.94),
            rgba(0, 40, 58, 0.88)
        );

    border: 2px solid #00d9ff;
    border-radius: 25px;

    box-shadow:
        0 0 15px rgba(0, 217, 255, 0.8),
        0 0 35px rgba(0, 217, 255, 0.35);

    backdrop-filter: blur(8px);
}

.portfolio-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.portfolio-label {
    margin-bottom: 12px;

    color: #50ff9a;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    text-shadow:
        0 0 8px rgba(80, 255, 154, 0.8);
}

.portfolio-hero h1 {
    margin-bottom: 20px;

    color: #ffffff;
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    line-height: 1.1;

    text-shadow:
        0 0 8px #00d9ff,
        0 0 20px rgba(0, 217, 255, 0.85);
}

.portfolio-hero p {
    max-width: 780px;
    margin: 0 auto 30px;

    color: #e5faff;
    font-size: 1.1rem;
    line-height: 1.8;
}


/* =========================================
   PORTFOLIO BUTTONS
========================================= */

.portfolio-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.portfolio-main-button,
.portfolio-secondary-button {
    display: inline-block;

    min-width: 175px;
    padding: 14px 25px;

    border-radius: 999px;

    font-weight: 800;
    text-align: center;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.portfolio-main-button {
    color: #00151e;

    background:
        linear-gradient(
            90deg,
            #00d9ff,
            #50ff9a
        );

    box-shadow:
        0 0 14px rgba(0, 217, 255, 0.75);
}

.portfolio-main-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 0 20px rgba(0, 217, 255, 1),
        0 0 30px rgba(80, 255, 154, 0.55);
}

.portfolio-secondary-button {
    color: #ffffff;

    background: rgba(0, 217, 255, 0.08);
    border: 1px solid #00d9ff;

    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.35);
}

.portfolio-secondary-button:hover {
    transform: translateY(-3px);

    background: rgba(0, 217, 255, 0.2);

    box-shadow:
        0 0 18px rgba(0, 217, 255, 0.75);
}


/* =========================================
   PORTFOLIO INTRODUCTION
========================================= */

.portfolio-intro {
    width: min(950px, 92%);
    margin: 0 auto 60px;
    padding: 38px;

    text-align: center;

    background: rgba(0, 15, 35, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.8);
    border-radius: 20px;

    box-shadow:
        0 0 15px rgba(0, 217, 255, 0.4);

    backdrop-filter: blur(8px);
}

.portfolio-intro h2 {
    margin-bottom: 18px;

    color: #ffffff;
    font-size: clamp(1.9rem, 4vw, 2.8rem);

    text-shadow:
        0 0 8px rgba(0, 217, 255, 0.9);
}

.portfolio-intro p {
    max-width: 800px;
    margin: 0 auto;

    color: #e5faff;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* =========================================
   FEATURED PROJECT
========================================= */

.featured-project {
    width: min(1150px, 94%);
    margin: 0 auto 75px;
    padding: 40px;

    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 45px;

    background:
        linear-gradient(
            145deg,
            rgba(0, 25, 52, 0.94),
            rgba(0, 12, 30, 0.92)
        );

    border: 2px solid #50ff9a;
    border-radius: 24px;

    box-shadow:
        0 0 18px rgba(80, 255, 154, 0.45),
        0 0 35px rgba(0, 217, 255, 0.2);
}

.featured-project-content h2 {
    margin-bottom: 18px;

    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);

    text-shadow:
        0 0 8px #00d9ff;
}

.featured-project-content p {
    margin-bottom: 20px;

    color: #dff8ff;
    line-height: 1.75;
}

.featured-project-content ul {
    margin: 0 0 28px;
    padding-left: 22px;
}

.featured-project-content li {
    margin-bottom: 9px;

    color: #f1fdff;
}

.featured-project-content li::marker {
    color: #50ff9a;
}

.featured-project-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-screen {
    width: 100%;
    max-width: 340px;
    min-height: 270px;
    padding: 30px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(0, 8, 22, 0.98),
            rgba(0, 37, 58, 0.95)
        );

    border: 2px solid #00d9ff;
    border-radius: 18px;

    box-shadow:
        0 0 18px rgba(0, 217, 255, 0.75),
        inset 0 0 20px rgba(0, 217, 255, 0.1);

    transform: perspective(700px) rotateY(-5deg);
}

.screen-dot {
    display: inline-block;

    width: 10px;
    height: 10px;
    margin: 0 4px 40px;

    background: #50ff9a;
    border-radius: 50%;

    box-shadow:
        0 0 8px #50ff9a;
}

.project-screen h3 {
    margin-bottom: 20px;

    color: #ffffff;
    font-size: 2rem;

    text-shadow:
        0 0 10px #00d9ff;
}

.project-screen p {
    color: #50ff9a;
    line-height: 2;
}


/* =========================================
   SECTION HEADINGS
========================================= */

.portfolio-section-heading {
    max-width: 850px;
    margin: 0 auto 38px;

    text-align: center;
}

.portfolio-section-heading h2 {
    margin-bottom: 15px;

    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.2rem);

    text-shadow:
        0 0 8px #00d9ff;
}

.portfolio-section-heading p:last-child {
    color: #e1f9ff;
    font-size: 1.05rem;
    line-height: 1.75;
}


/* =========================================
   PORTFOLIO PROJECT GRID
========================================= */

.portfolio-projects {
    width: min(1200px, 95%);
    margin: 0 auto 75px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(0, 22, 48, 0.94),
            rgba(0, 9, 25, 0.92)
        );

    border: 1px solid rgba(0, 217, 255, 0.85);
    border-radius: 20px;

    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.3);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.portfolio-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #00d9ff,
            #50ff9a
        );

    box-shadow:
        0 0 10px #00d9ff;
}

.portfolio-card:hover {
    transform: translateY(-8px);

    border-color: #50ff9a;

    box-shadow:
        0 0 18px rgba(0, 217, 255, 0.75),
        0 0 30px rgba(80, 255, 154, 0.25);
}

.portfolio-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 217, 255, 0.12);
    border: 1px solid #00d9ff;
    border-radius: 17px;

    font-size: 1.9rem;

    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.45);
}

.project-category {
    display: inline-block;

    margin-bottom: 12px;

    color: #50ff9a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.portfolio-card h2 {
    margin-bottom: 14px;

    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1.3;

    text-shadow:
        0 0 6px rgba(0, 217, 255, 0.8);
}

.portfolio-card p {
    margin-bottom: 18px;

    color: #dff7ff;
    line-height: 1.7;
}

.portfolio-card ul {
    margin: 0;
    padding-left: 21px;
}

.portfolio-card li {
    margin-bottom: 8px;

    color: #effcff;
    line-height: 1.5;
}

.portfolio-card li::marker {
    color: #50ff9a;
}


/* =========================================
   SKILLS SECTION
========================================= */

.portfolio-skills {
    width: min(1100px, 94%);
    margin: 0 auto 75px;
    padding: 45px 35px;

    background: rgba(0, 15, 35, 0.84);
    border: 1px solid rgba(0, 217, 255, 0.8);
    border-radius: 23px;

    box-shadow:
        0 0 17px rgba(0, 217, 255, 0.35);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

.skill-item {
    padding: 18px 12px;

    text-align: center;

    background: rgba(0, 32, 58, 0.88);
    border: 1px solid rgba(80, 255, 154, 0.65);
    border-radius: 14px;

    box-shadow:
        0 0 9px rgba(80, 255, 154, 0.2);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.skill-item:hover {
    transform: translateY(-4px);

    box-shadow:
        0 0 15px rgba(80, 255, 154, 0.6);
}

.skill-item span {
    color: #ffffff;
    font-weight: 700;
}


/* =========================================
   ACHIEVEMENTS
========================================= */

.portfolio-achievements {
    width: min(1100px, 94%);
    margin: 0 auto 75px;
}

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

.achievement-card {
    padding: 30px 25px;

    text-align: center;

    background: rgba(0, 19, 43, 0.92);
    border: 1px solid rgba(0, 217, 255, 0.72);
    border-radius: 18px;

    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.25);
}

.achievement-number {
    display: block;

    margin-bottom: 14px;

    color: #50ff9a;
    font-size: 2rem;
    font-weight: 900;

    text-shadow:
        0 0 10px rgba(80, 255, 154, 0.8);
}

.achievement-card h3 {
    margin-bottom: 12px;

    color: #ffffff;
    font-size: 1.35rem;
}

.achievement-card p {
    color: #dff8ff;
    line-height: 1.65;
}


/* =========================================
   PORTFOLIO CALL TO ACTION
========================================= */

.portfolio-cta {
    width: min(950px, 92%);
    margin: 0 auto;
    padding: 55px 30px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(0, 38, 68, 0.94),
            rgba(0, 14, 34, 0.94)
        );

    border: 2px solid #00d9ff;
    border-radius: 24px;

    box-shadow:
        0 0 18px rgba(0, 217, 255, 0.65);
}

.portfolio-cta h2 {
    margin-bottom: 16px;

    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.2rem);

    text-shadow:
        0 0 8px #00d9ff;
}

.portfolio-cta p {
    max-width: 700px;
    margin: 0 auto 28px;

    color: #e6faff;
    font-size: 1.05rem;
    line-height: 1.75;
}


/* =========================================
   PORTFOLIO RESPONSIVE DESIGN
========================================= */

@media screen and (max-width: 1000px) {

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-project {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


@media screen and (max-width: 750px) {

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-hero,
    .featured-project,
    .portfolio-skills,
    .portfolio-cta {
        padding-left: 23px;
        padding-right: 23px;
    }

    .project-screen {
        transform: none;
    }

}


@media screen and (max-width: 500px) {

    .portfolio-page {
        padding-left: 10px;
        padding-right: 10px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-button-group {
        flex-direction: column;
        align-items: stretch;
    }

    .portfolio-main-button,
    .portfolio-secondary-button {
        width: 100%;
    }

    .portfolio-card {
        padding: 25px 20px;
    }

}

/* =========================================
   FIX YOUTUBE VIDEO SIZE
========================================= */

.youtube-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 24px;

    width: min(1200px, 95%);
    margin: 0 auto;
}

.youtube-video-card {
    overflow: hidden;

    width: 100%;
    max-width: 380px;
    margin: 0 auto;

    background:
        linear-gradient(
            145deg,
            rgba(0, 22, 48, 0.94),
            rgba(0, 9, 25, 0.93)
        );

    border: 1px solid rgba(0, 217, 255, 0.85);
    border-radius: 20px;

    box-shadow:
        0 0 13px rgba(0, 217, 255, 0.3);
}

.youtube-card-embed {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 215px;

    background: #000000;
}

.youtube-card-embed iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}

.youtube-video-card-content {
    padding: 22px;
}

@media screen and (max-width: 1000px) {

    .youtube-video-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }

}

@media screen and (max-width: 700px) {

    .youtube-video-grid {
        grid-template-columns: 1fr;
    }

    .youtube-video-card {
        max-width: 420px;
    }

    .youtube-card-embed {
        height: 235px;
    }

}