*{
    margin: 0;
    padding: 0;
   
}
.header {
    width: 100%;
    min-height: 100vh; /* Makes header fill the viewport height */
    background-image: linear-gradient(rgba(201, 209, 227, 0),rgba(201, 209, 227, 0.582)), url("../images/b-y\ bg.jpg");
    background-position: center;
    background-size: cover;   /* Ensures the image covers the whole area */
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: center; /* Center nav content horizontally */
    padding: 2% 6%;
    gap: 40px; /* Adds space between logo and links */
}
.logo {
    height: 150px; /* Smaller logo for better balance */
    width: auto;
    display: block;
}

.nav-links ul {
    display: flex;
    gap: 24px; /* Space between nav items */
    align-items: center;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links ul li a::after {
    content: '';
    height: 3px;
    width: 0;
    background: #F7CE14;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.5s ease;
}
.nav-links ul li a:hover::after {
    width: 100%;
}
.text-box {
    width: 90%;
    color:#FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1 {
    font-size: 62px;
}
.text-box h3 {
    margin: 8px 0 20px;
    font-size: 15px;
    color: #fff;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #F7CE14;
    border: 1px solid #000;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    background: #000;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}


@media (max-width: 768px) {
    .header {
        min-height: 70vh;
        background-size: cover;
        background-position: center;
    }
    .nav {
        flex-direction: column;
        gap: 16px;
        padding: 16px 0;
    }
    .logo {
        height: 70px;
    }
    .nav-links ul {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .nav-links ul li {
        padding: 4px 0;
    }
    .nav-links ul li a {
        font-size: 16px;
    }
    .text-box h1 {
        font-size: 22px;
        text-align: center;
    }
    .text-box h3 {
        font-size: 14px;
        text-align: center;
    }
    .hero-btn {
        font-size: 16px;
        padding: 8px 20px;
    }
    .text-box {
        width: 98%;
        padding: 0 2vw;
    }
    .header bottom{
        font-size: 14px;
        padding: 8px 16px;
    }
}
.menu-icon {
    display: none;
    font-size: 32px;
    color: #F7CE14;
    cursor: pointer;
    margin-left: top right corner;
    padding: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav {
        position: relative;
    }
    .menu-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1001;
        font-size: 32px;
        color: #F7CE14;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 8px;
    }
    .nav-links {
       display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        width: 200px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        border-radius: 8px;
        z-index: 1000;
    }
    .nav-links.active {
        display: block;
    }
    .nav-links ul {
        flex-direction: column;
        gap: 0;
        
    }
    .nav-links ul li {
        padding: 14px 18px;
        border-bottom: 1px solid #eee;
    }
    .close-btn {
        display: block;
        text-align: right;
        font-size: 24px;
        color: #000;
        cursor: pointer;
        margin-right: 12px;
    }
}

/* </--------services section--------/> */
.services {
    width: 60%;
    padding: 100px 0;
    text-align: center;
    background: #F7CE14;
    margin: auto;
    font-size: 36px;
    font-weight: 600;
}
.services p {
    color: #555;
    font-size: 18px;
    margin: 10px 0 40px;
    padding: 10px 0;
    line-height: 22px;
    font-weight: 300;
}
.row {
    margin-top:5% ;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.services-col {
    flex-basis: 31%;
    background: #fff;
    text-align: center;
    padding: 20px 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 5%;
    box-sizing: border-box;
}
h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0;
    text-align: center;
}
.services-col:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
/* ...existing code... */

@media (max-width: 768px) {
    /* ...existing responsive code... */

    .services {
        width: 100%;
        padding: 20px 0;
        font-size: 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;

    }
    .row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .services-col {
        flex-basis: 90%;
        max-width: 400px;
        margin-bottom: 20px;
    }
    h3 {
        font-size: 20px;
    }
    .service-block {
        background: #fff;
        width: 90px;
        max-width: 350px;
        margin: 20px auto;
        padding: 20px;
        font-size: 14px;
        border-radius: 10px;
        box-shadow: #000;

    }

}

/* About / Footer block */
.about-footer {
  width: 100vw;
  background: linear-gradient(180deg, #fff 0%, #fff 60%);
  padding: 0;
  box-sizing: full;
  color: #222;
  border-top: 6px solid #0c0c0c;
  margin-top: 0;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  padding: 48px 24px 24px 24px;
}

.about-content {
  background: #f7ce14;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 48px 40px 32px 40px;
  margin: 0 auto;
  max-width: 1000px;
}

.about-content h2 {
  font-size: 2.4rem;
  margin: 0 0 22px 0;
  text-align: center;
  letter-spacing: .5px;
  color: #111;
  font-weight: 700;
}

.about-content .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #070707;
  text-align: center;
}

.about-content p {
  font-size: 1.12rem;
  line-height: 1.8;
  color: #040404;
  margin-bottom: 16px;
  text-align: center;
}

.about-content strong {
  color: #0c0c0c;
  font-weight: 700;
}

.about-cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.about-cta .hero-btn {
  background: #000;
  color: #f7ce14;
  padding: 12px 32px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 1.08rem;
  transition: background 0.3s, color 0.3s;
}

.about-cta .hero-btn:hover {
  background: #f7ce14;
  color: #000;
}

.about-footer .copyright {
  font-size: 1rem;
  text-align: center;
  color: #666;
  margin-top: 28px;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

/* Desktop: wider content, more padding */
@media (min-width: 1100px) {
  .about-inner {
    padding: 64px 0 32px 0;
  }
  .about-content {
    padding: 64px 60px 40px 60px;
    max-width: 900px;
  }
  .about-content h2 {
    font-size: 2.8rem;
  }
}

/* Tablet and below: compact, readable */
@media (max-width: 900px) {
  .about-inner {
    padding: 32px 8px 16px 8px;
  }
  .about-content {
    padding: 28px 10px 18px 10px;
    max-width: 98vw;
  }
  .about-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  .about-content .lead,
  .about-content p {
    font-size: 1rem;
    padding: 0 2vw;
  }
  .about-footer .copyright {
    font-size: 0.93rem;
    margin-top: 14px;
  }
}

/* Small mobile: even more compact */
@media (max-width: 480px) {
  .about-inner {
    padding: 18px 2px 8px 2px;
  }
  .about-content {
    padding: 12px 2vw 8px 2vw;
  }
  .about-content h2 {
    font-size: 1.1rem;
  }
  .about-content p {
    font-size: 0.92rem;
  }
}
/* About Section Styles */
/* .about-content {
    max-width: 800px;
    margin: 40px auto 32px auto;
    background: #F7CE14;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 36px 32px;
    text-align: left;
}

.about-content h2 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    color: #222;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: center;
}

/* /--------footer section--------/ */
/* .footer {
    background: #F7CE14;
    color: #222;
    padding: 40px 20px 20px 20px;
    text-align: center;
    border-radius: 12px;
    max-width: 900px;
    margin: 40px auto 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.07);
    font-size: 1.1rem;
}

.footer h4 {
    font-size: 2rem;
    margin-bottom: 18px;
    letter-spacing: 1px;
    color: #222;
}

.footer p {
    max-width: 700px;
    margin: 0 auto 10px auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color:#000;
}

.footer p:last-child {
    color: #888;
    font-size: 1rem;
    margin-top: 18px;
    opacity: 0.8;
    letter-spacing: 1px;
} */
/* Responsive for About & Footer */
/* @media (max-width: 768px) {
    .about-content {
        max-width: 98vw;
        padding: 18px 8px;
        margin: 18px auto 18px auto;
    }
    .about-content h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .about-content p {
        font-size: 0.98rem;
        padding: 0 2vw;
    }
    .footer {
        max-width: 98vw;
        padding: 18px 6px 10px 6px;
        border-radius: 8px;
        font-size: 0.98rem;
        margin: 18px auto 0 auto;
    }
} */ */

/* /--------surveillance section--------/ */
.surveillance {
    width: 100%;
    min-height: 80vh;
    background-image: linear-gradient(rgba(201, 209, 227, 0),rgba(201, 209, 227, 0)), url("../images/surveillance.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}
.surveillance-content {
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 16px rgba(0,0,0,0.15);
}

.surveillance-content h2 {
    font-size: 2rem;
    margin-bottom: 14px;
    color: #F7CE14;
}

.surveillance-content p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #fff;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .header {
        min-height: 70vh;
    }
    .nav {
        flex-direction: column;
        gap: 16px;
        padding: 16px 0;
    }
    .logo {
        height: 70px;
    }
    .nav-links ul {
        flex-direction: column;
        gap: 12px;
    }
    .text-box h1 {
        font-size: 2rem;
    }
    .text-box h3 {
        font-size: 1rem;
    }
    .hero-btn {
        font-size: 1rem;
        padding: 8px 20px;
    }
    .services {
        width: 95%;
        padding: 40px 0;
        font-size: 1.5rem;
    }
    .row {
        flex-direction: column;
        gap: 16px;
    }
    .services-col {
        flex-basis: 100%;
        margin-bottom: 16px;
    }
    .surveillance {
        min-height: 40vh;
        padding: 24px 0;
    }
    .surveillance-content {
        padding: 18px 8px;
        max-width: 95vw;
    }
    .surveillance-content h2 {
        font-size: 1.3rem;
    }
    .surveillance-content p {
        font-size: 1rem;
    }
    .contact {
        width: 95%;
        padding: 30px 0;
    }
    .footer {
        max-width: 98vw;
        padding: 30px 8px 16px 8px;
    }
}

/* Try Our Services Section */
.try-services {
    background: linear-gradient(120deg, #f7ce14 0%, #fffbe7 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 48px auto 32px auto;
    padding: 40px 36px 32px 36px;
    text-align: center;
    border: 2px solid #f7ce14;
}

.try-services h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.try-services p {
    font-size: 1.13rem;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.7;
}

.try-services h4 {
    font-size: 1.08rem;
    color: #000;
    margin: 10px 0 8px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.try-services br {
    display: none;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .try-services {
        max-width: 98vw;
        padding: 18px 8px 14px 8px;
        margin: 24px auto 18px auto;
        border-radius: 10px;
    }
    .try-services h1 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .try-services p {
        font-size: 0.98rem;
        padding: 0 2vw;
    }
    .try-services h4 {
        font-size: 0.95rem;
    }
}

/* Service Locations Section */
.service-location {
    background: #f7ce14;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 48px auto 32px auto;
    padding: 40px 36px 32px 36px;
    text-align: center;
    border: 2px solid #f7ce14;
}

.service-location h1 {
    font-size: 2rem;
    color: #010101;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-location > p:first-of-type {
    font-size: 1.13rem;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 0 auto;
    max-width: 700px;
    padding: 0;
    list-style: none;
}

.service-location-list li {
    background: #fff;
    color: #1a237e;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 10px 18px;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.service-location-list li:hover {
    background: #f7ce14;
    color: #000;
}
.service-location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 0 auto;
    max-width: 700px;
    padding: 0;
    list-style: none;
}

.service-location-list li {
    background: #fff;
    color: #1a237e;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 10px 18px 10px 12px;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.service-location-list li:hover {
    background: #f7ce14;
    color: #000;
}

.loc-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    background: #f7ce14;
    padding: 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}



/* Responsive for mobile */
@media (max-width: 768px) {
    .service-location {
        max-width: 98vw;
        padding: 18px 8px 14px 8px;
        margin: 24px auto 18px auto;
        border-radius: 10px;
    }
    .service-location h1 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .service-location > p:first-of-type {
        font-size: 0.98rem;
        padding: 0 2vw;
    }
    .service-location-list {
        gap: 8px;
        max-width: 98vw;
    }
    .service-location-list li {
        font-size: 0.95rem;
        padding: 8px 10px;
    }
    
    .service-location-list {
        gap: 8px;
        max-width: 98vw;
    }
    .service-location-list li {
        font-size: 0.95rem;
        padding: 8px 10px 8px 8px;
    }
    .loc-icon {
        width: 22px;
        height: 22px;
    }
}



/* /--------contact section--------/ */
.contact {
    width: 80%;
    margin: 60px auto;
    padding: 60px 0;
    text-align: center;
    background: #F7CE14;
    background-image: linear-gradient(rgba(201, 209, 227, 0.2),rgba(201, 209, 227, 0.2)), url("../images/contact-bg.png");
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.07);
}

.contact h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 18px;
}
.contact p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.contact-form {
  max-width: 720px;
  margin: 18px auto 48px;
  display: grid;
  gap: 12px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  box-sizing: border-box;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .hero-btn { justify-self: center; padding: 10px 26px; }
.contact-msg { text-align:center; font-weight:600; margin-top:8px; display:none; }
.contact-msg.success { color:#0a8a0a; display:block; }
.contact-msg.error { color:#c62828; display:block; }

/* .contact form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    resize: none;
}
.contact textarea {
    min-height: 100px;
} */

.contact .hero-btn {
    width: auto;
    padding: 10px 30px;
    background: #222;
    color: #f7ce14;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.contact .hero-btn:hover {
    background: #f7ce14;
    color: #222;
}
/* Responsive for small screens */
@media (max-width: 768px) {
    .contact {
        width: 98%;
        padding: 30px 0;
    }
    .contact h2 {
        font-size: 1.5rem;
    }
    /* .contact form {
        max-width: 98%;
        padding: 0 1vw; */
    
    .contact-form { padding: 0 12px; gap:10px; }
  .contact-form .hero-btn { padding: 10px 20px; }
}



/* ...existing code... */
