/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #f5f7fb;
    color: #333;
    line-height: 1.6;
}

/* ================= CONTAINER ================= */
.container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

/* ================= TOPBAR ================= */
.topbar {
    background: linear-gradient(90deg, #2f3b46, #1f2a33);
    font-size: 13px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.topbar-left {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ff0019;
    transform: translateY(-2px);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.link {
    text-decoration: none;
    color: #ddd;
    transition: 0.3s;
}

.link:hover {
    color: #fff;
}

.login-btn {
    background: rgba(255,255,255,0.08);
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.login-btn:hover {
    background: #ff0019;
}

/* ================= HEADER ================= */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 45px;
}

/* MENU */
.menu {
    display: flex;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: 0.3s;
}

.menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ff0019;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.menu a:hover {
    color: #000;
}

/* ================= HERO ================= */
.hero {
    padding: 60px 0;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-left img {
    width: 300px;
    max-width: 100%;
}

.hero-right h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero-right h3 {
    font-weight: normal;
    margin-bottom: 15px;
}

/* ================= PACKAGES ================= */
.packages {
    text-align: center;
    padding: 60px 0;
}

.package-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.package {
    width: 240px;
    background: #5f676d;
    color: #fff;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.package:hover {
    transform: translateY(-5px);
}

.package.highlight {
    background: #ff0019;
    transform: scale(1.05);
}

.package h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 28px;
    margin: 20px 0;
}

.price span {
    font-size: 14px;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    background: #fff;
    color: #333;
    font-weight: bold;
}

.package.highlight .btn {
    color: #ff0019;
}

/* BADGE */
.package .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 6px;
}

/* ================= FOOTER ================= */
.footer {
    background: linear-gradient(135deg, #2c3944, #1f2a33);
    color: #ccc;
    font-size: 14px;
}

.footer_top {
    background: #2f3e48;
    padding: 50px 0;
}

.footer-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.help-card {
    background: #ffffff;
    padding: 25px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    max-width: 400px;
}

.help-card h2 {
    color: #ff0019;
    margin-top: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter input {
    padding: 12px;
    border: none;
    border-radius: 6px;
}

.newsletter button {
    padding: 12px 20px;
    background: #6c757d;
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.newsletter button:hover {
    background: #ff0019;
}

.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-grid > div {
    flex: 1;
    min-width: 200px;
}

.footer h4 {
    color: #fff;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin: 6px 0;
    color: #aeb6bd;
}

.footer ul li:hover {
    color: #fff;
}

.footer-bottom {
    background: #1f2a33;
    padding: 15px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        gap: 10px;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .footer-top-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
    }
}
.nav:hover {
    color: #ff0019;
    transform: scale(1.2);
    transition: 0.3s;
}

.dots span:hover {
    transform: scale(1.3);
}
/* ================= DOMAIN SEARCH ================= */

.domain-search {
    background: #2f3a44;
    padding: 40px 0;
    color: #fff;
}

/* SEARCH BAR */
.search-box {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.search-box span {
    font-weight: 600;
    font-size: 14px;
}

.search-box input {
    flex: 1;
    padding: 15px;
    border-radius: 5px;
    border: none;
    min-width: 250px;
}

.search-box button {
    background: #ff0019;
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.search-box button:hover {
    background: #d90015;
}

/* DOMAIN PRICES */
.domain-prices {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.domain-prices div {
    padding: 15px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
    font-size: 18px;
}

.domain-prices div span {
    color: #ccc;
    margin-left: 5px;
}

.domain-prices .note {
    font-size: 12px;
    color: #aaa;
    border-right: none;
}
.hero-slider {
    overflow: visible;
}
.domain-search {
    margin-top: -60px;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ============================= */
/* GLOBAL IMPROVEMENTS */
/* ============================= */

section {
  padding: 80px 0;
}

h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 50px;
}

.btn.small {
  padding: 8px 16px;
  font-size: 13px;
}

.btn.primary {
  background: #e60023;
  color: #fff;
}

.btn.primary:hover {
  background: #c4001e;
}

.btn.outline {
  border: 2px solid #e60023;
  color: #e60023;
  background: transparent;
}

.btn.outline:hover {
  background: #e60023;
  color: #fff;
}

/* ============================= */
/* SERVICES */
/* ============================= */

.services {
  background: #f9f9f9;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.service-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.service-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ============================= */
/* HOW IT WORKS */
/* ============================= */

.how-it-works {
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.step span {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #e60023;
  color: #fff;
  font-weight: bold;
  line-height: 50px;
  border-radius: 50%;
  margin-bottom: 15px;
  font-size: 18px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: #666;
  font-size: 14px;
}

/* ============================= */
/* TESTIMONIALS */
/* ============================= */

.testimonials {
  background: #f4f6f9;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.testimonial {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  font-style: italic;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.testimonial h4 {
  margin-top: 15px;
  font-style: normal;
  font-size: 14px;
  color: #333;
}

.testimonial:hover {
  transform: translateY(-5px);
}

/* ============================= */
/* CTA SECTION */
/* ============================= */

.cta {
  background: linear-gradient(135deg, #0b0f2f, #1c2456);
  color: #fff;
  text-align: center;
}

.cta h2 {
  color: #fff;
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 25px;
  color: #ccc;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ============================= */
/* FAQ */
/* ============================= */

.faq {
  background: #fff;
}

.faq-item {
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.faq-item h4 {
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: #666;
}

.faq-item:hover {
  background: #f1f1f1;
}

/* ============================= */
/* WHATSAPP FLOAT */
/* ============================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 22px;
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 999;
  transition: 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* ============================= */
/* MOBILE OPTIMIZATION */
/* ============================= */

@media(max-width: 768px) {

  h2 {
    font-size: 24px;
  }

  section {
    padding: 60px 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

}
/* ============================= */
/* GLOBAL ANIMATIONS */
/* ============================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* hidden state */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* visible state */
.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================= */
/* SERVICE PREMIUM EFFECT */
/* ============================= */

.service-box {
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(230,0,35,0.15), transparent);
  transform: rotate(25deg);
  top: -150%;
  left: -150%;
  transition: 0.6s;
}

.service-box:hover::before {
  top: 100%;
  left: 100%;
}

.service-box:hover {
  transform: translateY(-10px) scale(1.02);
}

/* ============================= */
/* STEP GLOW EFFECT */
/* ============================= */

.step span {
  transition: 0.3s;
}

.step:hover span {
  box-shadow: 0 0 20px rgba(230,0,35,0.6);
  transform: scale(1.1);
}

/* ============================= */
/* TESTIMONIAL PREMIUM */
/* ============================= */

.testimonial {
  position: relative;
}

.testimonial::after {
  content: "“";
  font-size: 60px;
  position: absolute;
  top: 10px;
  right: 20px;
  color: rgba(0,0,0,0.05);
}

.testimonial:hover {
  transform: translateY(-10px) scale(1.02);
}

/* ============================= */
/* CTA GLOW BUTTONS */
/* ============================= */

.btn.primary {
  position: relative;
  overflow: hidden;
}

.btn.primary::after {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  background: rgba(255,255,255,0.2);
  top: -100%;
  left: -100%;
  transform: rotate(45deg);
  transition: 0.6s;
}

.btn.primary:hover::after {
  top: 100%;
  left: 100%;
}

/* ============================= */
/* FAQ HOVER INTERACTION */
/* ============================= */

.faq-item {
  cursor: pointer;
}

.faq-item:hover {
  transform: scale(1.02);
}

/* ============================= */
/* WHATSAPP PULSE EFFECT */
/* ============================= */

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

/* ============================= */
/* SCROLL SMOOTH */
/* ============================= */

html {
  scroll-behavior: smooth;
}
/* ============================= */
/* PRICING SECTION */
/* ============================= */

.pricing {
  background: #f4f6f9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.pricing-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-box h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

/* PRICE ITEMS */

.price-item {
  margin-bottom: 20px;
}

.price-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.price-item p {
  font-size: 18px;
  font-weight: bold;
  color: #e60023;
}

.price-item span {
  font-size: 12px;
  color: #777;
  font-weight: normal;
}

/* CUSTOM */

.pricing-box.highlight {
  border: 2px solid #e60023;
}

.features {
  text-align: left;
  margin-bottom: 20px;
}

.features li {
  margin-bottom: 8px;
  font-size: 14px;
}

.custom-note {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
/* ============================= */
/* PRICING 4 COLUMN */
/* ============================= */

.pricing {
  background: #f4f6f9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */

.pricing-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* TITLE */

.pricing-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* PRICE */

.price {
  font-size: 26px;
  font-weight: bold;
  color: #e60023;
  margin-bottom: 20px;
}

.price span {
  font-size: 12px;
  color: #777;
}

/* FEATURES */

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
}

/* BADGE */

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #e60023;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
}

/* HIGHLIGHT */

.pricing-card.highlight {
  border: 2px solid #e60023;
}

/* DARK CARD */

.pricing-card.dark {
  background: #0b0f2f;
  color: #fff;
}

.pricing-card.dark ul li {
  color: #ccc;
}

.pricing-card.dark .note {
  font-size: 13px;
  margin-bottom: 20px;
  color: #bbb;
}

/* BUTTON FIX */

.pricing-card .btn {
  width: 100%;
}

/* ============================= */
/* STATS SECTION */
/* ============================= */

.stats {
  background: linear-gradient(135deg, #0b0f2f, #1c2456);
  padding: 70px 0;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
  gap: 20px;
}

.stat {
  padding: 20px;
  transition: 0.3s;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat .icon {
  font-size: 28px;
  margin-bottom: 10px;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
}

.stat h2 {
  font-size: 32px;
  margin-bottom: 5px;
   color: #ffffff;
}

.stat p {
  font-size: 13px;
  color: #cbd2ff;
  letter-spacing: 0.5px;
}
/* ============================= */
/* STAT HOVER GLOW */
/* ============================= */

.stat {
  transition: all 0.3s ease;
  border-radius: 12px;
}

.stat:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ICON GLOW */

.stat .icon {
  transition: 0.3s;
}

.stat:hover .icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.6));
}

/* NUMBER GLOW */

.stat:hover h2 {
  color: #ff2d2d;
  text-shadow: 0 0 10px rgba(255,45,45,0.6);
}

/* ===== HOSTING HERO PREMIUM ===== */
.hosting-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 100px 20px;
    color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.server-card {
    background: #fff;
    color: #000;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: rotate(-3deg);
}
/* ===== FIX FEATURES SECTION ===== */

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
/* ===== FEATURES GRID FIX ===== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* MOBILE FIX */
@media(max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== WHY SECTION FIX ===== */
/* ===== WHY SECTION PREMIUM ===== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.why-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* ICON STYLE */
.why-card::before {
    content: "✔";
    background: #e60023;
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* MOBILE */
@media(max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
.why-us {
    padding: 80px 0;
    background: #f9fafb;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* ABOUT PAGE */

.about-hero {
    background: linear-gradient(135deg, #0b0f2f, #1c2456);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.about-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.about-text {
    max-width: 700px;
    margin: auto;
    text-align: center;
    color: #666;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.about-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-8px);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
}

.process-step span {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #e60023;
    color: #fff;
    border-radius: 50%;
    line-height: 45px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* ===== PREMIUM ABOUT ===== */

.about-hero.premium {
    background: linear-gradient(135deg, #0b0f2f, #1c2456);
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.container.narrow {
    max-width: 700px;
}

/* SECTION SPACING */
.about-section,
.about-services,
.about-process,
.about-trust {
    padding: 90px 0;
}

/* CARDS */
.about-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-10px);
}

/* WHY PREMIUM */
.about-why.premium {
    background: #f4f6f9;
}

.why-grid.premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
}

/* PROCESS LINE */
.process-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
}

.process-step span {
    width: 50px;
    height: 50px;
    display: inline-block;
    background: #e60023;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    margin-bottom: 10px;
}

/* TRUST SECTION */
.about-trust.premium {
    background: #f9fafb;
}

/* CTA */
.cta.premium {
    background: linear-gradient(135deg, #0b0f2f, #1c2456);
    color: #fff;
}

/* MOBILE */
@media(max-width: 768px) {
    .why-grid.premium {
        grid-template-columns: 1fr;
    }

    .process-line {
        flex-direction: column;
    }
}

/* ===== PORTFOLIO ===== */

.portfolio-hero {
    background: linear-gradient(135deg, #0b0f2f, #1c2456);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.portfolio-section {
    padding: 80px 0;
}

.portfolio-section.alt {
    background: #f4f6f9;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.portfolio-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-8px);
}

.portfolio-card h3 {
    margin-bottom: 8px;
}

.tag {
    display: inline-block;
    background: #e60023;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.portfolio-highlight {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* ===== SERVICES PAGE ===== */

.services-hero {
    background: linear-gradient(135deg, #0b0f2f, #1c2456);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card ul {
    margin: 15px 0;
    padding-left: 18px;
}

.service-card ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

/* HIGHLIGHT CARD */
.service-card.highlight {
    border: 2px solid #e60023;
}

/* BUTTON SMALL */
.btn.small {
    padding: 8px 16px;
    font-size: 14px;
}

/* WHY SECTION */
.services-why {
    background: #f4f6f9;
    padding: 80px 0;
}

/* MOBILE */
@media(max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== SERVICES GRID FIX ===== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

@media(max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD */
.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* ICON ALIGN */
.service-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* HIGHLIGHT */
.service-card.highlight {
    border: 2px solid #e60023;
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(230,0,35,0.15);
}

/* BADGE */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e60023;
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 20px;
}

/* BUTTON SMALL */
.btn.small {
    padding: 8px 16px;
    font-size: 14px;
}

/* ===== CONTACT PAGE ===== */

.contact-hero {
    background: linear-gradient(135deg, #0b0f2f, #1c2456);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 10px;
}

.info-item {
    margin-top: 20px;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

@media(max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}
.menu a.active {
    color: #e60023;
    font-weight: 600;
    border-bottom: 2px solid #e60023;
}

/* SHOP PAGE */

.shop-hero {
    background: linear-gradient(135deg, #0b0f2f, #1c2456);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.shop-section {
    padding: 80px 0;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

/* META */
.meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

/* CATEGORY */
.category {
    display: inline-block;
    font-size: 11px;
    background: #eee;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* PRICE */
.price {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

/* STOCK */
.in-stock {
    color: green;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.out-stock {
    color: red;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.btn.disabled {
    background: #ccc;
    cursor: not-allowed;
}
.product-image img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

.desc {
    font-size: 13px;
    color: #666;
    margin: 10px 0;
}
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.product-image-box img {
    width: 100%;
    border-radius: 12px;
}

.product-details h1 {
    margin-bottom: 10px;
}

.product-details .price {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
}

.description {
    margin: 20px 0;
    color: #555;
}

@media(max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.product-image-box img {
    width: 100%;
    border-radius: 12px;
}

.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid #eee;
}

.thumbs img:hover {
    border-color: #000;
}

@media(max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
}

/* MAIN IMAGE */
.product-image-box {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 👈 IMPORTANT */
}

/* THUMBNAILS */
.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover; /* 👈 crop nicely */
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbs img:hover {
    border-color: #000;
}
/* THUMBNAIL CONTAINER */
.thumbs {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* THUMBNAIL ITEM */
.thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;

    border: 2px solid #eee;
    transition: all 0.25s ease;
}

/* HOVER EFFECT */
.thumbs img:hover {
    transform: scale(1.05);
    border-color: #000;
}

/* ACTIVE IMAGE */
.thumbs img.active {
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.cart-title {
    margin-bottom: 30px;
}

.cart-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid #eee;
}

.cart-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #eee;
}

.product-name {
    font-weight: 500;
}

/* QTY CONTROL */
.qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-box a {
    background: #eee;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.qty-box span {
    min-width: 20px;
    text-align: center;
}

/* REMOVE */
.remove {
    color: red;
    text-decoration: none;
    font-size: 18px;
}

/* SUMMARY */
.cart-summary {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-summary h3 span {
    color: #e63946;
}

.btn.big {
    padding: 14px 25px;
    font-size: 16px;
}

.cart {
    position: relative;
}

.cart a {
    color: inherit;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -6px;
    background: #e63946;
    color: #fff;
    font-size: 12px;
    padding: 3px 7px;
    border-radius: 50%;
    font-weight: bold;
}
.cart-count {
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.cart-count {
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
/* CART WRAPPER */
/* ===== MINI CART FINAL FIX ===== */

.cart {
    position: relative;
}

.mini-cart {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    width: 280px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 99999;
}

.cart.active .mini-cart {
    display: block;
}

/* IMPORTANT FIX */
.topbar {
    overflow: visible !important;
}

.mini-cart {
    color: #000;
}

.mini-cart .empty {
    color: #333;
    font-size: 15px;
    margin-bottom: 10px;
}

.mini-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.mini-left small {
    display: block;
    color: #777;
}

.mini-right {
    font-weight: bold;
}
.mini-item {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.mini-img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 6px;
    background: #f5f5f5;
}

.mini-info {
    flex: 1;
}

.mini-name {
    font-size: 13px;
    font-weight: 500;
}

.mini-qty {
    display: flex;
    gap: 8px;
    margin-top: 5px;
    align-items: center;
}

.mini-qty a {
    padding: 2px 8px;
    background: #eee;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.mini-right {
    text-align: right;
}

.mini-price {
    font-weight: bold;
}

.remove {
    color: red;
    text-decoration: none;
    font-size: 14px;
}

.mini-qty button,


.mini-qty button:hover {
    background: #ddd;
}

.remove-btn {
    background: #ff4d4d;
    color: #fff;
}

.remove-btn:hover {
    background: #cc0000;
}
.mini-qty button {
    padding: 6px 10px;
    background: #eee;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
}

.mini-qty button:hover {
    background: #ddd;
}

.remove-btn {
    background: #ff4d4d;
    color: #fff;
}

.remove-btn:hover {
    background: #cc0000;
}
.mini-cart {
    pointer-events: auto;
}

.mini-cart * {
    pointer-events: auto;
}
/* SUCCESS BOX */
.success-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ORDER DETAILS */
.order-details {
    text-align: left;
    margin-top: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center; /* 🔥 THIS FIXES ALIGNMENT */
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}



/* NOTE */
.note-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}
/* USER MENU */
.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-menu .welcome {
    font-weight: 500;
    color: #333;
}
/* USER DROPDOWN */
.user-dropdown {
    position: relative;
    cursor: pointer;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #fff;
}

.user-dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
}

.user-dropdown-menu a {
    padding: 12px;
    text-decoration: none;
    color: #333;
    display: flex;
    gap: 8px;
}

.user-dropdown-menu a:hover {
    background: #f5f5f5;
}

/* SHOW DROPDOWN */
.user-dropdown-menu {
    display: none;
    flex-direction: column;
}
.cart {
    margin-left: 15px;
}

/* ============================= */
/* 🔥 GLOBAL UI UPGRADE */
/* ============================= */

/* BETTER TYPOGRAPHY */
h1, h2, h3 {
    letter-spacing: -0.5px;
}

/* SECTION SPACING CONSISTENCY */
section {
    padding: 90px 0;
}

/* ============================= */
/* 🔥 BUTTON UPGRADE */
/* ============================= */

.btn {
    transition: all 0.25s ease;
    position: relative;
}

.btn:hover {
    transform: translateY(-2px);
}

/* PRIMARY BUTTON GLOW */
.btn.primary {
    box-shadow: 0 5px 15px rgba(230,0,35,0.25);
}

.btn.primary:hover {
    box-shadow: 0 10px 25px rgba(230,0,35,0.4);
}

/* ============================= */
/* 🔥 CARD SYSTEM (GLOBAL) */
/* ============================= */

.card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ============================= */
/* 🔥 CART PAGE UPGRADE */
/* ============================= */

.cart-box {
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.cart-table th {
    font-size: 13px;
    text-transform: uppercase;
    color: #777;
}

.cart-table td {
    font-size: 14px;
}

/* QTY BUTTONS CLEAN */
.qty-box a {
    transition: 0.2s;
}

.qty-box a:hover {
    background: #e60023;
    color: #fff;
}

/* ============================= */
/* 🔥 MINI CART UPGRADE */
/* ============================= */

.mini-cart {
    border-radius: 14px;
    animation: fadeIn 0.2s ease;
}

.mini-item {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* ============================= */
/* 🔥 SUCCESS PAGE UPGRADE */
/* ============================= */

.success-box {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.success-box h2 {
    font-size: 24px;
}

.detail-row {
    font-size: 14px;
}

/* ============================= */
/* 🔥 NAVBAR PREMIUM */
/* ============================= */

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
}

/* ============================= */
/* 🔥 SMOOTH INTERACTIONS */
/* ============================= */

a, button {
    transition: all 0.2s ease;
}

.user-dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    
    display: none;
    flex-direction: column;

    z-index: 9999; /* 🔥 THIS FIXES IT */
}