:root {
  /* Color Variables */
  --color-primary: #0E1B56;
  --color-secondary: #F0EDFF;
  --color-text: #7E819B;
  --color-accent: #6E4FF7;
  --color-white: #FFFFFF;
  --color-light-gray: #E1E3E9;
  --color-orange: #F76B4F;
  --color-green: #00CA88;
  --color-white-transparent: #FFFFFF52;
  --color-accent-transparent: #6E4FF729;
  --color-light-bg: #F7F7F7;

  /* Navbar Colors */
  --color-navbar-bg: transparent;
  --color-navbar-link: var(--color-primary);
  --color-navbar-link-active-bg: rgba(255, 255, 255, 0.1);
  --color-navbar-logo-border: #0E1B56;

  /* Menu Colors */
  --color-menu-bg: #1d1d1d;
  --color-menu-bg-alt: #111;
  --color-menu-link: var(--color-primary);
  --color-menu-link-hover: rgba(255, 255, 255, 0.4);
  --color-menu-link-active: var(--color-white);
  --color-menu-link-border: rgba(255, 255, 255, 0.2);
  --color-menu-link-bg: rgba(255, 255, 255, 0.009);
  --color-menu-scrollbar-thumb: rgba(255, 255, 255, 0.2);

  /* Footer Colors */
  --color-footer-text: #6c757d;
  --color-footer-link: #007bff;
  --color-footer-link-hover: #0056b3;

  /* Button Colors */
  --color-btn-bg: #007bff;
  --color-btn-hover-bg: #0e1b56;
  --color-btn-text: var(--color-white);

  /* Background Colors */
  --color-hero-bg: var(--color-white);
  --color-hero-bg2: var(--color-secondary);

  /* Text Colors */
  --color-h1: #343a40;
  --color-p: #6c757d;

  /* Overlay Colors */
  --color-overlay: var(--color-white);
  --color-overlay2: var(--color-secondary);

  /* Layout Variables */
  --color-border-radius: 5px;

  /* Button Sizes */
  --color-btn-padding: 16px 30px 16px 30px;
  --color-btn-width: 200px;
  --color-btn-width-md: 250px;
  --color-btn-width-lg: 300px;
  --color-btn-padding-md: 15px;
  --color-btn-padding-lg: 20px;

  /* Typography */
  --color-h1-font-size: 3em;
  --color-h1-font-size-sm: 2em;
  --color-h1-font-size-lg: 4em;
  --color-p-font-size: 1.5em;
  --color-p-font-size-sm: 1em;
  --color-p-font-size-lg: 1.8em;
}

/* Base Styles */
body {
  background-color: #fff;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1 {
  color: var(--color-btn-hover-bg);
  text-align: center;
  font-size: var(--color-h1-font-size);
  font-weight: 700;
  margin-bottom: 20px;
}
h2{
  color: var(--color-btn-hover-bg);
}

p {
  color: var(--color-p);
  text-align: center;
  font-size: var(--color-p-font-size-sm);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  padding: 0;
}

/* Button Styles */
.btn {
  display: inline-block;
  width: var(--color-btn-width);
  margin: 20px auto;
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  text-align: center;
  padding: var(--color-btn-padding);
  border-radius: var(--color-border-radius);
  text-decoration: none;
  font-size: 18px;
  line-height: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--color-btn-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);

}

.breadcrumb-section {
  position: relative;
  height: 300px;
  background-color: transparent;
  background-image: radial-gradient(at top center, var(--color-hero-bg) 55%, var(--color-hero-bg2) 100%);
  overflow: hidden;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 180px 0px 200px 0px;
}
.breadcrumb-section .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/Background-pattern.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80% auto;
  opacity: 0.4;
  mix-blend-mode: multiply;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  z-index: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: transparent;
    background-image: radial-gradient(at top center, var(--color-hero-bg) 55%, var(--color-hero-bg2) 100%);
    overflow: hidden;
    padding: 180px 0 250px;
    position: relative;
    display: flex;
    align-items: center;
    transition: padding 0.3s ease, height 0.3s ease, background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    -webkit-transition: padding 0.3s ease, height 0.3s ease, background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    -moz-transition: padding 0.3s ease, height 0.3s ease, background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    -ms-transition: padding 0.3s ease, height 0.3s ease, background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    -o-transition: padding 0.3s ease, height 0.3s ease, background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.hero.shrink-hero {
    min-height: 70vh; /* 👈 Adjusted height for shrink effect */
    padding: 180px 0 120px !important; /* 👈 Less space when nav shrinks */
}

.hero .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/Background-pattern.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80% auto;
  opacity: 0.4;
  mix-blend-mode: multiply;
  transition: padding 0.3s ease, height 0.3s ease, background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.hero.shrink-hero .background-overlay {
    height: 70vh; /* 👈 Adjusted height for shrink effect */
}

.ai-banner {
  background: linear-gradient(90deg, #f857a6, #ff5858);
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  margin: 0 auto 20px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  color: white;
}

.arrow-icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  transition: background 0.3s ease;
  margin-left: 8px;
  padding: 2px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon:hover {
  background: rgba(255, 255, 255, 0.3);
}




/* Antivirus Section */
.antivirus-section {
  background-color: var(--color-accent);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  color: #fff;
}

.antivirus-section .background-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url("../img/Background-pattern.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90% auto;
  opacity: 0.25;
  mix-blend-mode: multiply;
}

.antivirus-header {
  margin-bottom: 80px;
}

.antivirus-header h1 {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}

.antivirus-main {
  padding: 25px 0;
  border-top: 1px solid var(--color-white-transparent);
  display: flex;
  align-items: center;
}

.antivirus-main:last-child {
  border-bottom: 1px solid var(--color-white-transparent);
}

.imges-antivirus {
  margin-top: 50px;
}

.imges-antivirus img {
  border-radius: 5px;
  max-width: 100%;
  height: auto;
}

.antivirus-content {
  text-align: left;
  margin: 50px 0;
}

.antivirus-content h3 {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.antivirus-content p {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  line-height: 40px;
  color: #fff;
}

/* Shape Elements */
.shape-top, .shape1-top, .shape2-top, .shape3-top, .shape4-top, .shape5-top, .shape6-top, .shape7-top {
  text-align: center;
  transform: rotate(180deg);
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  top: -1px;
  z-index: 1;
}

.shape-top svg {
  height: 50px;
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  fill: var(--color-accent);
  background: var(--color-light-bg);
}
.shape1-top svg {
  height: 50px;
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  fill: #f8f9fa;
  background: radial-gradient(at top center, var(--color-hero-bg) 55%, var(--color-hero-bg2) 100%);
}
.shape2-top svg {
  height: 50px;
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  fill: #f8f9fa;
  background: var(--color-accent);
}
.shape3-top svg {
  height: 50px;
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  fill: var(--color-accent);
  background: var(--color-light-bg);
}
.shape4-top svg {
  height: 50px;
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  fill: var(--color-white-transparent);
  background: radial-gradient(at top center, var(--color-hero-bg) 55%, var(--color-hero-bg2) 100%);
}
.shape5-top svg {
  height: 50px;
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  fill: var(--color-white);
  background: radial-gradient(at top center, var(--color-hero-bg) 55%, var(--color-hero-bg2) 100%);
}
.shape6-top svg {
  height: 45px;
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  fill: var(--color-white);
  background: radial-gradient(at top center, var(--color-hero-bg) 55%, var(--color-hero-bg2) 100%);
}
.shape7-top svg {
  height: 50px;
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  fill: var(--color-accent);
  background: var(--color-light-bg);
}

.shape-bottom {
  text-align: center;
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  bottom: -1px;
  z-index: 0;
  transform: rotate(180deg);

}

.shape-bottom svg {
  height: 50px;
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  fill: #fff;
}


/* Footer Section */
.footer-section {
  background-color: var(--color-primary);
  padding: 180px 0 20px;
  text-align: center;
  position: relative;
  clip-path: ellipse(145% 90% at 50% 91%);
  color: white;
}

.footer-widget-wrap {
  display: flex;
  position: relative;
  min-height: 1px;
  width: 100%;
  flex-wrap: wrap;
  align-content: flex-start;
  flex-direction: column;
}

.footer-section h1 {
  font-size: 50px;
  font-weight: 300;
  color: #d3d3d3;
  margin-top: -20px;
  text-align: left;
}

.footer-section h1 strong {
  font-weight: bold;
  color: white;
}

.contact-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 30px 0 20px 0;
  width: 100%;
  position: relative;
  text-align: left;
  gap: 20px;
}
.contact-buttons .line-wrap {
  flex: 1 1 auto;
  margin: 0 -50px;
  display: flex;
  align-items: end;

  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, transform 0.4s;
  right: -50px;
  position: relative;
}

.contact-buttons .line-wrap .line {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.contact-buttons .line-wrap .line .line-separator {
  flex: 1;
  border-top: 1px solid #ffffff40;
  margin: 0;
  height: 0;
}

.contact-buttons a {
  display: inline-block;
  width: auto;
  margin: 0 10px;
  padding: 12px 25px;
  border: 1px solid var(--color-accent, #3b41b3);
  border-radius: 10px;
  color: #fff;
  background: transparent;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.3s, color 0.3s, border 0.3s;
  box-shadow: none;
}

.contact-buttons a:hover,
.contact-buttons a:focus {
  background: rgba(255,255,255,0.12);
  color: var(--color-accent, #6E4FF7);
  border-color: var(--color-accent, #6E4FF7);
  outline: none;
}

@media (max-width: 1400px) {
.contact-buttons .line-wrap .line {
  width: 90%;

}
  }
  @media (max-width: 1200px) {
.contact-buttons .line-wrap .line {
  width: 85%;

}
  }

@media (max-width: 900px) {
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 20px 0;
  }
  .contact-buttons .line-wrap {
    margin: 10px 0;
    min-width: 100%;
    right: 0;
  }
  .contact-buttons .line-wrap .line {
    padding: 8px 0;
  }
  .contact-buttons a {
    margin: 8px 0;
    width: 100%;
    text-align: center;
    padding: 12px 18px;
  }

}

@media (max-width: 600px) {
  .contact-buttons {
    gap: 8px;
    margin: 15px 0;
  }
  .contact-buttons .line-wrap {
    margin: 6px 0;
    min-width: 100%;
    right: 0;
  }
  .contact-buttons a {
    font-size: 0.9rem;
    padding: 10px 10px;
  }
}

footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 40px;
}

.nav-links {
  margin: 10px 0 120px;
  text-align: left;
}

.nav-links a {
  margin: 0 15px;
  color: #aaa;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

.cta-circle {
  width: 262px;
  height: 262px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 90px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0px 0px 0px 15px rgba(110, 79, 247, 0.19),
              0px 0px 0px 30px rgba(110, 79, 247, 0.10);
  color: white;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-circle:hover {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0px 0px 0px 15px rgba(255, 255, 255, 0.19),
              0px 0px 0px 30px rgba(255, 255, 255, 0.10);
  transform: scale(1.05);
}

/* Subscribe Section */
.subscribe-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
}
.newsletter-form{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin: 50px 0;
}
.subscribe-section label {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.subscribe-section input[type="email"] {
  padding: 12px;
  width: 250px;
  border: none;
  border-radius: 6px;
  background-color: #1b2161;
  color: white !important;
  transition: all 0.3s ease;
}

.subscribe-section input[type="email"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-accent);
}

.subscribe-section button {
  padding: 12px 20px;
  background: var(--color-accent);
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-section button:hover {
  background: var(--color-btn-bg);
}

/* Footer Bottom */
.footer-bottom {
  align-items: center;
  border-top: 1px solid #222c7d;
  padding-top: 30px;
  font-size: 0.9rem;
  color: #aaa;
}

.logo {
  font-size: 1.5rem;
  color: #a387f9;
  font-weight: bold;
}

.logo span {
  color: white;
}

.social-icons,
.payment-icons {
  display: flex;
  gap: 10px;
}

.icon-circle {
  width: 36px;
  height: 36px;
  border: 1px solid #2a2f87;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.icon-circle:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}


.card p {
  font-size: var(--font-md);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: var(--font-md);
}

.feature-list i {
  color: var(--color-green);
  margin-right: 0.5rem;
}

.btn-primary {
  width: 250px;
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  padding: 16px 0px;
  text-align: center;
  border: none;
  border-radius: var(--color-border-radius);
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--color-btn-hover-bg);
  box-shadow: none;
}

/* Hero Section */
.antivirus-hero {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.antivirus-hero .antivirus-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url("../img/Background-pattern.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90% auto;
  opacity: 0.25;
  mix-blend-mode: multiply;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  color: var(--color-white);
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0.9;
  color: var(--color-white);
}

.description {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-white);
}

.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto;
}

.feature-card {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  color: var(--color-white);
  position: relative;
  z-index: 9;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--color-green);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}
.feature-card p {
  color: var(--color-white);
}

.cta-button {
  background: var(--color-white);
  color: var(--color-primary);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.4,0,0.2,1), color 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}

.cta-button:hover {
  background: var(--color-btn-hover-bg);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: background 0.3s cubic-bezier(0.4,0,0.2,1), color 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* Features Grid */
.security-features {
  padding: 5rem 0;
  background: var(--color-light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 0 auto;
}

.security-features .feature-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.security-features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(110, 79, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.feature_icon {
  width: 40px;
  height: 40px;
  background: rgba(110, 79, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 1.75rem;
  color: var(--color-accent);
}
.feature_trust i {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}
.security-features h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 3rem;
}
.security-features h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.security-features p {
  color: var(--color-text);
  line-height: 1.6;
}

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

  .hero-content h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.25rem;
  }
  .contact-buttons .line-wrap {
  display: none;
}
}
/* Responsive Styles (from previous response) would go here */