/* Header Style */
.main-header {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* Logo */
.logo-img {
  width: 55px;
  margin-right: 10px;
}

.logo-text {
  font-weight: 600;
  font-size: 20px;
  color: #000;
}

/* Menu Links */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #000 !important;
  padding: 8px 16px;
  border-radius: 10px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #0d1b4c !important;
}

/* Active Home Button */
.active-btn {
  background: #0d1b4c;
  color: #fff !important;
  padding: 8px 22px;
  border-radius: 12px;
}

/* Social Icons */
.social-icons a {
  width: 38px;
  height: 38px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  color: #000;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0d1b4c;
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    margin-top: 15px;
  }

  .active-btn {
    display: inline-block;
  }
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 550px;
  background: #0a1a3c;
  overflow: hidden;
}

/* Background grid effect */
.hero-slide {
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(rgba(10,26,60,0.9), rgba(10,26,60,0.9)),
    url('assets/images/grid.png');
  background-size: cover;
  background-position: center;
}

/* Text */
.text-box h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.text-box h1 span {
  color: yellow;
}

/* Fire Extinguisher Image */
.hero-img {
  max-width: 320px;
  animation: float 3s ease-in-out infinite;
}

/* Fade Animation Extra Smooth */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider,
  .hero-slide {
    height: auto;
    padding: 60px 0;
  }

  .text-box h1 {
    font-size: 32px;
    text-align: center;
  }

  .hero-img {
    margin-top: 30px;
    max-width: 220px;
  }
}
.about-section {
  padding: 80px 0;
  background: #fff;
}

/* Welcome text */
.welcome-text {
  font-size: 14px;
  font-weight: 600;
  color: #0d1b4c;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Title */
.about-title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
  line-height: 1.2;
}

/* Description */
.about-desc {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Image box */
.about-img-box {
  background: #0d1b4c;
  border-radius: 40px;
  padding: 40px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

/* Leaf pattern effect */
.about-img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/images/pattern.png') center/cover no-repeat;
  opacity: 0.2;
}

/* Image */
.about-img-box img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
  .about-title {
    font-size: 34px;
  }

  .about-img-box {
    margin-top: 40px;
  }
}
.why-choose-section {
  padding: 90px 0;
  background: #fff;
}

/* Image Box */
.choose-img-box {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.choose-img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Subtitle */
.choose-subtitle {
  color: #d90429;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Title */
.choose-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Description */
.choose-desc {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* List */
.choose-list {
  padding-left: 20px;
}

.choose-list li {
  font-size: 17px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .choose-title {
    font-size: 32px;
  }
}
.testimonial-section {
  padding: 90px 0;
  background: #fff;
}

/* Title */
.testimonial-title {
  font-size: 42px;
  font-weight: 700;
  color: #1c2434;
}

.title-line {
  width: 60px;
  height: 3px;
  background: #f4b400;
  margin: 10px auto 15px;
  position: relative;
}

.title-line::after {
  content: "";
  width: 10px;
  height: 3px;
  background: #111;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Subtitle */
.testimonial-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Card */
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* User Image */
.testimonial-user img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #f4b400;
  object-fit: cover;
}

/* Content */
.testimonial-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.testimonial-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

.testimonial-content span {
  font-size: 14px;
  color: #777;
}

/* Dots */
.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 4px;
}

.testimonial-dots .active {
  background: #f4b400;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }
}
.blog-section {
  padding: 80px 0;
  background: #fff;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.blog-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.blog-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f4b400;
  margin: 8px auto 0;
}

.blog-subtitle {
  color: #666;
  font-size: 15px;
  margin-bottom: 50px;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}

.blog-card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 15px;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.blog-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
}

.blog-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #f4b400;
  color: #fff;
  border-radius: 25px;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.blog-btn:hover {
  background: #000;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-title {
    font-size: 28px;
  }
}
.services-section {
  background: #0b1b4d;
  padding: 80px 0;
  font-family: Arial, sans-serif;
}

.services-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin-bottom: 40px;
}

.services-header h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.all-services-btn {
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

/* Service Box */
.service-box {
  background: #fff;
  border-radius: 18px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  transition: 0.3s ease;
  cursor: pointer;
}

.service-number {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  min-width: 60px;
}

.service-img img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #0b1b4d;
}

.service-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.service-arrow {
  font-size: 22px;
  font-weight: bold;
  color: #0b1b4d;
}

/* ✅ Hover Effect (Same as Screenshot) */
.service-box:hover {
  background: #102a7a;
}

.service-box:hover h3,
.service-box:hover p,
.service-box:hover .service-number,
.service-box:hover .service-arrow {
  color: #fff;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .service-box {
    flex-direction: column;
    text-align: center;
  }
  .service-number {
    min-width: auto;
  }
  .services-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.footer {
  background: linear-gradient(180deg, #0b1b2b, #000);
  color: #ccc;
  padding: 70px 0 20px;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  text-align: left;
}

.footer-col h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #1e90ff;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.logo-text b {
  color: #1e90ff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.read-more {
  color: #1e90ff;
  text-decoration: none;
  font-size: 14px;
}

/* Useful links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-left: 20px;
}

.footer-links li::before {
   color: #1e90ff;
  position: absolute;
  left: 0;
}

/* Latest news */
.news-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.news-item img {
  width: 55px;
  height: 55px;
  border-radius: 6px;
  object-fit: cover;
}

.news-item p {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

.news-item span {
  font-size: 12px;
  color: #1e90ff;
}

/* Newsletter */
.newsletter-box {
  display: flex;
  border: 1px solid #333;
  margin-bottom: 20px;
}

.newsletter-box input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px;
  color: #fff;
  outline: none;
}

.newsletter-box button {
  background: #1e90ff;
  border: none;
  padding: 10px 15px;
  color: #fff;
  cursor: pointer;
}

.contact-list {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.contact-list li {
  margin-bottom: 10px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.social-icons span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #111;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  margin-left: 8px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.social-icons span:hover {
  background: #1e90ff;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-col ul li {
  list-style: none !important;
}
.footer-links{
  list-style: none;
}