
@import url('https://fonts.googleapis.com/css?family=Tajawal:200,300,400,600,700,900');
@import url('https://fonts.googleapis.com/css?family=Roboto:200,300,400,600,700,900');


/* General Styles */
body {
    font-family: Roboto, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h2 {
    color: #006dff; /* Bitdefender blue */
}

.lead {
    color: #5b5b5b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add padding for smaller screens */
}

.card {
    border: 1px solid #006dff;
    margin-bottom: 20px;
    border-radius: 8px; /* Rounded corners for better aesthetics */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow for depth */
    overflow: hidden; /* Ensure no content overflows */
}

.card-title {
    color: #006dff;
    font-size: 1.5rem;
}

.card-body ul {
    list-style-type: none;
    padding-left: 0;
}

.card-body ul li {
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #006dff;
    border-color: #006dff;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #0056cc;
    transform: scale(1.05);
}

.nav-tabs {
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Ensure tabs wrap on smaller screens */
}

.nav-tabs .nav-link {
    color: #006dff;
    font-weight: bold;
}

.nav-tabs .nav-link.active {
    background-color: #fff;
    border-color: #006dff;
    color: #006dff;
}

.product-card img {
    width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
}

        /* Hero Section */
        .hero {
            background-image: url('../imger/bg-24.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 420px 0;
        }


.hero h1 {
    font-size: 2rem; /* Smaller font size for mobile */
    font-weight: bold;
}

.hero p {
    font-size: 1rem; /* Adjust font size for mobile */
}




/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #007bff; /* Primary color */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0056b3; /* Darker shade on hover */
    transform: scale(1.1); /* Slight zoom effect */
}

/* Back to Top Button Progress Circle */
.back-to-top-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.back-to-top-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.back-to-top-progress circle {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
}

.back-to-top-progress .progress-bg {
    stroke: rgba(255, 255, 255, 0.2); /* Background circle */
}

.back-to-top-progress .progress-bar {
    stroke: #000; /* Progress circle */
    stroke-dasharray: 302; /* 2 * π * r (where r = 48) */
    stroke-dashoffset: 302; /* Start with no progress */
    transition: stroke-dashoffset 0.3s ease;
}

/* Icon */
.back-to-top i {
    font-size: 24px;
    position: relative;
    z-index: 1;
}



/* Comparison Table */
.comparison-table {
    margin-top: 50px;
    border: 1px solid #ddd;
    width: 100%;
}

.comparison-table th, .comparison-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

.comparison-table th {
    background-color: #006dff;
    color: white;
}

.comparison-table td {
    background-color: #f7f7f7;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #006dff;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

/* Tooltip */
.tooltip-inner {
    background-color: #006dff;
    color: white;
}

/* Text with Background Shadows */
.hero h3 {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}


    .hero h1 {
        font-size: 4.75rem;
    }


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .card {
        margin-bottom: 15px;
    }

    .comparison-table th, .comparison-table td {
        font-size: 0.8rem;
        padding: 8px;
    }

    footer {
        font-size: 0.9rem;
    }
}


/* General Header Styles */
.main-header {
    background-color: #006dff;
    color: white;
    padding: 10px 0;
    position: sticky; /* Sticky positioning */
    top: 0; /* Stick to the top of the viewport */
    z-index: 1000; /* Ensure it stays above other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow for better visibility */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    position: relative;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.navbar-menu a:hover {
    color: #f7f7f7;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    display: none;
    flex-direction: column;
    min-width: 150px;
    padding: 10px;
}

.dropdown-menu a {
    color: #333;
    padding: 10px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f7f7f7;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Active Language */
.language-option.active {
    font-weight: bold;
    color: #006dff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .navbar-menu {
        flex-direction: column;
        gap: 10px;
    }
}



.features-section {
    background-color: #f7f7f7; /* Light background for contrast */
    padding: 50px 20px;
    text-align: center;
}

.section-title {
    color: #006dff; /* Bitdefender blue */
    font-size: 2rem;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center; /* Center cards in their grid cells */
    align-items: start;
}

.feature-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 300px;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px; /* Icon size */
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}




/* General Header Styles */
.main-header {
    background-color: #006dff;
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    position: relative;
}

/* Language dropdown menu */
.side-menu__item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 1rem;
    color: white;
    background-color: #006dff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for language dropdown */
.side-menu__item:hover {
    background-color: #0056b3;
}

/* Flag icon styles */
.side-menu__item img.icon {
    margin-right: 10px;
    border-radius: 50%;
}

/* Language dropdown options */
.slide-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 200px;
}

/* Show the dropdown when hovering */
.slide:hover .slide-menu {
    display: block;
}

/* Style each language option */
.slide-menu .slide a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    background-color: #f7f7f7;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

/* Hover effect for language options */
.slide-menu .slide a:hover {
    background-color: #e2e6ea;
}

/* Active language style */
.language-option.active {
    font-weight: bold;
    color: #006dff;
}

/* Chevron icon */
.side-menu__angle {
    margin-left: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .navbar-menu {
        flex-direction: column;
        gap: 10px;
    }

    .side-menu__item {
        font-size: 14px;
    }

    .side-menu__item img.icon {
        width: 18px;
        height: 18px;
    }
}










/* General Header Styles */
.main-header {
    background-color: #006dff;
    color: white;
    padding: 10px 0;
    position: sticky; /* Sticky positioning */
    top: 0; /* Stick to the top of the viewport */
    z-index: 1000; /* Ensure it stays above other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow for better visibility */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    position: relative;
}

/* Language dropdown */
.side-menu__item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 1rem;
    color: white;
    background-color: #006dff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for language dropdown */
.side-menu__item:hover {
    background-color: #0056b3;
}

/* Flag icon styles */
.side-menu__item img.icon {
    margin-right: 10px;
    border-radius: 50%;
}

/* Language dropdown options */
.slide-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 200px;
}

/* Show the dropdown when hovering */
.slide:hover .slide-menu {
    display: block;
}

/* Style each language option */
.slide-menu .slide a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    background-color: #f7f7f7;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

/* Hover effect for language options */
.slide-menu .slide a:hover {
    background-color: #e2e6ea;
}

/* Active language style */
.language-option.active {
    font-weight: bold;
    color: #006dff;
}

/* Chevron icon */
.side-menu__angle {
    margin-left: auto;
}

/* Mobile Menu Toggle Button */
.navbar-toggler {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
}

.navbar-toggler i {
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .navbar-menu {
        display: none; /* Hide the menu by default */
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
        background-color: #006dff;
        padding: 10px 0;
    }

    .navbar-menu.active {
        display: flex; /* Show menu when active */
    }

    .navbar-menu li {
        width: 100%;
        text-align: center;
    }

    .navbar-toggler {
        display: block; /* Show the toggle button on mobile */
    }
}


.star-rating .fa {
    color: #FFD700;  /* Yellow color for the stars */
    font-size: 20px;  /* Adjust the size as needed */
}

.star-rating .fa.checked {
    color: #FFD700;  /* Yellow color for filled stars */
}















#bestProt {
    padding: 50px 0;
    background-color: #f9f9f9;
}

#bestProt .section {
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

#bestProt .avTable {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: top;
    width: 48%;
}

#bestProt .chart-container {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: top;
    width: 48%;
    text-align: center;
}

#bestProt .chart-container canvas {
    max-width: 100%;
    height: auto;
}

#bestProt .avTop {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#bestProt .avElement {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

#bestProt .avElement p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

#bestProt .avAverage {
    flex: 1;
    padding: 8px 12px;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
}

#bestProt .avAverage span {
    font-weight: bold;
}

#bestProt .avTest {
    min-width: 60px;
    text-align: right;
    font-size: 16px;
}

#bestProt .lightBlue {
    background-color: #007bff;
}

#bestProt .lightBlueTxt {
    color: #007bff;
}

#bestProt .darkBlue {
    background-color: #0056b3;
}

#bestProt .darkBlueTxt {
    color: #0056b3;
}

#bestProt .others {
    background-color: #6c757d;
}

#bestProt .best {
    font-size: 14px;
    margin-top: 15px;
    color: #555;
}

#bestProt .best b {
    font-weight: bold;
}

#bestProt .overall {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

@media (min-width: 768px) {
    #bestProt .avTable {
        padding: 0 15px;
        margin-bottom: 0;
    }

    #bestProt .chart-container {
        padding: 0 15px;
    }
}






/* Trusted Section Styling */
.trusted-section {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.trusted-section h4 {
  font-size: 1.2rem;
  color: #777;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trusted-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #007bff;
}

.carousel-item img {
  max-height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
}

.carousel-item img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: #007bff;
}

.carousel-indicators button {
  background-color: #007bff;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.carousel-indicators .active {
  background-color: #ffcb2f;
}

@media (max-width: 768px) {
  .trusted-section h2 {
    font-size: 2.2rem;
  }

  .carousel-item img {
    max-height: 100px;
  }
}












