/* Fonts and Colors */
body {
  font-family: 'Oswald', sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f8fa;
  color: #1e3a8a;
}

/* Top Header */
.top-header {
  background: #ff4d6d;
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 0;
}

.top-header .contact-info span {
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-header .social-icons a {
  color: #fff;
  margin-left: 10px;
  transition: 0.3s;
}

.top-header .social-icons a:hover {
  color: #1e3a8a;
}

/* Header */
header {
  background: #1e3a8a;
  color: #fff;
  padding: 15px 0;
  position: relative;
}

.logo a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
}

.logo .logo-highlight {
  color: #ff4d6d;
}

#main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

#main-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

#main-nav ul li a:hover,
#main-nav ul li a.call-btn:hover {
  color: #ff4d6d;
}

#main-nav ul li a.call-btn {
  background: #ff4d6d;
  padding: 7px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 600;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 991px) {
  #main-nav ul {
    flex-direction: column;
    display: none;
    width: 100%;
    background: #1e3a8a;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 0;
  }

  #main-nav ul.active {
    display: flex;
  }

  #main-nav ul li {
    text-align: center;
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .logo {
    margin-bottom: 10px;
  }
}

/* Responsive Font */
@media (max-width: 575px) {
  .logo a {
    font-size: 1.5rem;
  }
}
/* Hero Section */
.hero {
  background: linear-gradient(rgba(30,58,138,0.85), rgba(30,58,138,0.85)), url('images/banner/security-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
  position: relative;
}

.hero-overlay {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  padding: 0 20px;
}

/* Left Column: Form */
.hero-form {
  flex: 1 1 350px;
  background: #fff;
  color: #1e3a8a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-form h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.hero-form input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.hero-form button {
  width: 100%;
  padding: 12px;
  background: #ff4d6d;
  color: #fff;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.hero-form button:hover {
  background: #e04360;
}

/* Right Column: Info */
.hero-info {
  flex: 2 1 500px;
}

.hero-info h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.hero-info p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-info .call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #ff4d6d;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-info .call-btn:hover {
  background: #e04360;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-info {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .hero-info h1 {
    font-size: 2rem;
  }

  .hero-form {
    padding: 20px;
  }

  .hero-form h2 {
    font-size: 1.5rem;
  }
}

/* Why Choose Section */
.why-choose {
  background: #f5f7fa;
  padding: 80px 20px;
  color: #1e3a8a;
}

.why-choose h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #ff4d6d;
}

.why-choose .subheading {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
}

.feature-box i {
  font-size: 2.5rem;
  color: #ff4d6d;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.feature-box p {
  font-size: 0.95rem;
  color: #555;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 991px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .features {
    grid-template-columns: 1fr;
  }

  .why-choose h2 {
    font-size: 1.8rem;
  }

  .why-choose .subheading {
    font-size: 0.95rem;
  }

  .feature-box i {
    font-size: 2rem;
  }
}
/* Products Section */
.products {
  background: #f5f7fa;
  padding: 80px 20px;
  color: #1e3a8a;
}

.products h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #ff4d6d;
}

.products .subheading {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
}

.product-card i {
  font-size: 3rem;
  color: #ff4d6d;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.product-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #1e3a8a;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.product-btn:hover {
  background: #ff4d6d;
  color: #fff;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 991px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .products h2 {
    font-size: 1.8rem;
  }

  .products .subheading {
    font-size: 0.95rem;
  }

  .product-card i {
    font-size: 2.5rem;
  }
}
/* About Us Section */
.about-us {
  background: #f5f7fa;
  padding: 80px 20px;
  color: #1e3a8a;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #ff4d6d;
}

.about-text .highlight {
  color: #1e3a8a;
}

.about-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.6;
}

.about-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #1e3a8a;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #ff4d6d;
  color: #fff;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    margin-top: 30px;
  }

  .about-btn {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}

/* Features Section */
.features-section {
  background: #f5f7fa;
  padding: 80px 20px;
  color: #1e3a8a;
  text-align: center;
}

.features-section .section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #ff4d6d;
}

.features-section .highlight {
  color: #1e3a8a;
}

.features-section .section-subtitle {
  font-size: 1rem;
  margin-bottom: 50px;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box i {
  font-size: 2.5rem;
  color: #ff4d6d;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.feature-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.btn-wrapper {
  margin-top: 40px;
}

.call-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #1e3a8a;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.call-btn:hover {
  background: #ff4d6d;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-section .section-title {
    font-size: 1.8rem;
  }

  .feature-box h3 {
    font-size: 1.1rem;
  }

  .feature-box p {
    font-size: 0.95rem;
  }
}
/* FAQ Section */
.faq-section {
  background: #f5f7fa;
  padding: 70px 20px;
  color: #1e3a8a;
  text-align: center;
}

.faq-section .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ff4d6d;
}

.faq-section .section-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #333;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 25px;
  font-size: 1.1rem;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  background: #1e3a8a;
  color: #fff;
  position: relative;
  transition: background 0.3s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
  background: #f9f9f9;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
  line-height: 1.6;
}

/* Toggle FAQ */
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-section .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .faq-section .section-title {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}
/* Disclaimer Section */
.disclaimer-section {
  background: #ffe6e9; /* light pink accent */
  color: #1e3a8a;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.disclaimer-section a {
  color: #ff4d6d;
  text-decoration: underline;
  transition: 0.3s;
}

.disclaimer-section a:hover {
  color: #1e3a8a;
}

/* Footer Section */
.site-footer {
  background: #1e3a8a;
  color: #fff;
  padding: 60px 20px 30px 20px;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ff4d6d;
}

.footer-col p,
.footer-col a {
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ff4d6d;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
}

/* Full Width Fixed Call Now Button */
.call-now-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff4d6d;
  color: #fff;
  padding: 15px 25px;
  font-size: 1rem;
  border-radius: 50px;
  z-index: 9999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.call-now-btn:hover {
  background: #e63f61;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .disclaimer-section {
    font-size: 0.9rem;
  }

  .call-now-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}
/* Contact Section */
.contact-section {
  background: #f5f9ff;
  padding: 60px 20px;
  font-family: 'Oswald', sans-serif;
  color: #1e3a8a;
}

.contact-container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Contact Info */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2rem;
  color: #ff4d6d;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.contact-info ul li i {
  margin-right: 10px;
  color: #ff4d6d;
}

.contact-info ul li a {
  color: #1e3a8a;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info ul li a:hover {
  color: #ff4d6d;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  border-color: #ff4d6d;
}

.contact-form form button {
  background: #ff4d6d;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form form button:hover {
  background: #e63f61;
}

/* Google Map */
.contact-map {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .contact-info h2 {
    font-size: 1.6rem;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form form button {
    width: 100%;
  }
}

/* CTA Section */
.cta-section {
  background: #1e3a8a;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Oswald', sans-serif;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* CTA Text */
.cta-text h2 {
  font-size: 2rem;
  color: #ff4d6d;
  margin-bottom: 15px;
}

.cta-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.cta-benefits li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.cta-benefits li i {
  color: #ff4d6d;
  margin-right: 10px;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  background: #ff4d6d;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn i {
  margin-right: 8px;
}

.cta-btn:hover {
  background: #e63f61;
}

/* CTA Image */
.cta-image {
  font-size: 8rem;
  color: #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .cta-image {
    font-size: 6rem;
  }
}

@media (max-width: 575px) {
  .cta-text h2 {
    font-size: 1.6rem;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}
