/* ========================================
   1. RESET & GLOBAL VARIABLES
======================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.6rem;
  background: #ffcccb;
  color: #000;
 text-rendering: optimizeLegibility;

}
:root {
  --white: #ffffff;
  --black: #000000;
  --blue: #007bff;
  --red: #e60000;
}


.lwmnmenu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .lwmnmenu nav {
            background-color: #333;
            position: relative;
        }

        .lwmnmenu li {
            position: relative;
        }

        .lwmnmenu a {
            display: block;
            padding: 10px 15px;
            color: white;
            text-decoration: none;
        }

        .lwmnmenu a:hover {
            background-color: #555;
        }

        /* Submenu - Dropping Below */
        .lwmnmenu .submenu {
            display: none;
            background-color: #333;
            min-width: 180px;
        }

        .lwmnmenu li:hover > .submenu {
            display: block;
        }

        /* Responsive Menu */
        .lwmnmenu .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 30px;
            color: white;
            padding: 15px;
        }

        .lwmnmenu .menu-toggle.active {
            display: block;
        }

        .lwmnmenu .menu {
            display: flex;
            flex-direction: row;
        }

        /* Mobile Menu Styles */
        @media screen and (max-width: 768px) {
            .lwmnmenu .menu {
                display: none;
                flex-direction: column;
                width: 100%;
            }

            .lwmnmenu .menu-toggle {
                display: block;
            }

            .lwmnmenu .menu.active {
                display: block;
            }

            .lwmnmenu li {
                width: 100%;
            }

            /* Ensure submenu drops below the parent item */
            .lwmnmenu .submenu {
                position: static;
                display: none;
            }

            .lwmnmenu li:hover > .submenu {
                display: block;
            }
        }
h1 {
  font-size: 2em; /* Or a specific pixel value like 32px */
  margin-block: 0.67em; /* Or specific pixel values for top and bottom margins */
}

/* ========================================
   2. LAYOUT UTILITIES
======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.2rem;
}
.section {
  padding: 0.2rem;
}

/* ========================================
   3. HEADER STYLES
======================================== */
.top-bar {
  background: #ffcccb;
  border-bottom: 1px solid var(--blue);
  font-size: 1.4rem;
  padding: 0.8rem 0;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.top-bar select {
  font-size: 1.4rem;
  padding: 0.4rem 1rem;
}
.mid-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--blue);
}
.logo {
  font-size: 2.8rem;
  font-weight: bold;
}
.logo .red {
  color: var(--red);
}
.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.auth-links a {
  font-size: 1.5rem;
  color: var(--blue);
}
.auth-links .btn.red-btn {
  background: var(--red);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
}
.site-header {
  background: #eff1f6;
  border-bottom: 1px solid var(--blue);
}
.nav-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.main-nav {
  display: flex;
  gap: 2rem;
}

/* =======================
   DROPDOWN NAVIGATION
======================= */
.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-list li {
  position: relative;
}
.nav-link {
  color: var(--blue);
  font-size: 1.6rem;
  text-decoration: none;
}
.nav-link:hover {
  color: var(--red);
}
.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--blue);
  z-index: 99;
}
.has-submenu:hover .submenu {
  display: block;
}
.submenu li {
  display: block;
}
.submenu a {
  display: block;
  padding: 1rem;
  font-size: 1.5rem;
  color: var(--blue);
}
.submenu a:hover {
  background: var(--blue);
  color: var(--white);
}


/* ========================================
   4. CARD STYLES
======================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--blue);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.card p {
  margin-bottom: 1.5rem;
  color: #333;
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: var(--blue);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: var(--red);
}

.product-full-scroller:hover {
  scroll-behavior: auto; /* pause smooth scrolling */
}

/* ===========================
   FULL WIDTH SCROLL STRIP
=========================== */
.product-full-scroller {
  width: 100%;
  height: 250px;
  overflow-x: auto;
  white-space: nowrap;
  background: var(--white);
  border-bottom: 1px solid var(--blue);
  scroll-behavior: smooth;

  /* Remove this line for smooth auto-scroll */
  /* scroll-snap-type: x mandatory; ❌ */
  
  scrollbar-width: none;
}
.product-full-scroller::-webkit-scrollbar {
  display: none;
}
.product-track {
  display: flex;
  height: 100%;
}
.product-slide {
  flex: 0 0 80%; /* Or try 300px fixed for consistent size */
  max-width: 100%;
  height: 100%;
  scroll-snap-align: start;
  margin-right: 1rem;
}
.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ========================================
   5. DOMAIN SEARCH
======================================== */
.domain-search h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.domain-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.domain-form input[type="text"] {
  flex: 1;
  min-width: 260px;
  padding: 1rem;
  font-size: 1.6rem;
  border: 1px solid var(--blue);
  border-radius: 4px;
}
.domain-form button {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  background: var(--blue);
  color: var(--white);
  boÿ er 뇐翴 ne;
  border-radius: 4px;
  cursor: pointer;
}
.domain-form button:hover {
  background: var(--red);
}
.tld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
}
.tld-card {
  border: 1px solid var(--blue);
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  background: var(--white);
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.tld-card:hover {
  background: var(--blue);
  color: var(--white);
}
.tld-card.selected {
  background: var(--red);
  color: var(--white);
}

/* ========================================
   6. RESPONSIVE
======================================== */
@media (max-width: 768px) {
  .top-bar-content,
  .mid-bar,
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .auth-links {
    flex-direction: column;
    align-items: flex-start;
  }
  .auth-links a {
    margin: 0.5rem 0;
  }
}

/* ========================================
   7. FOOTER
======================================== */
.site-footer {
  background: var(--black);
  color: var(--white);
  font-size: 1.4rem;
}
.footer-content {
  background: var(--white);
  color: var(--black);
}
.footer-section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.2rem;
  border-bottom: 1px solid var(--blue);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial-grid strong {
  display: block;
  margin-top: 1rem;
  color: var(--black);
}
.testimonial-grid small {
  color: #777;
}

.partner-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.partner-box {
  width: 104px;
  height: 54px;
  background: var(--white);
  border: 1px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-box:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.partner-box img {
  width: 100px;
  height: 50px;
  object-fit: contain;
  display: block;
}




/* Subscribe Form */
.footer-subscribe h3 {
  margin-bottom: 1rem;
}
.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.subscribe-form input[type="email"] {
  padding: 0.8rem 1.2rem;
  font-size: 1.5rem;
  border: 1px solid var(--blue);
  border-radius: 4px;
  flex: 1;
  min-width: 240px;
}
.subscribe-form button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.6rem;
  font-size: 1.5rem;
  border-radius: 4px;
  cursor: pointer;
}
.subscribe-form button:hover {
  background: var(--blue);
}

/* Four Column Footer - Styled as Cards */
.four-column-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.2rem;
}
.footer-col {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.footer-col h4 {
  margin-bottom: 1rem;
  color: var(--black);
}
.footer-col p,
.footer-col a {
  color: #555;
  font-size: 1.4rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a:hover {
  color: var(--red);
}
.social-icons {
  display: flex;
  gap: 1rem;
}
.social-icons img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.social-icons img:hover {
  filter: none;
}
.payment-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.payment-icons img {
  height: 28px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.payment-icons img:hover {
  filter: none;
}
.footer-bottom {
  background: var(--white);
  color: var(--black);
  text-align: center;
  border-top: 1px solid var(--blue);
  padding: 0.2rem;
}
.footer-bottom p {
  font-weight: 500;
  font-size: 1.4rem;
}




/* Shared Hosting Grid Section */
.shared-hosting-section {
  padding: 3rem 0;
}

.shared-hosting-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.hosting-box {
  flex: 1 1 48%;
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hosting-box img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.hosting-box h3 {
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.hosting-box p {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 1rem;
}

.hosting-box .btn {
  background-color: var(--blue);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.hosting-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive layout */
@media (max-width: 768px) {
  .hosting-box {
    flex: 1 1 100%;
  }
}


.pricing-section {
  padding: 3rem 0;
  text-align: center;
}

.pricing-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.location-label {
  font-size: 0.95rem;
  color: var(--blue);
  font-weight: bold;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

.pricing-card {
  flex: 1 1 30%;
  border: 1px solid var(--blue);
  border-radius: 10px;
  padding: 2rem;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.plan-desc {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 1rem;
}

.features {
  text-align: left;
  margin: 1rem 0;
  padding-left: 1rem;
  color: var(--black);
}

.features li {
  margin-bottom: 0.4rem;
}

.price {
  font-size: 1.25rem;
  margin: 1rem 0;
  color: var(--black);
}

.price del {
  color: #888;
  margin-right: 0.5rem;
}

.price ins {
  text-decoration: none;
  font-weight: bold;
  color: var(--red);
}

.pricing-card .btn {
  background-color: var(--blue);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  margin-top: auto;
  font-weight: bold;
}

/* Responsive stacking */
@media (max-width: 992px) {
  .pricing-card {
    flex: 1 1 48%;
  }
}

@media (max-width: 600px) {
  .pricing-card {
    flex: 1 1 100%;
  }
}





.feature-boxes {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.feature-box {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature-box img {
  max-width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  font-weight: 500;
}


.tech-specs {
  padding: 3rem 0;
}

.section-title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 2rem;
}

.spec-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.spec-card {
  flex: 1 1 22%;
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.spec-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--black);
  border-bottom: 1px solid var(--blue);
  padding-bottom: 0.5rem;
}

.spec-card ul {
  list-style-type: disc;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--black);
}

.spec-card li {
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .spec-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .spec-card {
    flex: 1 1 100%;
  }
}

.linux-details {
  margin: 2rem 0;
  padding: 2rem 0;
  border-radius: 5px;
  background: var(--white);
  border: 1px solid var(--blue);
}

.linux-details .section-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.details-text {
  flex: 1 1 50%;
  font-size: 1rem;
  color: var(--black);
}

.details-table {
  flex: 1 1 40%;
}

.details-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.details-table th,
.details-table td {
  border: 1px solid var(--blue);
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--black);
}

.details-table th {
  background-color: #f8f8f8;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .details-grid {
    flex-direction: column;
  }

  .details-text,
  .details-table {
    flex: 1 1 100%;
  }
}

.faq-section {
  padding: 2rem 0;
  border-top: 2px solid var(--blue);
}

.faq-section .section-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--black);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.faq-item {
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 1.5rem;
  background-color: var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.faq-item h3 {
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.5;
}

.windows-features {
  padding: 40px 20px;
  background: #f8f9fa;
}

.windows-features h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-box {
  flex: 1 1 calc(25% - 20px);
  max-width: 240px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-box img {
  max-width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.feature-box p {
  font-size: 16px;
  color: #333;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .feature-box {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .feature-box {
    flex: 1 1 100%;
  }
}

.tech-specs {
  padding: 3rem 1rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.spec-card {
  border: 1px solid var(--blue);
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
}

.spec-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 0.5rem;
}

.spec-card ul {
  list-style: none;
  padding-left: 0;
}

.spec-card li {
  padding: 4px 0;
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.2rem;
}

.spec-card li::before {
  content: "✔";
  color: var(--blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.payment-methods {
    text-align: center;
    padding: 20px 10px;
  }

  .payment-methods h3 {
    margin-bottom: 16px;
    font-size: 18px;
    color: #333;
  }

  .payment-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .payment-btn {
    width: 90px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .payment-btn.stripe {
    background-color: #6772e5;
  }

  .payment-btn.paypal {
    background-color: #ffc439;
    color: #111;
  }

  .payment-btn.ccavenue {
    background-color: #007bff;
  }

  .payment-btn:hover {
    opacity: 0.85;
    transform: scale(1.05);
  }
  
  
  .payment-methods {
    text-align: center;
    padding: 20px 10px;
  }

  .payment-methods h3 {
    margin-bottom: 16px;
    font-size: 18px;
    color: #333;
  }

  .payment-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .payment-btn {
    width: 90px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .payment-btn.stripe {
    background-color: #6772e5;
  }

  .payment-btn.paypal {
    background-color: #ffc439;
    color: #111;
  }

  .payment-btn.ccavenue {
    background-color: #007bff;
  }

  .payment-btn:hover {
    opacity: 0.85;
    transform: scale(1.05);
  }
  
  
  
  
  .lwmnmenu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .lwmnmenu nav {
            background-color: #333;
            position: relative;
        }

        .lwmnmenu li {
            position: relative;
        }

        .lwmnmenu a {
            display: block;
            padding: 10px 15px;
            color: white;
            text-decoration: none;
        }

        .lwmnmenu a:hover {
            background-color: #555;
        }

        /* Submenu - Dropping Below */
        .lwmnmenu .submenu {
            display: none;
            background-color: #333;
            min-width: 180px;
        }

        .lwmnmenu li:hover > .submenu {
            display: block;
        }

        /* Responsive Menu */
        .lwmnmenu .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 30px;
            color: white;
            padding: 15px;
        }

        .lwmnmenu .menu-toggle.active {
            display: block;
        }

        .lwmnmenu .menu {
            display: flex;
            flex-direction: row;
        }

        /* Mobile Menu Styles */
        @media screen and (max-width: 768px) {
            .lwmnmenu .menu {
                display: none;
                flex-direction: column;
                width: 100%;
            }

            .lwmnmenu .menu-toggle {
                display: block;
            }

            .lwmnmenu .menu.active {
                display: block;
            }

            .lwmnmenu li {
                width: 100%;
            }

            /* Ensure submenu drops below the parent item */
            .lwmnmenu .submenu {
                position: static;
                display: none;
            }

            .lwmnmenu li:hover > .submenu {
                display: block;
            }
        }
        
        
        
        .spec-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.spec-card {
  flex: 1 1 300px;
  border: 2px solid #007bff;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.spec-card:hover {
  transform: scale(1.03);
}

.spec-card h3 {
  color: #007bff;
  margin-bottom: 10px;
}

.spec-card ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
}

.section-title {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  color: #666;
}


.feature-section {
  padding: 3rem 1rem;
  background: var(--white);
  border-top: 2px solid var(--blue);
}

.feature-section .section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.feature-section .section-subtitle {
  font-size: 1rem;
  text-align: center;
  color: var(--gray);
  margin-bottom: 2rem;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.feature-card {
  flex: 1 1 160px;
  max-width: 200px;
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 6px;
  text-align: center;
  padding: 1.2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.feature-card img {
  margin-bottom: 1rem;
}

.feature-card p {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  margin: 0;
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    max-width: 90%;
  }
}

.tech-specs {
  margin-top: 3rem;
  padding: 2rem 1rem;
  background-color: #fff;
  border-top: 2px solid var(--blue);
  border-radius: 5px;
}

.tech-specs .section-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--blue);
}

.tech-specs .section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

.spec-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.spec-card {
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 300px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 1rem;
  background: #f9f9f9;
}

.spec-card h3 {
  text-align: center;
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.spec-card ul {
  padding-left: 1.2rem;
  list-style: disc;
  font-size: 0.95rem;
  color: #444;
}

.pricing-section {
  margin-top: 3rem;
  padding: 2rem 1rem;
  background-color: #fff;
  border-top: 2px solid var(--blue);
  border-radius: 5px;
}

.pricing-section .section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.pricing-section .section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.plan-card {
  flex: 1 1 260px;
  max-width: 300px;
  background-color: #f9f9f9;
  border: 1px solid var(--blue);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card h3 {
  color: var(--blue);
  text-align: center;
  margin-bottom: 0.3rem;
}

.plan-desc {
  font-size: 0.95rem;
  text-align: center;
  color: #555;
  margin-bottom: 1rem;
}

.plan-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}

.plan-card .price {
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 1rem;
}

.plan-card .price span {
  display: block;
  font-size: 0.85rem;
  color: #777;
  font-weight: normal;
}

.plan-card .btn {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.plan-card .btn:hover {
  background-color: #005bb5;
}


.lwmnmenu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .lwmnmenu nav {
            background-color: #333;
            position: relative;
        }

        .lwmnmenu li {
            position: relative;
        }

        .lwmnmenu a {
            display: block;
            padding: 10px 15px;
            color: white;
            text-decoration: none;
        }

        .lwmnmenu a:hover {
            background-color: #555;
        }

        /* Submenu - Dropping Below */
        .lwmnmenu .submenu {
            display: none;
            background-color: #333;
            min-width: 180px;
        }

        .lwmnmenu li:hover > .submenu {
            display: block;
        }

        /* Responsive Menu */
        .lwmnmenu .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 30px;
            color: white;
            padding: 15px;
        }

        .lwmnmenu .menu-toggle.active {
            display: block;
        }

        .lwmnmenu .menu {
            display: flex;
            flex-direction: row;
        }

        /* Mobile Menu Styles */
        @media screen and (max-width: 768px) {
            .lwmnmenu .menu {
                display: none;
                flex-direction: column;
                width: 100%;
            }

            .lwmnmenu .menu-toggle {
                display: block;
            }

            .lwmnmenu .menu.active {
                display: block;
            }

            .lwmnmenu li {
                width: 100%;
            }

            /* Ensure submenu drops below the parent item */
            .lwmnmenu .submenu {
                position: static;
                display: none;
            }

            .lwmnmenu li:hover > .submenu {
                display: block;
            }
        }
        
        
        
        .spec-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.spec-card {
  flex: 1 1 300px;
  border: 2px solid #007bff;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.spec-card:hover {
  transform: scale(1.03);
}

.spec-card h3 {
  color: #007bff;
  margin-bottom: 10px;
}

.spec-card ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
}

.section-title {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  color: #666;
}


.feature-section {
  padding: 3rem 1rem;
  background: var(--white);
  border-top: 2px solid var(--blue);
}

.feature-section .section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.feature-section .section-subtitle {
  font-size: 1rem;
  text-align: center;
  color: var(--gray);
  margin-bottom: 2rem;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.feature-card {
  flex: 1 1 160px;
  max-width: 200px;
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 6px;
  text-align: center;
  padding: 1.2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.feature-card img {
  margin-bottom: 1rem;
}

.feature-card p {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  margin: 0;
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    max-width: 90%;
  }
}

.tech-specs {
  margin-top: 3rem;
  padding: 2rem 1rem;
  background-color: #fff;
  border-top: 2px solid var(--blue);
  border-radius: 5px;
}

.tech-specs .section-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--blue);
}

.tech-specs .section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

.spec-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.spec-card {
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 300px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 1rem;
  background: #f9f9f9;
}

.spec-card h3 {
  text-align: center;
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.spec-card ul {
  padding-left: 1.2rem;
  list-style: disc;
  font-size: 0.95rem;
  color: #444;
}

.pricing-section {
  margin-top: 3rem;
  padding: 2rem 1rem;
  background-color: #fff;
  border-top: 2px solid var(--blue);
  border-radius: 5px;
}

.pricing-section .section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.pricing-section .section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.plan-card {
  flex: 1 1 260px;
  max-width: 300px;
  background-color: #f9f9f9;
  border: 1px solid var(--blue);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card h3 {
  color: var(--blue);
  text-align: center;
  margin-bottom: 0.3rem;
}

.plan-desc {
  font-size: 0.95rem;
  text-align: center;
  color: #555;
  margin-bottom: 1rem;
}

.plan-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}

.plan-card .price {
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 1rem;
}

.plan-card .price span {
  display: block;
  font-size: 0.85rem;
  color: #777;
  font-weight: normal;
}

.plan-card .btn {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.plan-card .btn:hover {
  background-color: #005bb5;
}


 
  .lwmnmenu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .lwmnmenu nav {
            background-color: #333;
            position: relative;
        }

        .lwmnmenu li {
            position: relative;
        }

        .lwmnmenu a {
            display: block;
            padding: 10px 15px;
            color: white;
            text-decoration: none;
        }

        .lwmnmenu a:hover {
            background-color: #555;
        }

        /* Submenu - Dropping Below */
        .lwmnmenu .submenu {
            display: none;
            background-color: #333;
            min-width: 180px;
        }

        .lwmnmenu li:hover > .submenu {
            display: block;
        }

        /* Responsive Menu */
        .lwmnmenu .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 30px;
            color: white;
            padding: 15px;
        }

        .lwmnmenu .menu-toggle.active {
            display: block;
        }

        .lwmnmenu .menu {
            display: flex;
            flex-direction: row;
        }

        /* Mobile Menu Styles */
        @media screen and (max-width: 768px) {
            .lwmnmenu .menu {
                display: none;
                flex-direction: column;
                width: 100%;
            }

            .lwmnmenu .menu-toggle {
                display: block;
            }

            .lwmnmenu .menu.active {
                display: block;
            }

            .lwmnmenu li {
                width: 100%;
            }

            /* Ensure submenu drops below the parent item */
            .lwmnmenu .submenu {
                position: static;
                display: none;
            }

            .lwmnmenu li:hover > .submenu {
                display: block;
            }
        }