* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
}
/* =========================
   HEADER – SECURESOFT
========================= */
.header {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Oswald', sans-serif;
}

/* Top Bar */
.top-bar {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Logo */
.logo {
    font-size: 26px;
    font-weight: 600;
    color: #0a3cff;
}

/* Search */
.search-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f4f6ff;
    padding: 6px;
    border-radius: 30px;
    flex: 1;
    max-width: 520px;
}

.search-container select,
.search-container input {
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
}

.search-container input {
    flex: 1;
}

.search-btn {
    background: linear-gradient(135deg, #0a3cff, #002b8f);
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

/* Contact Icons */
.contact-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hotline {
    font-size: 14px;
    color: #0a3cff;
    white-space: nowrap;
}

.icon {
    font-size: 18px;
    color: #0a3cff;
    cursor: pointer;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #0a3cff;
    cursor: pointer;
}

/* Nav Bar */
.nav-bar {
    background: #0a3cff;
}

.nav-bar ul {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-bar ul li a {
    display: block;
    padding: 14px 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

.nav-bar ul li a:hover {
    text-decoration: underline;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 991px) {

    .search-container {
        order: 3;
        max-width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .nav-bar ul {
        flex-direction: column;
        display: none;
        padding: 10px 20px;
    }

    .nav-bar ul.show {
        display: flex;
    }

    .contact-icons {
        display: none;
    }
}

/* SMALL DEVICES */
@media (max-width: 576px) {

    .logo {
        font-size: 22px;
    }

    .search-btn {
        padding: 8px 14px;
    }
}
/* =========================
   HERO BANNER
========================= */
.hero-banner {
    background: linear-gradient(135deg, #f6f9ff, #eef3ff);
    padding: 90px 30px 0;
}

.hero-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.text-content h1 {
    font-size: 44px;
}

.text-content h2 {
    margin: 15px 0;
    color: #0a3cff;
}

.buy-btn {
    display: inline-block;
    background: #0a3cff;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
}

.discount-strip {
    background: #0a3cff;
    color: #fff;
    text-align: center;
    padding: 12px;
    margin-top: 50px;
}

/* =========================
   ABOUT
========================= */
.about-section {
    padding: 90px 30px;
    background: #fff;
}

/* =========================
   SERVICES
========================= */
.services-section {
    padding: 90px 30px;
    background: #f9fbff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-box {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
}

/* =========================
   CTA
========================= */
.cta-section {
    background: url('../images/logo/cta-bg.jpg') center/cover no-repeat;
    position: relative;
}

.cta-overlay {
    background: rgba(10,31,68,0.85);
    padding: 90px 30px;
}

.cta-content {
    max-width: 700px;
    margin: auto;
    color: #fff;
    text-align: center;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    background: #ffdd57;
    color: #0a1f44;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
}

/* =========================
   RESEARCH
========================= */
/* =========================
   SECURE RESEARCH SECTION
========================= */
.secure-research-section {
    padding: 90px 30px;
    background: #ffffff;
}

.secure-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.secure-image {
    flex: 1;
}

.secure-image img {
    width: 100%;
    max-width: 480px;
}

.secure-content {
    flex: 1;
}

.secure-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.secure-content h3 {
    margin-top: 25px;
    font-size: 20px;
}

.secure-content p {
    font-size: 16px;
    color: #555;
}

.secure-content .link {
    display: inline-block;
    margin-top: 6px;
    color: #0a3cff;
    text-decoration: none;
    font-weight: 500;
}


/* =========================
   PRODUCT
========================= */
/* =========================
   PRODUCT HIGHLIGHT
========================= */
.product-highlight {
    padding: 90px 30px;
    background: #ffffff;
}

.product-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.product-image {
    flex: 1;
}

.product-image img {
    width: 100%;
    max-width: 420px;
}

.product-details {
    flex: 1;
}

.product-title {
    font-size: 34px;
    margin-bottom: 15px;
}

.product-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.product-price {
    font-size: 22px;
    font-weight: 600;
    color: #0a3cff;
    margin-bottom: 20px;
}

.call-now-btn {
    display: inline-block;
    background: #0a3cff;
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
}


/* =========================
   WARRANTY
========================= */
/* =========================
   WARRANTY SECTION
========================= */
.warranty-section {
    padding: 90px 30px;
    background: #0a1f44;
    color: #ffffff;
}

.warranty-container {
    max-width: 800px;
    margin: auto;
}

.warranty-container h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.warranty-container p {
    font-size: 16px;
    color: #d6ddff;
}

.warranty-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.warranty-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

.warranty-list i {
    color: #ffdd57;
    margin-right: 8px;
}

.warranty-note {
    font-size: 13px;
    color: #aab6ff;
}

@media (max-width: 768px) {

    .secure-container,
    .product-container {
        flex-direction: column;
        text-align: center;
    }

    .secure-image img,
    .product-image img {
        margin: auto;
    }
    .search-btn{
        display: none;
    }
}
/* =========================
   FAQ SECTION – FIXED
========================= */
.faq-section {
    padding: 90px 30px;
    background: #f6f9ff;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 22px;
    color: #0a3cff;
}

/* IMPORTANT */
.faq-answer {
    display: none;
    padding: 0 22px 18px;
    font-size: 15px;
    color: #555;
}

/* Open state */
.faq-item.open .faq-answer {
    display: block;
}
/* =========================
   FAQ SUPPORT BUTTON
========================= */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;   /* centers the button */
    padding: 14px 44px;
    background: linear-gradient(135deg, #0a3cff, #002b8f);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 12px 30px rgba(10, 60, 255, 0.35);
    transition: all 0.3s ease;
}

/* Hover effect */
.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(10, 60, 255, 0.45);
}

/* Mobile */
@media (max-width: 768px) {
    .view-more-btn {
        width: 100%;
        max-width: 280px;
    }
}
/* =========================
   FAQ SUPPORT BUTTON
========================= */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;   /* centers the button */
    padding: 14px 44px;
    background: linear-gradient(135deg, #0a3cff, #002b8f);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 12px 30px rgba(10, 60, 255, 0.35);
    transition: all 0.3s ease;
    display: flex;
}

/* Hover effect */
.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(10, 60, 255, 0.45);
}

/* Mobile */
@media (max-width: 768px) {
    .view-more-btn {
        width: 100%;
        max-width: 280px;
    }
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .hero-content,
    .secure-container,
    .product-container {
        flex-direction: column;
        text-align: center;
    }

    .text-content h1 {
        font-size: 34px;
    }
}
/* =========================
   FOOTER – SECURESOFT
========================= */
.site-footer {
    background: #0a0a0a;
    color: #cfcfcf;
    padding: 50px 20px 25px;
    font-size: 14px;
}

/* Footer Links */
.site-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.site-footer .footer-links a {
    color: #ffdd57;
    text-decoration: none;
    font-weight: 500;
}

.site-footer .footer-links a:hover {
    text-decoration: underline;
}

/* Disclaimer */
.footer-disclaimer {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    line-height: 1.7;
    color: #bdbdbd;
    font-size: 13px;
}

.footer-disclaimer strong {
    color: #ffffff;
}

/* Copyright */
.footer-copy {
    margin-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #9a9a9a;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .site-footer {
        padding-bottom: 90px; /* space for fixed button */
    }

    .site-footer .footer-links {
        gap: 15px;
    }
}
/* =========================
   FIXED CALL NOW BUTTON
========================= */
.fixed-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #0a3cff, #002b8f);
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 30px rgba(10, 60, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.fixed-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(10, 60, 255, 0.55);
}

/* Mobile – full width */
@media (max-width: 768px) {
    .fixed-call-btn {
        left: 15px;
        right: 15px;
        bottom: 15px;
        justify-content: center;
        border-radius: 14px;
    }
}
/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    padding: 90px 30px;
    background: #f6f9ff;
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-section p {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #dce3ff;
    font-size: 15px;
    margin-bottom: 15px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0a3cff;
}

.contact-form button {
    width: 100%;
    background: linear-gradient(135deg, #0a3cff, #002b8f);
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
}

/* Contact Details */
.contact-details {
    flex: 1;
    min-width: 260px;
}

.contact-details p {
    text-align: left;
    font-size: 15px;
    color: #333;
    margin-bottom: 14px;
}

.contact-details i {
    margin-right: 8px;
}

/* Social Icons */
.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #0a3cff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease;
    padding-left: 10px;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .contact-section {
        padding: 70px 20px;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-details p {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}