/********** Template CSS **********/
:root {
    --primary: #0f2f3a;    /* Dark teal – main logo color */
    --secondary: #f4a024;  /* Orange / yellow – logo highlight */
    --light: #f3f7f9;      /* Soft light background */
    --dark: #0b1f26;       /* Dark navy/teal for text */
}

/* Icons */
[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}

/* Typography */
h1, h2, .font-weight-bold {
    font-weight: 700 !important;
}

h3, h4, .font-weight-semi-bold {
    font-weight: 600 !important;
}

h5, h6, .font-weight-medium {
    font-weight: 500 !important;
}

/* Buttons */
.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .4s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #000;
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #000;
}

.btn-secondary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Button sizes */
.btn-square { width: 36px; height: 36px; }
.btn-sm-square { width: 28px; height: 28px; }
.btn-lg-square { width: 46px; height: 46px; }

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    text-align: center;
}

/* Back to top */
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/* Navbar */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    transition: .3s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary);
}

/* Navbar underline (desktop) */
@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        content: "";
        position: absolute;
        width: 0;
        height: 4px;
        bottom: 0;
        left: 50%;
        background: var(--secondary);
        transition: .3s ease;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

/* Carousel */
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent; /* FIXED */
    z-index: 2;
    backdrop-filter: blur(5px);
}
.carousel-indicators button {
    background-color: rgba(255,255,255,0.6);
}
.carousel-indicators .active {
    background-color: #fff;
}


.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    filter: invert(1);
}

.carousel-indicators {
    align-items: flex-end;
}

.carousel-indicators [data-bs-target] {
    width: 6px;
    height: 25px;
    background-color: var(--secondary);
}

.carousel-indicators .active {
    height: 45px;
}

/* Hero overlay */
#header-carousel .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(15, 47, 58, 0.75),
        rgba(15, 47, 58, 0.45)
    );
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Hero text */
#header-carousel h5 {
    color: var(--secondary);
    letter-spacing: 3px;
    font-weight: 600;
}

#header-carousel h1 {
    color: #fff;
    text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

/* Hero buttons */
#header-carousel .btn-primary {
    background-color: var(--secondary);
    color: #000;
    border: none;
    box-shadow: 0 10px 30px rgba(244,160,36,0.35);
}

#header-carousel .btn-secondary {
    background-color: rgba(255,255,255,0.08);
    border: 2px solid var(--secondary);
    color: #fff;
}

#header-carousel .btn-secondary:hover {
    background-color: var(--secondary);
    color: #000;
}

/* Services */
.service-item div {
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: .4s ease;
}

.service-item div::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 2px 2px 0 0;
    background: var(--primary);
    transition: .4s;
    z-index: -1;
}

.service-item div:hover::after {
    width: 100%;
}

.service-item:hover div {
    transform: translateY(-5px);
}

.service-item * {
    transition: .4s;
}

.service-item:hover * {
    color: var(--light) !important;
}

/* Offer section */
.bg-offer {
    background: linear-gradient(
        rgba(15,47,58,.6),
        rgba(15,47,58,.6)
    ), url(../img/carousel-2.jpg) no-repeat center;
    background-size: cover;
}

/* Testimonials */
.testimonial-carousel .owl-dots {
    height: 45px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    width: 5px;
    height: 25px;
    background: #ddd;
    margin: 0 5px;
    transition: .3s;
}

.testimonial-carousel .owl-dot.active {
    height: 45px;
    background: var(--secondary);
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #fff !important;
}

/* Blog date */
.blog-date {
    position: absolute;
    width: 90px;
    height: 65px;
    top: 75px;
    left: -25px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.blog-date::after {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    border: 13px solid;
    border-color: transparent var(--secondary) var(--secondary) transparent;
}

/* Navbar spacing fix */
.navbar-nav .nav-item:last-child {
    margin-right: 20px;
}

/* Call button */
.bg-danger {
    background-color: var(--secondary) !important;
    padding-left: 25px !important;
}
/* Modern Carousel Styling */
.carousel-caption {
    backdrop-filter: blur(5px);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.6);
}

.carousel-indicators .active {
    background-color: #fff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1); /* makes arrows white */
}

@media (max-width: 768px) {
    .carousel-caption {
        padding-left: 20px;
    }
    .carousel-caption h1 {
        font-size: 2rem;
    }
    .carousel-caption h5 {
        font-size: 1rem;
    }
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}
.slider-arrow {
    width: 50px;          /* bigger size */
    height: 50px;
    background: rgba(255, 165, 0, 0.8); /* semi-transparent orange */
    border-radius: 50%;   /* circular arrows */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;      /* arrow icon size */
    color: #fff;          /* arrow color */
    cursor: pointer;
    transition: 0.3s;
}

.slider-arrow:hover {
    background: rgba(255, 165, 0, 1); /* solid color on hover */
    transform: scale(1.1);
}
.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.slider-dots button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.6);
    border: none;
    transition: 0.3s;
}

.slider-dots button.active,
.slider-dots button:hover {
    background: rgba(255, 165, 0, 1);
    transform: scale(1.3);
}
.slider-arrow, .slider-dots button {
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}



/* Center hero content vertically */
#header-carousel .carousel-caption {
    display: flex;
    align-items: center;       /* vertical center */
    justify-content: flex-start; /* keep text on left */
    text-align: left;
}

/* Optional: limit width so text looks balanced */
#header-carousel .carousel-caption .container {
    max-width: 1200px;
}
@media (max-width: 768px) {
    #header-carousel .carousel-caption {
        justify-content: center;
        text-align: center;
    }
}

/* Quote Section */
.quote-section {
    padding: 80px 20px;
    background: #f3f7f9;
    display: flex;
    justify-content: center;
}

.quote-box {
    background: #fff;
    max-width: 520px;
    width: 100%;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.quote-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f2f3a;
}

.quote-box p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

/* Form */
.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f4a024;
    outline: none;
    box-shadow: 0 0 0 3px rgba(244,160,36,0.15);
}

/* Button */
.quote-btn {
    width: 100%;
    padding: 15px;
    background: #f4a024;
    color: #000;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.quote-btn:hover {
    background: #0f2f3a;
    color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
    .quote-box {
        padding: 30px 20px;
    }
    .quote-box h2 {
        font-size: 26px;
    }
}
/* ===== GET QUOTE POPUP ===== */
.quote-modal {
    position: fixed;
    inset: 0;
    background: rgba(15,47,58,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

.quote-modal.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal-box {
    background: #fff;
    width: 100%;
    max-width: 520px;
    padding: 35px;
    border-radius: 14px;
    position: relative;
    animation: popupScale 0.3s ease;
}

@keyframes popupScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.quote-modal-box h2 {
    color: #0f2f3a;
    font-size: 28px;
    margin-bottom: 5px;
}

.quote-modal-box p {
    color: #666;
    margin-bottom: 20px;
}

.quote-modal-box input,
.quote-modal-box select,
.quote-modal-box textarea {
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.quote-modal-box input:focus,
.quote-modal-box select:focus,
.quote-modal-box textarea:focus {
    outline: none;
    border-color: #f4a024;
    box-shadow: 0 0 0 3px rgba(244,160,36,0.15);
}

.quote-submit {
    width: 100%;
    padding: 14px;
    background: #f4a024;
    color: #000;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.quote-submit:hover {
    background: #0f2f3a;
    color: #fff;
}

/* Close Button */
.quote-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.quote-close:hover {
    color: #000;
}

/* Mobile */
@media (max-width: 576px) {
    .quote-modal-box {
        padding: 25px 20px;
    }
}
/* Contact Us button style */
.contact-btn {
    border: 2px solid #f59c1a;  /* logo yellow border */
    color: #fff;                /* text color */
    background: transparent;    /* transparent background */
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.contact-btn:hover {
    background-color: #f59c1a; /* yellow background on hover */
    color: #000;                /* text color on hover */
    border-color: #f59c1a;     /* keep border yellow */
}
/* Apply same font to entire website */
body, h1, h2, h3, h4, h5, h6, p, a, li, span, div, input, button {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   
    line-height: 1.6;   /* Comfortable spacing */
  
}

/* ===== Premium About Section ===== */
.about-premium {
  background: #f9fbff;
  padding-bottom: 100px; /* premium spacing */
}

.about-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-box:hover img {
  transform: scale(1.05);
}

.about-badge {
  background: transparent;
  padding: 0;
  color: #0b1c22;
  font-weight: 800;
  letter-spacing: 3px;
}

.about-badge::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 35px;
  height: 3px;
  background: var(--secondary);
  border-radius: 5px;
}
.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.15),
    inset 0 0 0 1px rgba(255,255,255,0.4);
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.04);
}
.about-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245,166,35,0.12),
    rgba(0,0,0,0.35)
  );
  pointer-events: none;
}
.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.15;
}


.about-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0b1c22;
}

.about-highlight {
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 18px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  max-width: 95%;
}
.mission-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-6px);
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  margin-bottom: 15px;
}

.mission-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .about-title {
    font-size: 2rem;
  }

  .about-image-wrapper {
    max-width: 100%;
  }

  .about-text {
    max-width: 100%;
  }
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
}

.feature-item i {
  color: var(--secondary);
  font-size: 1.1rem;
}
@media (max-width: 575px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}


.about-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0b132b;
  line-height: 1.3;
  margin-bottom: 15px;
}

.about-highlight {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 12px;
}

.about-text {
  color: #6c757d;
  line-height: 1.8;
}

/* Cards */
.about-card {
  height: 170px;
  border-radius: 18px;
  color: #fff;
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.about-card i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-card h4 {
  margin: 0;
  font-weight: 700;
}

.about-card span {
  font-size: 0.95rem;
  opacity: 0.9;
}

.about-card.blue {
  background: linear-gradient(135deg, #0d6efd, #2f80ff);
}

.about-card.red {
  background: linear-gradient(135deg, #ff4d4f, #ff6a6a);
}

.about-card:hover {
  transform: translateY(-8px);
}



.hero-header {
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 20, 24, 0.92),
    rgba(7, 20, 24, 0.65),
    rgba(7, 20, 24, 0.35)
  );
  z-index: 1;
}

.hero-header .container {
  position: relative;
  z-index: 2;
}
.hero-header h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.hero-header p {
  color: rgba(255,255,255,0.85);
  letter-spacing: 3px;
  font-weight: 600;
}
.btn-hero {
  background: linear-gradient(135deg, #f5a623, #ffb347);
  color: #000;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(245,166,35,0.45);
  border: none;
  transition: all 0.4s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(245,166,35,0.6);
}
.topbar-phone {
  background: linear-gradient(135deg, #f5a623, #e69500);
  color: #000;
  font-weight: 700;
}
.navbar-nav .nav-link {
  font-weight: 600;
  color: #0b1c22;
  position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #f5a623;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: #f5a623;
  left: 50%;
  bottom: -8px;
  transition: 0.4s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}
.navbar {
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.hero-header {
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7,20,24,0.95),
    rgba(7,20,24,0.7),
    rgba(7,20,24,0.4)
  );
  z-index: 1;
}

.hero-header .container {
  position: relative;
  z-index: 2;
}
.camera-scan {
  position: absolute;
  right: 8%;
  bottom: 20%;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(245,166,35,0.5);
  border-radius: 50%;
  animation: pulse 3s infinite;
}

.camera-scan::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(245,166,35,0.4),
    transparent 60%
  );
  animation: scan 4s linear infinite;
}

@keyframes scan {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,166,35,0.5); }
  70% { box-shadow: 0 0 0 40px rgba(245,166,35,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,166,35,0); }
}
.trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.trust-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-hero {
  background: linear-gradient(135deg, #f5a623, #ffb347);
  color: #000;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 12px 35px rgba(245,166,35,0.5);
  transition: 0.4s;
}

.btn-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(245,166,35,0.7);
}
#header-carousel {
  position: relative;
}
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--secondary);
  font-size: 2.2rem;
  z-index: 10;              /* 🔥 FIX */
  animation: bounce 2s infinite;
  cursor: pointer;
}


@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(12px);
  }
}
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 15px;
    font-size: 1.6rem;
  }
}

/* ===== About Premium ===== */
.about-premium {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(245,166,35,0.15), transparent 40%),
    radial-gradient(circle at bottom right, rgba(15,47,58,0.25), transparent 45%),
    linear-gradient(180deg, #ffffff, #f6f9fc);
  overflow: hidden;
}

/* subtle pattern */
.about-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.3;
  pointer-events: none;
}


.about-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0b1c22;
}

.about-highlight {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.1rem;
}

.about-text {
  color: #555;
  line-height: 1.8;
}


.mv-box {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(245,166,35,0.25);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.mv-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(245,166,35,0.25);
  border-color: var(--secondary);
}

.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #ffb347);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(245,166,35,0.45);
  margin-bottom: 15px;
}

.mv-box h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b1c22;
}

.mv-box p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
.about-img-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0,0,0,0.18);
  position: relative;
}

.about-img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.45)
  );
  z-index: 1;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-box:hover img {
  transform: scale(1.07);
}
.about-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.about-card i {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.about-card.blue i {
  color: #4facfe;
}

.about-card.red i {
  color: var(--secondary);
}
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }
  .about-img-box {
    margin-bottom: 30px;
  }
}
.services-premium {
  background: #f8fafc;
}

/* Section heading */
.section-badge {
    display: inline-block;
    background: #ffb703;
    color: #000;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0b1c22;
}

.section-subtitle {
  max-width: 650px;
  margin: 12px auto 0;
  color: #6c757d;
}

/* Service cards */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Icon */
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #f5a623, #ff8c00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(245,166,35,0.45);
}

/* Text */
.service-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #0b1c22;
}

.service-card p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
}
/* Services Premium */
.services-premium {
  background: #f8fafc;
}



.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
}

.section-subtitle {
  max-width: 720px;
  margin: 10px auto 0;
  color: #64748b;
  font-size: 17px;
}

.service-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

.service-icon i {
  font-size: 36px;
  color: #fff;
}

.service-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0f172a;
}

.service-card p {
  font-size: 15.5px;
  color: #64748b;
  line-height: 1.7;
}
/* WHY CHOOSE US */
.why-choose-us {
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
}

/* Wrapper */
.choose-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Card */
.choose-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #ffffff;
  padding: 26px 28px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Icon */
.choose-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5a623, #ffb347);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(245, 166, 35, 0.45);
}

.choose-icon i {
  font-size: 26px;
  color: #111;
}

/* Text */
.choose-content h5 {
  margin-bottom: 6px;
  font-weight: 700;
  color: #0b1f26;
}

.choose-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #6c757d;
}

/* Image */
.choose-image {
  max-width: 460px;
  margin: auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.choose-image img {
  width: 100%;
  transition: transform 0.6s ease;
}

.choose-image:hover img {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 991px) {
  .choose-image {
    margin-top: 35px;
  }
}
.why-choose-us {
  padding: 80px 20px;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: #ffb703;
  color: #000;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: #64748b;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb703, #ff8800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 28px;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}
.faq-premium {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: #ffb703;
  color: #000;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.faq-header p {
  font-size: 16px;
  color: #64748b;
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #f8fafc;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 22px;
  font-weight: 700;
  color: #ffb703;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 28px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}
.faq-section {
  background: #f9fafc;
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 24px;
  color: #f9a826;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
}

.faq-answer p {
  margin: 15px 0 25px;
  color: #555;
  line-height: 1.7;
}

/* 🔥 IMPORTANT FIX */
.faq-item.active .faq-answer {
  max-height: 500px; /* enough for last FAQ */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.clients-section {
  background: #ffffff;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

.client-box {
  background: #f9fafc;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #111;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.client-box:hover {
  transform: translateY(-6px);
  background: #f9a826;
  color: #fff;
}
.clients-section {
  background: #ffffff;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  align-items: center;
}

.client-logo {
  background: #f9fafc;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

.client-logo img {
  max-height: 70px;
  max-width: 100%;
  
  opacity: 0.75;
  transition: all 0.35s ease;
}

.client-logo:hover {
  transform: translateY(-6px);
}

.client-logo:hover img {

  opacity: 1;
}
/* CLIENTS SECTION */
.clients-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: clients-scroll 30s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.client-logo {
  background: #ffffff;
  padding: 20px 35px;
  border-radius: 18px;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* Animation */
@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.hero-header {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
}

/* Darker overlay with slight gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-header .container {
    position: relative;
    z-index: 2;
}

.hero-header h1 {
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
}

.breadcrumb a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffd700; /* subtle gold hover */
    text-decoration: underline;
}

.corporate-impact {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0 70px;
}

/* Header */
.impact-header {
    max-width: 720px;
    margin: 0 auto 50px;
}

.impact-eyebrow {
    display: inline-block;
    background: #ffb703;
    color: #000;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.impact-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f2a44;
    margin-bottom: 12px;
}

.impact-header p {
    font-size: 1rem;
    color: #64748b;
}

/* Metrics */
.metrics-row {
    position: relative;
}

.metric.corporate {
    text-align: center;
    padding: 16px 10px;
}

.metric-number,
.metric-suffix,
.metric-currency {
    font-size: 2rem;
    font-weight: 700;
    color: #0f2a44;
}

.metric-suffix,
.metric-currency {
    font-size: 1.6rem;
    font-weight: 600;
}

.metric.corporate p {
    margin-top: 6px;
    font-size: 0.95rem;
    color: #64748b;
}

/* Center emphasis */
.metric.corporate.featured .metric-number,
.metric.corporate.featured .metric-suffix,
.metric.corporate.featured .metric-currency {
    color: #f59e0b;
}

/* Vertical separators */
@media (min-width: 768px) {
    .metric.corporate {
        border-right: 1px solid #e5e7eb;
    }

    .metric.corporate.featured {
        border-left: 1px solid #e5e7eb;
        border-right: 1px solid #e5e7eb;
    }

    .metric.corporate:last-child {
        border-right: none;
    }
}
/* Testimonial Section */
.testimonial-section {
    background: #f8fafc;
    padding: 90px 0;
}

/* Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #f59e0b; /* logo accent */
    display: inline-block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #0f2a44;
    margin-bottom: 12px;
}

.section-header p {
    color: #64748b;
    font-size: 1rem;
}
:root {
  --navy: #0F2A44;
  --orange: #F7941D;
  --text-dark: #1E293B;
  --text-muted: #64748B;
}

.corp-services {
  padding: 60px 0;
  background: #f8fafc;
}

.corp-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 14px;
  padding: 34px 22px;
  box-shadow: 0 15px 40px rgba(15, 42, 68, 0.08);
  border: 1px solid rgba(15, 42, 68, 0.06);
}

.corp-item {
  flex: 1;
  text-align: center;
  padding: 12px 15px;
}

.corp-item i {
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 14px;
  transition: all 0.35s ease;
}

.corp-item h6 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-size: 15px;
}

.corp-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Separator */
.corp-separator {
  width: 1px;
  height: 60px;
  background: rgba(15, 42, 68, 0.12);
}

/* Premium hover (very subtle) */
.corp-item:hover i {
  color: var(--orange);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .corp-box {
    flex-wrap: wrap;
    gap: 28px;
  }
  .corp-separator {
    display: none;
  }
}
.footer-area {
  background: #0b1625;
  padding: 60px 0 25px;
  color: #b9c3cf;
}

.footer-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b9c3cf;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f7941d;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #12223a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.35s ease;
}

.footer-social a:hover {
  background: #f7941d;
  color: #0b1625;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(247,148,29,0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 35px;
  padding-top: 18px;
  text-align: center;
  font-size: 14px;
}
.contact-ultra {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0a1424, #0e1b30);
  overflow: hidden;
}

/* CCTV background image */
.contact-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(10,20,36,.95), rgba(10,20,36,.88)),
    url('../img/cctv-bg.png') center right / 520px no-repeat;
  opacity: 0.6;
  z-index: 0;
}

.contact-ultra .container {
  z-index: 2;
}

.contact-pill {
  display: inline-block;
  background: rgba(247,148,29,0.15);
  color: #f7941d;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-title {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.contact-subtitle {
  color: #cbd5e1;
  max-width: 650px;
  margin: 10px auto 0;
}

/* GLASS CARD */
.contact-glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(14px);
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  transition: 0.3s ease;
}

.contact-item.active,
.contact-item:hover {
  background: rgba(247,148,29,0.15);
}

.contact-item .icon {
  width: 46px;
  height: 46px;
  background: rgba(247,148,29,0.2);
  color: #f7941d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-item h6 {
  color: #fff;
  margin: 0;
  font-weight: 600;
}

.contact-item p {
  color: #cbd5e1;
  margin: 0;
}

/* FORM */
.contact-form-box {
  background: #fff;
  border-radius: 22px;
  padding: 50px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
}

.contact-form-box h3 {
  font-weight: 700;
  color: #0a1424;
  margin-bottom: 30px;
}

.contact-form-box .form-control {
  border-radius: 14px;
  padding: 14px;
  border: 1px solid #e5e7eb;
}

.contact-form-box .form-control:focus {
  border-color: #f7941d;
  box-shadow: 0 0 0 0.15rem rgba(247,148,29,.35);
}

.btn-submit {
  background: #f7941d;
  color: #0a1424;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: #ffae42;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(247,148,29,0.5);
}
.company-history-premium {
  background: #0b1c2d;
  color: #dce3ea;
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffffff;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  border-radius: 30px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}

.section-subtitle {
  max-width: 650px;
  margin: 10px auto 0;
  color: #b9c6d3;
}

.history-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #d0dae4;
}

.history-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.stat-card h3 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 14px;
  color: #b9c6d3;
}
/* ===== Footer ===== */
.footer-area {
  position: relative;
  background: linear-gradient(180deg, #070b12 0%, #020408 100%);
  padding-top: 70px;
 
  box-shadow: inset 0 20px 40px rgba(0,0,0,0.7);
}


/* Strong visual separator from content */
.footer-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--secondary),
    transparent
  );
}

/* ===== Core Values Section ===== */
.core-values-section {
  padding: 90px 0;
  background: #f8fafc;
}

.section-header .section-badge {
  display: inline-block;
  background: rgba(255, 170, 0, 0.15);
  color: var(--secondary);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #0b1c2d;
}

.section-subtitle {
  max-width: 600px;
  margin: 10px auto 0;
  color: #6b7280;
  font-size: 16px;
}

/* Value Card */
.value-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--secondary), #ff8c00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  font-size: 30px;
  color: #fff;
}

.value-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b1c2d;
}

.value-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}
/* ===== Premium Director Section ===== */
.director-premium {
  padding: 110px 0;
  background: radial-gradient(circle at top, #f5f9ff, #eaf0f7);
}

.director-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #0b1c2d;
  margin-bottom: 10px;
}

.director-header p {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 17px;
  color: #6b7280;
}

/* Card */
.director-premium-card {
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  padding: 55px 45px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(11,28,45,0.15);
  position: relative;
  transition: all 0.4s ease;
}

.director-premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 55px 130px rgba(11,28,45,0.25);
}

/* Avatar */
.director-avatar {
  width: 190px;
  height: 190px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb703, #ff8c00);
  padding: 6px;
  box-shadow: 0 0 0 12px rgba(255,183,3,0.15);
}

.director-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

/* Text */
.director-name {
  font-size: 26px;
  font-weight: 800;
  color: #0b1c2d;
  margin-bottom: 6px;
}

.director-position {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff8c00;
  text-transform: uppercase;
}

.director-description {
  font-size: 16px;
  line-height: 1.75;
  color: #5f6b7a;
}
/* ===== Security Services Section ===== */
.security-services {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fbff, #eef3f9);
}

.services-header .section-badge {
  display: inline-block;
  background: rgba(255, 183, 3, 0.15);
  color: #ff8c00;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b1c2d;
}

.services-header p {
  max-width: 720px;
  margin: 15px auto 0;
  color: #6b7280;
  font-size: 16px;
}

/* Service Card */
.service-card {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(11,28,45,0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 45px 120px rgba(11,28,45,0.18);
}

.service-card.featured {
  background: linear-gradient(180deg, #0b1c2d, #091522);
  color: #ffffff;
}

.service-card.featured h4,
.service-card.featured p {
  color: #ffffff;
}

/* Icon */
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb703, #ff8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(255,140,0,0.35);
}

.service-icon i {
  font-size: 32px;
  color: #ffffff;
}

/* Text */
.service-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0b1c2d;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5f6b7a;
}
/* ===== Security Video Section ===== */
.security-videos {
  background: #f8f9fb;
}

.video-card {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.video-card video {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

.video-card h5 {
  margin-top: 15px;
  font-weight: 600;
  color: #111;
}

.video-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}
.trust-section {
  background: #f9fafb;
}

.trust-card {
  padding: 20px;
}


.trust-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.trust-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Custom Colors */
.bg-orange {
  background: linear-gradient(135deg, #ff9800, #f57c00);
}

.bg-gold {
  background: linear-gradient(135deg, #ffd54f, #ffca28);
}
.who-needs-section {
  background: #eaf1fb;
}

.need-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.need-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}

.need-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: #ffb000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.need-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #0b1c39;
}

.need-card p {
  color: #5f6c7b;
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}

.trust-card {
  padding: 20px;
}

.trust-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.trust-icon i {
  font-size: 32px;
  color: #fff;
  line-height: 1; /* 🔥 FIXES eye icon alignment */
}

/* PROFESSIONAL COLOR PALETTE */
.icon-orange {
  background: #f35d12;
}

.icon-yellow {
  background: #f1c40f;
}

.icon-navy {
  background: #0b1f3b;
}

.icon-rupee {
  background: #00f545;
}

.icon-gold {
  background: #0096f4;
}

.icon-red {
  background: #f2555a;
}

.trust-card h5 {
  font-weight: 600;
  margin-top: 10px;
}

.trust-card p {
  font-size: 15px;
  color: #6c757d;
}
.video-card video {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  background: #000;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.sectors-one-image {
  background: #f7f9fc;
}

.sectors-image-wrapper {
  max-width: 1100px;
  margin: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

.sectors-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.sectors-section {
  background: #f8f9fa;
}

.sector-tag {
  color: #0d6efd;
  font-weight: 600;
  letter-spacing: 2px;
}

.sector-title {
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
}

.sector-subtitle {
  max-width: 700px;
  margin: 10px auto 0;
  color: #666;
}

.sector-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  height: 100%;
}

.sector-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.sector-content {
  padding: 18px;
}

.sector-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sector-content p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}
.core-solutions {
  background: #f8f9fa;
}

.section-tag {
  color: #0d6efd;
  font-weight: 600;
  letter-spacing: 2px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
}

/* Slider layout */
.core-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.core-slide {
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  text-align: center;
  transition: 0.3s;
}

.core-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.core-slide h4 {
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
}

.core-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.site-watermark {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.site-watermark img {
    width: 420px;
    opacity: 0.05;
}
