 /* Global Font Styles */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: "Lato", sans-serif;

}
/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
}
.navbar {
    background-color: #1c1c1c;
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    gap: 20px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 16px;
}

.call-btn {
    background-color: #ff3b3b;
    color: white !important;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive - Stack Elements in Small Screens */
@media (max-width: 991px) {
    .navbar .container {
        flex-direction: row;
    }
    
    .navbar-collapse {
        text-align: center;
    }

    .call-btn {
        margin-top: 10px;
        display: block;
        text-align: center;
    }
}

/* About Us Section */
.about-us-section {
    background-color: #fff; /* White background */
    color: #333; /* Dark text color for contrast */
    padding: 80px 0; /* More padding for spacing */
}

.about-us-section h2 {
    font-size: 30px; /* Large heading */
    font-weight: 700; /* Bold heading */
    color: #333; /* Dark text color */
    margin-bottom: 30px; /* Space below the heading */
    text-transform: uppercase; /* Uppercase for emphasis */
    letter-spacing: 2px; /* Add some spacing between letters */
}

.about-us-section p {
    font-size: 1.1rem; /* Slightly larger text for paragraphs */
    color: #555; /* Lighter text color for readability */
    line-height: 1.7; /* Increased line height for clarity */
    margin-bottom: 20px; /* Space between paragraphs */
}

.about-us-section .btn-primary {
    background-color: #f39c12; /* Golden color for buttons */
    color: #fff; /* White text on the button */
    padding: 12px 25px; /* Larger padding for the button */
    font-size: 1.1rem; /* Slightly larger button text */
    border-radius: 50px; /* Rounded button */
    text-transform: uppercase; /* Uppercase text */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-us-section .btn-primary:hover {
    background-color: #e67e22; /* Darker golden color on hover */
    transform: scale(1.1); /* Slightly enlarge the button */
}

.about-us-section .about-us-img {
    position: relative;
    overflow: hidden; /* Hide any overflow */
    border-radius: 15px; /* Rounded corners */
}

.about-us-section .about-us-img img {
    transform: scale(1.1); /* Zoom in the image slightly */
    transition: transform 0.5s ease; /* Smooth transition */
    display: flex;
    margin: 0 auto;
    width: 75%;
}

.about-us-section .about-us-img:hover img {
    transform: scale(1.2); /* Zoom in on hover */
}

.about-us-text {
    position: relative;
    z-index: 1; /* Make sure text is on top of other content */
    padding: 30px;
    background: rgba(0, 0, 0, 0.1); /* Light semi-transparent background */
    border-radius: 15px; /* Rounded corners for text container */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for text container */
}

.about-us-section .row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    /* For smaller screens (mobile/tablet) */
    .about-us-section {
        padding: 60px 0;
    }

    .about-us-section h2 {
        font-size: 2.2rem;
    }

    .about-us-section p {
        font-size: 1rem;
    }

    .about-us-section .btn-primary {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
.btn:hover {
  background-color: red; 
color: #fff;
}
/* Features Section */
.features-section {
    background-color: #f8f8f8; /* Light gray background */
    padding: 80px 0; /* Padding for spacing */
}

.features-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px; /* Space below the title */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-section .feature-item {
    text-align: center; /* Center-align the feature items */
    margin-bottom: 30px; /* Space between features */
}

.features-section .feature-icon {
    background-color: #ff3b3b; /* Light blue background for icons */
    color: #fff;

    padding: 20px;
    font-size: 3rem;
    margin-bottom: 20px; /* Space between icon and title */
    transition: transform 0.3s ease; /* Smooth icon scaling */
}

.features-section .feature-icon:hover {
    transform: scale(1.1); /* Icon grows slightly on hover */
}

.features-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.features-section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    /* For smaller screens */

    .btn-lg{
        font-size: 14px!important;
    }
    .features-section {
        padding: 60px 0;
    }

    .features-section .section-title {
        font-size: 2rem;
    }

    .features-section .feature-icon {
        font-size: 2.5rem;
        padding: 15px;
    }

    .features-section h3 {
        font-size: 1.3rem;
    }
}
/* CTA Section */
.cta-section {
    position: relative;
    background-image: url('../images/logo/cta.jpg');
    background-attachment: fixed; /* Parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Black overlay with 60% opacity */
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-description {
    font-size: 1.1rem;
    color: #f8f8f8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-section .btn-cta {
    background-color: #fff;
    color: #1c1c1c;
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: 600;
}

.cta-section .btn-cta:hover {
    background-color: #ffd700; /* Golden hover */
    color: #000;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
        background-attachment: scroll; /* Disable parallax on mobile for performance */
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-section .btn-cta {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    background-color: #f9f9f9; /* Light gray background */
    padding: 80px 0;
}

.why-choose-us-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.choose-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px;
}

.choose-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-basis: 48%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.choose-item:hover {
    transform: translateY(-10px); /* Lift the item on hover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Enhance shadow on hover */
}

.choose-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.choose-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .choose-list {
        flex-direction: column;
        gap: 20px;
    }

    .choose-item {
        flex-basis: 100%;
    }

    .why-choose-us-section .section-title {
        font-size: 2rem;
    }

    .choose-item h3 {
        font-size: 1.4rem;
    }

    .choose-item p {
        font-size: 1rem;
    }
}

/* Footer Section */
.footer-section {
    background-color: #1c1c1c;
    color: #fff;
    padding: 40px 0 0px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-about, .footer-links, .footer-contact, .footer-social {
    flex-basis: 23%;
}

.footer-about h4, .footer-links h4, .footer-contact h4, .footer-social h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-about p, .footer-contact p {
    font-size: 1rem;
    color: #bbb;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff3b3b;
}

.footer-social ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.footer-social ul li a {
    color: #bbb;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social ul li a:hover {
    color: #06c4fd;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    font-size: 1rem;
    color: #bbb;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about, .footer-links, .footer-contact, .footer-social {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .footer-about h4, .footer-links h4, .footer-contact h4, .footer-social h4 {
        font-size: 1.3rem;
    }

    .footer-links ul li a {
        font-size: 0.9rem;
    }

    .footer-social ul li a {
        font-size: 1.2rem;
    }
}

/* Contact Us Section */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.contact-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-details p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.social-links {
    margin-top: 30px;
    text-align: center;
}

.social-links .social-link {
    font-size: 1.5rem;
    color: #555;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links .social-link:hover {
    color: #06c4fd;
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.contact-form button {
    padding: 12px 20px;
    background-color: #06c4fd;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0495b7;
}

/* Map Section */
.map-section {
    margin-top: 50px;
    text-align: center;
}

.map-section iframe {
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info,
    .contact-form {
        margin-bottom: 30px;
    }

    .contact-info h4, .contact-form h3 {
        font-size: 1.5rem;
    }

    .contact-form .form-control {
        font-size: 0.9rem;
    }

    .contact-form button {
        font-size: 0.9rem;
    }
}
.threat-tracker-section {
  background: #1c1c1c;
  color: #ffffff;
  padding: 80px 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
    text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #cfcfcf;
}

.stats-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-box {
  background-color: #1f2b3d;
  padding: 30px 20px;
  border-radius: 12px;
  width: 260px;
  box-shadow: 0 0 20px rgba(0, 255, 195, 0.1);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
}

.stat-box i {
  font-size: 2.5rem;
  color: #ff3b3b;
  margin-bottom: 15px;
}

.stat-box h3 {
  font-size: 2rem;
  font-weight: 700;
}

.stat-box p {
  margin-top: 10px;
  font-size: 1rem;
  color: #cccccc;
}

@media (max-width: 768px) {
  .stats-boxes {
    flex-direction: column;
    align-items: center;
  }
}


.disclaimer-section {
  background-color: #1c1c1c;
  color: #ccc;
  padding: 60px 20px;
}

.disclaimer-section .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.disclaimer-title {
  color: #ff3b3b;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.disclaimer-title i {
  margin-right: 10px;
}

.disclaimer-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #bbbbbb;
}

.breadcrumb-section {
  background-color: #f0f2f5;
  padding: 15px 0;
}

.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  padding: 0 8px;
  color: #6c757d;
}

.breadcrumb .active {
  color: #6c757d;
}
