/* =========================================================
   Global variables, resets & base styles
   ========================================================= */
:root {
  --accent: #e21d23;
  --dark: #0e2340;
  --hero-overlay: rgba(6, 11, 25, 0.55);
  --footer-bg: #0b0d23;
  --muted: #555;
  --white: #ffffff;
  --light-gray: #f9f9f9;
  --card-border: #e0e0e0;
}

/* Base reset / typography */
* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  /* kept as requested */
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  background: #fff;
}

/* Utility helpers used across the file */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block
}

.text-center {
  text-align: center
}

.gap-2 {
  gap: .5rem
}

.gap-3 {
  gap: 1rem
}

.mt-4 {
  margin-top: 1.5rem
}

.mb-0 {
  margin-bottom: 0
}

.btn {
  display: inline-block;
  text-decoration: none
}




/* 🔹 Navbar Contact Us Button */
/* 🔹 Navbar Contact Us Button */
/* =========================================================
   🔹 NAVBAR + MODAL FINAL MERGED CSS (FIXED & CLEAN)
   ========================================================= */

/* 🔹 Navbar Base */
/* =========================================
   🔹 FIXED NAVBAR + ALERT BAR FINAL CSS
   ========================================= */

/* Navbar Wrapper */
.about-navbar {
  background: #ffffff !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;     /* ⭐ Fix: for alert bar inside */
  padding: 0;                 /* No extra padding */
}

/* Logo */
.about-navbar .about-logo {
  max-height: 110px;
  width: auto;
}

/* Menu Row */
.about-navbar .navbar-inner {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 6px 0;            /* ⭐ Added for spacing */
}

/* Menu Text */
.about-navbar .nav-link {
  color: #000 !important;
  font-weight: 600 !important;
  margin: 0 10px;
  padding: 0.25rem 0.5rem;
  transition: color 0.3s ease;
}

.about-navbar .nav-link:hover {
  color: #e21d23 !important;
}

/* Dropdown */
.about-navbar .dropdown-menu {
  background-color: #fff;
  border: 1px solid #ddd;
}

.about-navbar .dropdown-item {
  color: #000;
}

.about-navbar .dropdown-item:hover {
  background-color: #e21d23;
  color: #fff;
}

/* Quote Button */
.about-navbar .btn-outline-light {
  border-color: #e21d23 !important;
  color: #e21d23 !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-navbar .btn-outline-light:hover {
  background-color: #e21d23 !important;
  border-color: #e21d23 !important;
  color: #fff !important;
}

/* Center alignment for desktop */
.about-navbar .navbar-nav.align-items-lg-center {
  margin-left: 170px;
}


/* ===============================
   🔥 ALERT BAR FIXED & CLEAN
   =============================== */
.top-alert-bar {
    background: #e21d23;
    height: 35px;
    display: block;   
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
 
}

.top-alert-bar h6 {
    margin: 9px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
}

.top-alert-bar a {
    color: #fff !important;
    text-decoration: none;
    display: inline-block; 
    padding-left: 100%;    
    animation: scroll-text 30s linear infinite;
}

@keyframes scroll-text {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}



/* =========================================================
   🔹 NAVBAR CONTACT BUTTON + MODAL STYLES
   ========================================================= */
.navbarcontactus {
  transition: all 0.3s ease;
  border-radius: 30px;
  padding: 7px 18px;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.4px;
  background: transparent;
}

.navbarcontactus:hover {
  background: linear-gradient(135deg, #e21d23, #f23b40);
  border-color: transparent;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 29, 35, 0.35);
}

/* 🔹 Modal Animation */
.modal.fade .modal-dialog {
  transform: scale(0.92);
  transition: all 0.3s ease-in-out;
}
.modal.fade.show .modal-dialog {
  transform: scale(1);
}


.modal {
  z-index: 10000 !important;
}


/* 🔹 Modal Content (Glassmorphic Look) */
.modal-content {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  border: none;
  overflow: hidden;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🔹 Modal Header */
.modal-header {
  background: linear-gradient(135deg, #e21d23, #b5161b);
  color: #fff;
  border-bottom: none;
  text-align: center;
  justify-content: center;
  padding: 1rem 1.2rem;
}
.modal-header h5 {
  font-weight: 600;
  letter-spacing: 0.5px;
}
.modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.modal-header .btn-close:hover {
  opacity: 1;
}

/* 🔹 Modal Body */
.modal-body {
  padding: 1.6rem 1.8rem;
}

/* 🔹 Form Styling */
.navbarcontactus-form label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}
.navbarcontactus-form .form-control,
.navbarcontactus-form .form-select {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 12px 14px;
  transition: all 0.3s ease;
  background-color: #f9fafb;
  font-size: 0.95rem;
}
.navbarcontactus-form .form-control:focus,
.navbarcontactus-form .form-select:focus {
  border-color: #e21d23;
  box-shadow: 0 0 0 0.2rem rgba(226, 29, 35, 0.25);
  background-color: #fff;
}

/* 🔹 Submit Button */
.navbarcontactus-form button {
  border-radius: 10px;
  padding: 12px 0;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(135deg, #e21d23, #f23b40);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(226, 29, 35, 0.3);
}
.navbarcontactus-form button:hover {
  background: linear-gradient(135deg, #f23b40, #ff6b70);
  box-shadow: 0 6px 14px rgba(226, 29, 35, 0.4);
  transform: translateY(-1px);
}






/* =========================================================
   🔹 RESPONSIVE FIXES (MOBILE & TABLET)
   ========================================================= */

/* Tablets (≤991px) */
@media (max-width: 991px) {
  .about-navbar {
    /*background: rgba(0, 0, 0, 0.7) !important;*/
    padding: 0.8rem 0;
  }

  .about-navbar .navbar-collapse {
    background: rgba(0, 0, 0, 0.9) !important;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
  }

  .about-navbar .navbar-nav {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.8rem !important;
  }

  .about-navbar .nav-link {
    color: #fff !important;
    font-size: 1rem;
  }

  .about-navbar .navbar-nav.align-items-lg-center {
    margin-left: 0 !important;
    left: 0 !important;
    justify-content: center !important;
  }

  .navbar-nav.ms-auto {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.8rem;
  }

  .navbarcontactus,
  .navbar-nav.ms-auto .btn {
    width: 100% !important;
    font-size: 0.95rem !important;
    padding: 8px 0 !important;
  }
}

/* Small Devices (≤576px) */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 1rem !important;
  }

  .modal-body {
    padding: 1.2rem !important;
  }

  .navbarcontactus-form button {
    font-size: 0.95rem !important;
  }

  .about-navbar .navbar-collapse {
    background: rgba(0, 0, 0, 0.92) !important;
    border-radius: 12px !important;
    padding: 1.2rem !important;
  }

  .about-navbar .navbar-nav.align-items-lg-center {
    left: 0 !important;
    margin-left: 0 !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
  }

  .about-navbar .nav-link {
    color: #fff !important;
    display: inline-block;
  }
}


/* =========================================================
   ===== HERO / BANNER (including navbar overlay)
   ========================================================= */
/* ===== HERO SECTION START ===== */



/* 🌟 HERO SECTION */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  background: transparent;
}

/* Background Image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
height: 600px;
  object-fit: cover;
    z-index: -1;
}

/* Overlay */
.hero-overlay {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5); /* var(--hero-overlay) replaced for clarity */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Inner container */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 100px; /* navbar space */
}

/* Left side content */
.hero-left {
  padding: 160px 20px;
  text-align: center !important;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}

.hero-left h1 {
  font-weight: 600;
  letter-spacing: -0.8px;
  font-size: 48px;
  max-width: 800px;
  color: #fff;
  margin: 0 auto !important;
  text-align: center !important;
}

.theme-color {
  color: #e63946;
}

/* Center Buttons Row */
.hero-left .mt-4 {
  display: flex;
  justify-content: center !important;
}

/* Buttons */
.btn-accent {
  background: #e21d23;
  border: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-accent:hover { background: #f54d52;  }

.btn-outline-accent {
  color: #e21d23;
  border: 1.5px solid #e21d23;
  background: transparent;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-outline-accent:hover { background: #e21d23; color: #fff; }
/* Watch video hover */
.watch-video-btn svg {
  transition: transform 0.3s ease;
}

.watch-video-btn:hover svg {
  transform: scale(1.2);
}

/* Right image area */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.hero-card {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Text inside hero */
.hero .row .h4 {
  color: #fff;
  font-weight: 700;
}





.hero-left .mt-4.d-flex {
  justify-content: center !important;
}




/* ------------------------------- */
/* 🌐 RESPONSIVE FIXES */
/* ------------------------------- */

/* Tablets (≤991px) */
@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .hero-inner {
    padding-top: 80px;
  }

  .hero-left {
    padding: 40px 20px 20px;
  }

  .hero-left h1 {
    font-size: 38px;
    max-width: 100%;
  }

  .hero-right {
    padding: 20px;
    margin-top: 20px;
  }

  .hero-card {
    max-width: 80%;
    margin: 0 auto;
  }

  /* ✅ FIX: center buttons on tablets */
  .hero-left .mt-4.d-flex {
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    text-align: center !important;
    gap: 10px !important;
  }

  .hero-left .btn {
    margin: 0 auto !important;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: center;
  }

  .hero-overlay {
    justify-content: center;
  }

  .hero-left {
    order: 1; /* content first */
    text-align: center;
  }

  .hero-right {
    order: 2; /* image second */
    margin-top: 25px;
  }

  .hero-left h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .btn-accent,
  .btn-outline-accent {
    padding: 10px 16px;
    font-size: 15px;
  }

  .hero-card {
    max-width: 90%;
  }

  /* ✅ FIX: center button section properly on mobile */
  .hero-left .mt-4.d-flex {
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .hero-left .btn {
    margin: 0 auto !important;
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .hero-left {
    padding: 30px 15px;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .btn-accent,
  .btn-outline-accent {
    width: 100%;
    max-width: 280px;
    margin: 6px auto;
    display: block;
  }

  .hero-card {
    max-width: 95%;
  }

  /* ✅ Extra fine-tune for small screens */
  .hero-left .mt-4.d-flex {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
  }
}


/* ===== HERO SECTION END ===== */


/* =========================================================
   ===== ABOUT / VIDEO SECTIONS
   ========================================================= */
/* ===== ABOUT SECTION START ===== */


p:empty, p:has(br:only-child) {
  display: none !important;
}



    .about-gray {
        background-color: #F4F4F4;
        padding: 60px 0;
    }

   .about-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent);
     text-align: justify;
    text-align-last: justify;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
     text-align: justify;
    text-align-last: justify;
}

.about-text {
    font-size: 20px;
    color: var(--muted);
    line-height: 1.7;
     text-align: justify;
    text-align-last: justify;
}

    .about-img-wrapper {
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }

    .about-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

    .about-img:hover {
        transform: scale(1.05);
    }

    /* ===== FEATURE ICON STYLE ===== */
    .feature-icon {
        background-color: #e21d23;
        color: #fff;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .feature-icon:hover {
        background-color: #b5181a;
        transform: scale(1.1);
    }




@media (max-width: 767px) {
  .about-img {
    max-width: 90%;
    margin: 0 auto;
    display: block;
  }
  .feature-icon i {
    font-size: 1.5rem;
    color: #ffff;
  }
}



/* ===== FEATURE ICON STYLE ===== */
.feature-icon {
  background-color: #e21d23;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-icon:hover {
  background-color: #b5181a;
  transform: scale(1.1);
}


/* ABOUT - video box */
/* About Section */
.about-video-section {
    background-color: #F4F4F4;
    padding: 25px 0;
}

/* Video Box */
.video-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.video-box img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    color: var(--accent);
    transition: .3s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    color: #000;
}

/* -------------------------------------- */
/*        ABOUT VIDEO CONTENT FIX         */
/* -------------------------------------- */

.about-video-content {
    padding: 5px 10px;
}

/* Justify everything inside */
.about-video-content * {
    text-align: justify !important;

}

/* Paragraphs */
.about-video-content p {
    font-size: 16px;
  text-align: justify;
  margin-bottom: 16px;
   
}





/* divider style used in about */
.about-divider {
  border: 0;
  border-top: 4px solid #252525;
  width: 80%;
  margin: 20px 0;
}


/* 🎯 Mobile layout only */
@media (max-width: 767px) {
  .about-video-section .row {
    display: flex !important;
    flex-direction: column-reverse !important; /* video niche, text upar */
    align-items: center !important;
    text-align: center !important;
  }

  .about-video-section .col-md-6 {
    width: 100% !important;
    text-align: center !important;
  }

  .about-video-section .video-box img {
    max-width: 90% !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .about-video-section .play-btn {
    font-size: 50px !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  /* Optional: spacing adjust */
  .about-video-section .col-md-6:first-child {
    margin-top: 20px !important;
  }
}


/* ===== ABOUT SECTION END ===== */

/* =========================================================
   ===== SECTORS (cards)
   ========================================================= */
/* ===== SECTORS START ===== */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
 text-align: center !important;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 30px;
 text-align: center !important;
}

/* Center buttons and reduce width */
.sector-card .btn-primary {
  background-color: #001d42;
  border-color: #001d42;
  font-weight: 600;
  width: 120px;      
  margin: 15px auto 0; 
  display: block;     
  text-align: center; 
}

.sector-card .btn-primary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

.sector-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color .3s ease;
}

.card-title:hover {
  color: var(--accent);
}

.card-text {
  font-size: 16px;
  color: var(--muted);
  flex-grow: 1;
}

/* buttons used in cards */
.btn-primary {
  background-color: #001d42;
  border-color: #001d42;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}





.latest-blogs-section .section-title {
    margin: 0 auto;
}


/* ================================
   📱 MOBILE (FULLY RESPONSIVE)
================================ */
@media (max-width: 767px) {

  /* 🔹 Center the title & subtitle */
  .section-title,
  .section-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }

  /* 🔹 Ensure the row content is centered */
  .row.mb-4 {
    justify-content: center !important;
    text-align: center !important;
  }

  /* 🔹 Cards alignment */
  .sector-card {
    margin: 0 auto 20px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .sector-card .card-body {
    padding: 1rem !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* 🔹 Icon Center */
  .sector-icon {
    margin: 0 auto 10px !important;
    display: block !important;
  }

  /* 🔹 Text center */
  .card-title,
  .card-text {
    text-align: center !important;
  }

  /* 🔹 Button Center */
  .sector-card .btn-primary {
    width: 120px !important;
    font-size: 0.9rem !important;
    margin: 10px auto 0 !important;
    display: block !important;
  }

  /* 🔹 Reduce title sizes for mobile */
  .section-title {
    font-size: 26px !important;
  }

  .section-subtitle {
    font-size: 15px !important;
  }
}
/* ===== SECTORS END ===== */

/* =========================================================
   ===== SERVICES / SOLUTIONS
   ========================================================= */
/* ===== SERVICES START ===== */
.services-section {
  width: 100%;
  padding: 60px 5%;
  background-color: #f9f9f9;
}

/* top row layout */
.top-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.fa-solid, .fas {
    font-weight: 900;
    margin-top: 6px;
}

.image-column {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.image-column img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.text-column {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.black-heading {
   background: linear-gradient(to right, #040E1F, #113C85);
  padding: 20px;
  border-radius: 12px;
  display: inline-block;
}

.black-heading h4 {
  color: #fff;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

/* info list */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-item {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  display: flex;
  align-items: flex-start;
}

.highlight-dot {
  color: var(--accent);
  font-weight: bold;
  margin-right: 10px;
  font-size: 20px;
  line-height: 1;
}

.info-divider {
  border: 0;
  border-top: 4px solid #252525;
  margin: 10px 0;
}

/* definition & solutions blocks */
.definition-block {
  max-width: 95%;
  margin-left: 50px;
  padding-top: 30px;
}

.definition-block h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.definition-block p {
  /* max-width: 50%; */
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}




.definition-block {
    text-align: center; /* ⭐ Button perfectly center */
}

.definition-block .survey-btn {
    display: inline-block;
    margin-top: 15px;
    background: #e21d23;
    color: #fff;

    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.definition-block .survey-btn:hover {
    background: #b9151a;
    color: #fff;
}

/* ===========================
   BASE STYLES
=========================== */
.solutions-section {
  
  overflow: hidden;
}

.solutions-title {
  font-size: 32px;
  font-weight: 700;
  color: #001d42;
  text-align: center;
}

/* Row for scroll animation */
.solutions-row {
  display: flex;
  gap: 20px;
  animation: scroll-horizontal 25s linear infinite;
  width: max-content;
  margin: 0 auto;
}

/* Each Card */
.solution-card {
  position: relative;
  flex: 0 0 300px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.solution-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.solution-card p {
  font-size: 16px;
  font-weight: 600;
  color: #001d42;
  margin-top: 10px;
  text-align: center;
}

/* Play button styling */
.play-btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  
  border: none;
}

.play-btn i {
  font-size: 24px;
  color: #fff;
}

/* ===========================
   AUTO SCROLL (CSS-ONLY)
=========================== */
@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Duplicate the cards visually for smooth loop */
.solutions-row::after {
  content: "";
  display: inline-block;
  width: 100%;
}

/* ===========================
   MOBILE RESPONSIVE DESIGN
=========================== */
@media (max-width: 767px) {
  .solutions-row {
    animation: none !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 25px !important;
  }

  .solution-card {
    width: 90% !important;
  }

  .solution-card img {
    height: 180px !important;
  }

  .solutions-title {
    font-size: 22px !important;
    text-align: center !important;
  }

  .play-btn {
    width: 45px !important;
    height: 45px !important;
  }

  .solution-card p {
    font-size: 14px !important;
  }
}

/* ===== SERVICES END ===== */

/* =========================================================
   ===== LATEST BLOGS / CAROUSEL CARD STYLES
   ========================================================= */
/* ===== BLOGS START ===== */
.latest-blogs-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.blog-card {
  position: relative;
  width: 350px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-info {
  position: relative;
  bottom: 50px;
  left: 10px;
  width: calc(100% - 20px);
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  box-sizing: border-box;
  max-height: 120px;
  overflow: hidden;
}

.blog-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 5px;
}

.blog-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.read-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.read-more i {
  margin-left: 5px;
  font-size: 14px;
}



/* Responsive blog layout */
@media (max-width: 767px) {
  .carousel-item .d-flex {
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-card {
    width: 45%; /* 2 cards per row */
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .blog-card {
    width: 100%; /* single column on very small screens */
  }
}

/* ===== BLOGS END ===== */

/* =========================================================
   ===== GET A QUOTE (CTA)
   ========================================================= */
/* ===== GET-A-QUOTE START ===== */
.get-a-quote {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.quote-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.quote-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  padding: 0 50px;
  box-sizing: border-box;
}

.quote-left,
.quote-right {
  display: flex;
  align-items: center;
}

.quote-right {
  margin-left:0; 
}

.quote-text {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin: 65px;
  line-height: 1.3;
  max-width: 100%;
  word-wrap: break-word;
}

.quote-btn {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--accent);
  border: none;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.quote-btn:hover {
  background-color: #b5181a;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .quote-text {
    font-size: 24px;
  }

  .quote-overlay {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .get-a-quote {
    height: auto;
    min-height: 280px;
  }

  .quote-overlay {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-align: center;
    padding: 40px 20px;
  }

  .quote-text {
    font-size: 20px;
    line-height: 1.4;
    max-width: 90%;
  }

  .quote-btn {
    font-size: 15px;
    padding: 12px 26px;
  }
}

@media (max-width: 480px) {
  .quote-text {
    font-size: 18px;
  }

  .quote-btn {
    font-size: 14px;
    padding: 10px 22px;
  }
}
/* ===== GET-A-QUOTE END ===== */

/* =========================================================
   ===== CONTACT SECTION
   ========================================================= */
/* ===== CONTACT START ===== */
.contact-section {
  background: var(--light-gray);
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-title {
  text-align: center;
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

.contact-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  overflow: hidden;
}

.contact-left {
  flex: 1 1 50%;
  padding: 40px 50px;
}

.contact-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-heading span {
  color: var(--accent);
}

.contact-subtext {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 15px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--accent);
}

.send-btn {
  background: #0a0a1a;
  color: #fff;
  border: none;
  padding: 12px 20px;
  width: 100%;
  font-weight: 600;
  border-radius: 5px;
  transition: background .3s;
  cursor: pointer;
}

.send-btn:hover {
  background: var(--accent);
}

/* contact info list */
.contact-list {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
  background: transparent;
  transition: transform .3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
}

.contact-label {
  font-size: 14px;
  line-height: 1.3;
}

.contact-label strong {
  font-weight: 700;
  font-size: 13px;
  color: #222;
  display: block;
}

/* map column */
.contact-right {
  flex: 1 1 50%;
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 400px;
  border-radius: 0 12px 12px 0;
  filter: grayscale(.2);
}

/* ===== CONTACT END ===== */

/* =========================================================
   ===== FOOTER CTA (above footer)
   ========================================================= */
/* ===== FOOTER-CTA START ===== */
.footer-cta {
  position: relative;
  width: 100%;
  min-height: 170px;
  margin-bottom: 64px;
  background: linear-gradient(to right, #040E1F, #113C85);
  overflow: hidden;
  padding: 54px;
  box-sizing: border-box;
}

.footer-cta-container {
  position: relative;
  width: 100%;
  
}

.footer-cta-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-cta-text {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  max-width: 95%;
  margin: 0 auto;
  word-wrap: break-word;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 700;
  background-color: #fff;
  border: none;
  border-radius: 6px;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.footer-cta-btn:hover {
  background-color: var(--accent);
  color: #fff;
}

/* ========= TABLET & DESKTOP ========= */
@media (min-width: 768px) {
  .footer-cta-overlay {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 0 50px;
    gap: 0;
  }

  .footer-cta-text {
    font-size: 22px;
    max-width: 70%;
    line-height: 1.4;
  }

  .footer-cta-btn {
    padding: 14px 30px;
    font-size: 16px;
  }
}

/* ========= SMALL SCREENS ========= */
@media (max-width: 767px) {
  .footer-cta {
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .footer-cta-text {
    font-size: 18px;
    line-height: 1.6;
  }

  .footer-cta-btn {
    font-size: 15px;
    padding: 12px 24px;
  }
}

/* ========= EXTRA SMALL (mobile portrait) ========= */
@media (max-width: 480px) {
  .footer-cta-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
  }

  .footer-cta-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}


/* ===== FOOTER-CTA END ===== */

/* =========================================================
   ===== FOOTER
   ========================================================= */
/* ===== FOOTER START ===== */
.footer {
  background-color: var(--footer-bg);
  color: var(--white);
  padding: 40px 60px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}

.footer .row {
  justify-content: space-between;
}

.footer-logo {
  width: 110px;
  display: block;
  margin-bottom: .5rem;
}

.footer-about {
  margin: 10px 0;
  line-height: 1.5;
  max-width: 95%;
  color: rgba(255, 255, 255, .9);
}

.newsletter {
  display: flex;
  max-width: 100%;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 8px 10px;
  border: none;
  border-radius: 4px 0 0 4px;
  width: 100%;
}

.newsletter-btn {
  padding: 8px 15px;
  border: none;
  background-color: #2563eb;
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: #fff;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.footer-links li i {
  color: #2563eb;
  min-width: 20px;
}

.footer-contact li i {
  min-width: 20px;
  margin-right: 10px;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  flex: 1;
}

.footer-links li a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-top: 12px;
}
.footer-social a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
  text-align: center !important;
  background: #fff !important;
  color: var(--footer-bg) !important;
  border-radius: 50% !important;
  margin-right: 8px !important;
  transition: all .3s ease !important;
  vertical-align: middle !important;
  font-size: 15px !important; 
  text-decoration: none !important; 
}

.footer-social a:hover {
  background: #2563eb !important;
  color: #fff !important;
  text-decoration: none !important; 
}

.footer-social a i {
  line-height: 1 !important;
  display: inline-block !important;
  position: relative !important;
  top: 1px !important; 
}

/* ===== FOOTER END ===== */

/* =========================================================
   ===== Responsive Rules (mobile-first adjustments and breakpoints)
   ========================================================= */

/* Small devices: phones */
@media (max-width:599px) {

  /* Hero */
  .hero {
    min-height: 560px;
  }

  .hero-inner {
    padding-top: 120px;
  }

  .hero-left {
    padding: 30px 16px;
  }

  .hero-left h1 {
    font-size: 28px;
    text-align: center;
  }

  .hero-right {
    padding: 20px;
    margin-top: 20px;
  }

  .hero-card {
    max-width: 320px;
    margin: 0 auto;
  }

  /* Navbar: small screens - keep toggler visible and items stacked */
  .custom-navbar .navbar-nav.align-items-lg-center {
    position: static;
    transform: none;
  }

  .custom-navbar .navbar-brand {
    margin-right: auto;
  }

  /* Buttons: ensure no wrapping */
  .btn-accent,
  .btn-outline-accent {
    white-space: nowrap;
  }

  /* About */
  .about-title {
    font-size: 28px;
    text-align: center;
  }

  .about-subtitle {
    font-size: 18px;
    text-align: center;
  }

  .about-text {
    font-size: 16px;
    text-align: center;
  }

  /* Services top row becomes stacked */
  .top-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 0 16px;
  }

  .image-column img {
    max-width: 320px;
  }

  /* Definition block & solutions */
  .definition-block {
    margin-left: 0;
    padding: 20px;
  }

  .definition-block p {
    max-width: 100%;
  }

  /* Solutions stacked */
  .solution-card {
    flex: 1 1 100%;
    height: 200px;
  }

  /* Blogs full width */
  .blog-card {
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
  }

  .blog-info {
    bottom: 40px;
    left: 10px;
    width: calc(100% - 20px);
  }

  /* CTA blocks */
  .footer-cta-overlay,
  .quote-overlay {
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-cta-text,
  .quote-text {
    font-size: 20px;
    max-width: 100%;
  }

  /* Contact */
  .contact-left,
  .contact-right {
    flex: 1 1 100%;
    padding: 24px;
  }

  .contact-right iframe {
    min-height: 260px;
    border-radius: 12px;
    margin-top: 12px;
  }

  /* Footer */
  .footer {
    padding: 30px 18px;
  }
}

/* Medium devices: tablets */
@media (min-width:600px) and (max-width:991px) {
  .hero {
    min-height: 700px;
  }

  .hero-inner {
    padding-top: 120px;
  }

  .hero-left {
    padding: 40px 20px;
  }

  .hero-left h1 {
    font-size: 34px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-right {
    margin-top: 30px;
  }

  .hero-card {
    max-width: 380px;
    margin: 0 auto;
  }

  .top-row {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .definition-block {
    margin-left: 0;
  }

  .solutions-row {
    gap: 16px;
  }

  .solution-card {
    flex: 1 1 100%;
    height: 220px;
  }

  .blog-card {
    width: 100%;
    max-width: 420px;
  }

  .blog-info {
    bottom: 50px;
  }

  .contact-left {
    padding: 32px;
  }

  .contact-right iframe {
    min-height: 320px;
  }
}

/* Large devices: desktops */
@media (min-width:992px) {
  .hero {
    min-height: 520px;
  }

  .hero-inner {
    padding-top: 100px;
  }

  .hero-left h1 {
    font-size: 48px;
    text-align: left;
  }

  .custom-navbar .navbar-nav.align-items-lg-center {
    position: absolute;
    left: 50%;
    transform: translateX(-48%);
  }

  /* definition block layout restoration for desktop */
  .definition-block {
    margin-left: 50px;
  }

  .solutions-section {
    margin-left: 50px;
  }
}

/* Extra small cleanup for overlap issues */
@media (max-width:1200px) {

  /* limit CTA text width on medium screens so buttons don't overlap */
  .footer-cta-text {
    max-width: 70%;
  }

  .footer-cta-overlay {
    padding: 0 30px;
  }
}





















 /* ===== BLOGS -Pages ===== */

    .blog-page-section {
        padding: 60px 20px;
        background: #fff;
    }

    .blog-page-container {
        display: flex;
        gap: 25px;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    /* LEFT SIDEBAR */
    .blog-page-sidebar {
        width: 320px;
        border: 4px solid #000;
        padding: 10px;
        background: #fff;
        min-height: 100%;
    }

    .blog-page-search-box {
        display: flex;
        margin-bottom: 25px;
    }

    .blog-page-search-box input {
        flex: 1;
        padding: 10px;
        border: 2px solid #ccc;
        border-right: none;
        outline: none;
        font-size: 14px;
    }

    .blog-page-search-box button {
        background: #e21d23;
        color: #fff;
        border: none;
        padding: 4px 20px;
        font-weight: 600;
        cursor: pointer;
    }

    .blog-page-list p {
        margin: 10px 0;
        font-size: 14px;
        cursor: pointer;
        color: #000;
    }

    .blog-page-list p:hover {
        color: #e60000;
    }

    .blog-page-list hr {
        border: none;
        border-top: 1px solid #ccc;
        margin: 8px 0;
    }

    /* RIGHT BLOG CONTENT */
    .blog-page-content {

        display: grid;
        grid-template-columns: repeat(2, minmax(300px, 1fr));
        gap: 20px;
    }

    .blog-page-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .blog-page-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .blog-page-info {
        padding: 15px;
    }

    .blog-page-meta {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        color: #777;
        margin-bottom: 10px;
    }

    .blog-page-info h5 {
        font-size: 16px;
        font-weight: 600;
        color: #001d42;
        margin-bottom: 10px;
    }

    .blog-page-info a {
        text-decoration: none;
        color: #e21d23;
        font-weight: 600;
        font-size: 14px;
    }

    .blog-page-info a:hover {
        text-decoration: underline;
    }

    /*  Responsive */
    @media (max-width: 992px) {
        .blog-page-container {
            flex-direction: column;
        }

        .blog-page-sidebar {
            width: 100%;
        }

        .blog-page-content {
            grid-template-columns: 1fr;
        }
    }


    /*  Responsive */


    .blog-card {
        position: relative;
        width: 350px;
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
    }

    .blog-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .blog-info {
        position: relative;
        bottom: 50px;
        left: 10px;
        width: calc(100% - 20px);
        background: #fff;
        padding: 10px 15px;
        border-radius: 8px;
        box-sizing: border-box;
        max-height: 120px;
        overflow: hidden;
    }

    .blog-meta {
        font-size: 13px;
        color: #888;
        margin-bottom: 5px;
    }

    .blog-title {
        font-size: 15px;
        font-weight: 600;
        color: #333;
        margin: 0 0 5px 0;
    }

    .read-more {
        font-size: 13px;
        font-weight: 500;
        color: var(--accent);
        text-decoration: none;
    }

    .read-more i {
        margin-left: 5px;
        font-size: 14px;
    }


    /*  Blog details page  */

    .blog-details-page {
        width: 100%;
        background: #fff;
        padding: 60px 20px;
        display: flex;
        justify-content: center;
    }

    .blog-details-container {
        max-width: 900px;
        width: 100%;
    }

    .blog-details-title {
        font-size: 28px;
        font-weight: 700;
        color: #e21d23;
        margin-bottom: 20px;
    }

   .blog-details-image img {
    width: 100%;
    height: 400px;          
    object-fit: cover;      
    border-radius: 8px;
    display: block;
    margin-bottom: 20px;
}

/* ✅ Tablet and mobile responsiveness */
@media (max-width: 992px) {
    .blog-details-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .blog-details-image img {
        height: 220px;
    }
}


    .blog-details-meta {
        font-size: 14px;
        color: #777;
        margin-bottom: 20px;
        font-family: 'Poppins', sans-serif;
    }

    .blog-details-content p {
        font-size: 16px;
        color: #333;
        line-height: 1.7;
        margin-bottom: 20px;
        font-family: 'Poppins', sans-serif;
    }

    .blog-details-content h4 {
        font-size: 18px;
        font-weight: 700;
        color: #e21d23;
        margin: 25px 0 15px;
    }

    .blog-details-content ul {
        list-style: disc;
        margin-left: 25px;
        margin-bottom: 20px;
    }

    .blog-details-content li {
        margin-bottom: 8px;
        color: #444;
    }

    .blog-details-divider {
        width: 75%;
        height: 4px;
        background-color: #5e5e5e;

        margin-inline: auto;
        border-radius: 3px;
    }

    /*Responsive */
    @media (max-width: 768px) {
        .blog-details-title {
            font-size: 24px;
        }

        .blog-details-content p {
            font-size: 15px;
        }

        .blog-details-content h4 {
            font-size: 17px;
        }
    }

    @media (max-width: 480px) {
        .blog-details-page {
            padding: 40px 15px;
        } 

        .blog-details-title {
            font-size: 22px;
        }

        .blog-details-content p {
            font-size: 14px;
            line-height: 1.6;
        }
    }





/* GLOBAL */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #e21d23;
   text-align: center !important;
  margin-bottom: 20px;
}

/* HERO SECTION */
.alarm-hero {
  padding: 70px 0;
  display: flex;
  align-items: center;
  background: #F5F5F5;
}
.alarm-hero .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero-content {
  width: 48%;
 text-align: justify;
    text-align-last: justify;
}

/* CTA BUTTON */
.quote-btn {
  display: inline-block;
  margin-top: 2px;
  background: #e21d23;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(226, 29, 35, 0.25);
}

.quote-btn:hover {
  background: #b9151a;  
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(226, 29, 35, 0.35);
}

.hero-video {
  width: 48%;
  height: 350px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

/* Thumbnail Image */
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video Hidden Initially */
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #e21d23;
  cursor: pointer;
  transition: .3s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Mobile */
@media(max-width:768px){
  .hero-video{
    width:100%;
    height:260px;
  }
}



@media (max-width: 768px) {

  /* Hero Wrapper Mobile Fix */
  .alarm-hero .container {
    flex-direction: column;
    text-align: center;
  }

  /* Content full width */
  .hero-content {
    width: 100%;
    padding: 0 15px;
  }

  /* Paragraph Responsive Fix */
  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 10px;
    text-align: center;     /* Center text */
  }

  /* Button Responsive Fix */
  .quote-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 22px;
    font-size: 15px;
    border-radius: 10px;

    /* CENTER BUTTON */
    margin-left: auto;
    margin-right: auto;

  margin-bottom: 25px;
  }

}






.why-monitor {
  padding: 70px 0;
}

.center-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Wrapper layout */
.why-monitor-wrapper {
  display: flex;
  align-items: flex-start; 
  margin-top: 30px;  
  justify-content: space-between;
  gap: 40px;
}

/* Image Box */
.why-img img {
  width: 100%;
  max-width: 500px;        
  height: auto;
  object-fit: cover;         
  border-radius: 12px;
  display: block;
}

/* Content */
.why-content {
  flex: 1;
  margin-top: 0;  
 text-align: justify;
    text-align-last: justify;           
}

.why-content .text {
  font-size: 17px;
  line-height: 1.6;
}

/* ---------------------- */
/* MOBILE RESPONSIVE FIX  */
/* ---------------------- */
@media (max-width: 768px) {
  .why-monitor-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    gap: 25px;
  }

  .why-img img {
    max-width: 100%;
  }
}








/* Alarm-key-feature */

.alarm-key-feature {
  padding: 90px 0;
  background: #fafafa;
}

/* Title */
.section-title {
   text-align: center !important;
  color: #e21d23;
  font-size: 34px;
  margin-bottom: 15px;
}

/* Subtext */
.section-subtext {
  max-width: 850px;
  text-align: center;
  margin: 0 auto 50px;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
 text-align: justify;
 
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Feature Cards */
.feature-card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0px 8px 18px rgba(0,0,0,0.06);
  transition: .3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.12);
}

/* Icons */
.icon-box {
  width: 75px;
  height: 75px;
  background: #ffecec;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 36px;
  color: #e21d23;
}

/* Headings */
.feature-card h3 {
  font-size: 20px;
  color: #111;
  margin-bottom: 10px;
}

/* Paragraph */
.feature-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================
   WHY SECURITY GUARD – NEW DESIGN
   ================================ */
/* ================================
   WHY SECURITY GUARD – PREMIUM DESIGN
   ================================ */
.why-security-section {
  background: #f9fbff;
}



.section-subtitle {
  font-size: 17px;
  color: #555;
  max-width: 1074px;
  margin: 10px auto 0;
}

.why-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* SINGLE BOX */
.why-box {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #e4e8f0;
  transition: all 0.3s ease;
  text-align: left;
}

/* ICON */
.why-box i {
  font-size: 36px;
  color: #e21d23;
  margin-bottom: 12px;
  display: inline-block;
}

/* HOVER EFFECT */
.why-box:hover {
  background: #eef5ff;
  border-color: #c9d8ff;
  transform: translateY(-4px);
}

/* TITLE */
.why-box h4 {
  font-size: 19px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 8px;
}

/* PARAGRAPH */
.why-box p {
  font-size: 15px;
  color: #444;
  margin: 0;
}

/* RESPONSIVE SMALL DEVICES */
@media (max-width: 480px) {
  .section-title {
    font-size: 30px;
  }
  .why-box {
    padding: 22px;
  }
  .why-box i {
    font-size: 32px;
  }
}


/* FAQ */
/* FAQ Section */
.faq {
  padding: 70px 0;
  background: #f9fbff;
}


/* FAQ ITEM */
.faq-item {
  margin-bottom: 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e4e8f0;
  overflow: hidden;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  color: #002b5b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  font-size: 22px;
  transition: 0.3s ease;
  color: #e21d23;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 15px;
  color: #444;
  padding: 10px 0 18px;
  margin: 0;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}




   /* MAIN CONTAINER */
      .take-survey {
        padding: 60px 0;
        background: #f7f7f7;
      }

      .take-survey .container {
        max-width: 900px;
        margin: auto;
      }

      /* TITLES */
      .ts-title {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;

      }

      .ts-subtitle {
        text-align: center;
        color: #555;
        margin-bottom: 30px;
      }

      /* BLOCK */
      .ts-block {
        background: #fff;
        padding: 25px 30px;
        border-radius: 14px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        
      }

      /* HEADINGS */
      .ts-heading {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 25px;
        text-align: center;
        color: #e21d23;
      }

      /* QUESTIONS */
      .ts-question {
        margin-bottom: 20px;
      }

      .ts-question p {
        font-weight: 600;
        margin-bottom: 10px;
      }

      .ts-question label {
        display: block;
        margin-bottom: 6px;
        font-size: 15px;
        color: #333;
      }

      .ts-question input[type="text"] {
        width: 100%;
        margin-top: 6px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
      }

      /* FORM GRID */
      .ts-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      /* INPUT STYLE */
      .ts-input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 15px;
      }

      /* SUBMIT BUTTON */
      .ts-submit-btn {
        display: block;
        margin: 25px auto 0;
        background: #e21d23;
        color: #fff;
        border: none;
        padding: 10px 28px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.3s;
        width: 180px;
        text-align: center;
      }

      .ts-submit-btn:hover {
        background: #b9151a;
      }

      /* RESPONSIVE */
      @media (max-width: 600px) {
        .ts-grid {
          grid-template-columns: 1fr;
        }

        .ts-title {
          font-size: 26px;
        }

        .ts-block {
          padding: 20px;
        }
      }


      .thankyou-box {
    display: none;
    text-align: center;
    background: #ffffff;
    padding: 25px;
    margin-top: 25px;
    border-radius: 12px;
    border-left: 5px solid #e21d23;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.thankyou-box h3 {
    color: #e21d23;
    font-size: 26px;
    margin-bottom: 10px;
}

.thankyou-box p {
    font-size: 16px;
    color: #444;
}







/* =========================================================
    ===== END OF FILE
   ========================================================= */