/* Smooth scrolling for all browsers */
* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;  /* Hides any accidental overflow */
  scroll-behavior: smooth;
}

section {
  height: 110vh;
  scroll-behavior: smooth;
  margin-top: 60px;
}
@media (max-width: 768px) {
  section {
    height: auto; /* Let content define height */
    padding: 20px 15px;
  }
}


/* Top Bar Styles */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  color: #fff;
  padding: 16px 20px;
  font-size: 14px;
}

.top-bar .contact-info span {
  margin-right: 20px;
}



.social-icons a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fdd835;
}

/* Adjust nav to go below top-bar */
nav {
  margin-top: 48px; /* adjust if top-bar height changes */
}


/* NAVBAR STYLES */
.navbar {
  position: fixed;
  width: 100%;
  background-color: #003369;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.logo img { 
  height: 60px;
  transition: height 0.3s ease;
  position: relative;
  left: -150%;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
    padding: 0;
  margin: 0;


  gap: 30px;
}

.nav-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu ul li a:hover {
  color: #fdd835;
}

/* Shrink Navbar on Scroll */
.navbar.shrink {
  background-color: #003369;
  margin-top: -40px;
}

.navbar.shrink .navbar-container {
  padding: 8px 20px;
}

.navbar.shrink .logo img {
  height: 40px;
} 

.navbar.shrink .nav-menu {
  justify-content: flex-end;
  margin-top: -5px;
}
/* Slider Container */
.slider {
     position: relative;
  width: 100%;          /* Use % instead of 100vw */
  max-width: 100%;      /* Prevents overflow */
  height: 60vh;
  overflow: hidden;
  margin: 0 auto;       /* Center it if needed */
  padding: 0;

}

.slides {
  display: flex;
  transition: transform 1s ease-in-out;
  height: 100%;

}

.slide {  flex: 0 0 100%;        /* Prevents side overflow */
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;



}

.slide-heading {
  color: white;
  font-size: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.slide.active .slide-heading {
  opacity: 1;
  transform: translateY(0);
}

/* Nav Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 12px;
  z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background-color: #333;
}

/* Below slider content */
.slider-below-content {
  text-align: center;
  padding: 40px 20px;
  background-color: #f4f4f4;
}

.slider-below-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.slider-below-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.know-more-btn {
  padding: 10px 20px;
  background-color: #111;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Breadcrumb Section */
.breadcrumb-section {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.breadcrumb-logo {
  max-width: 400px;
  margin-bottom: 0px;
}

.breadcrumb-section h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.breadcrumb-section p {
  max-width: 80%;
  margin: 0 auto;
  font-size: 0.95rem;
}
.section.services {
  text-align: center;
  padding: 40px 20px;
}
.section.services h1 {
  font-size: 3rem;
}


.services-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.service-box {
  background: #003369 ;
  flex: 1 1 calc(33.33% - 20px);
  max-width: calc(20% - 20px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.service-box img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.service-box h3 {
  margin: 10px 0 6px;
  font-size: 1.3rem;
    color: #ffff;

}

.service-box p {
  color: #ffff;
  flex-grow: 1;
}

/* Mobile Responsive: Stack boxes */
@media (max-width: 768px) {
  .service-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.counter-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  position: relative;
  text-align: center;
  position: relative;
  top: 25px;
}

.counter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
}

.counter-box {
  flex: 1 1 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-icon {
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
}


.counter {
  font-size: 40px;
  font-weight: bold;
  margin: 10px 0;
  color: yellow;
}

.counter + h4 {
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
}
.why-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.section-heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Forces 3 columns */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


.why-box {
  position: relative;
  background-color: #fff;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.why-content {
  z-index: 2;
  position: relative;
  text-align: center;
  transition: 0.4s;
}

.why-content i {
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
}

.why-content h4 {
  font-size: 18px;
  color: #333;
  margin: 0;
}

.why-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 1;
}

.why-box:hover img {
  opacity: 1;
}

.why-box:hover .why-content {
  opacity: 1;
}
.scroll-effect {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-effect.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll-up button visibility */
#scrollUp {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#scrollUp.visible {
  opacity: 1;
  pointer-events: auto;
}
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 0;
  font-family: sans-serif;
}

.site-footer h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  color: #fff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-box {
  flex: 1 1 250px;
}

.footer-box h4 {
  margin-bottom: 15px;
  color: #fff;
}

.footer-box p, .footer-box a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-box a:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.subscribe-input {
  padding: 10px;
  width: 100%;
  border: none;
  margin-bottom: 10px;
}

.subscribe-btn {
  padding: 10px 20px;
  border: none;
  background-color: #fd7e14;
  color: #fff;
  cursor: pointer;
}

.footer-map {
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #000; /* black background */
  color: #fff;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #fdd835; /* example hover color */
}


#scrollUp {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #fd7e14;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}
/* Breadcrumb */
.breadcrumb {
  padding: 15px 30px;
  background: #f5f5f5;
  font-size: 14px;
  color: #555;
}
.breadcrumb a {
  text-decoration: none;
  color: #007bff;
}

/* Contact Section */
.contact-section {
  margin-top: 40px;
  padding: 50px 20px;
  background-color: #fff;
  color: #333;
}
.section-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

/* Info + Map Box */
.contact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: #003369;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  max-width: 1100px;
  margin: 0 auto 40px;
}
.contact-info, .contact-map {
  flex: 1;
  min-width: 300px;
}
.contact-info h3 {
  margin-bottom: 15px;
  color: #ffff;
}
.contact-info p {
  margin: 10px 0;
    color: #ffff;

}

/* Contact Form */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.contact-form h3 {
  margin-bottom: 20px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form button {
  padding: 12px;
  font-size: 16px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #0056b3;
}
 .facebook {
                background: #0863F7;
                padding: 6px 9px;
                border-radius: 12%;
            }

            .youtube {
                background: #F70000;
                padding: 6px 6px;
                border-radius: 12%;
            }

            .linkedin {
                background: #007AB5;
                padding: 6px 6px;
                border-radius: 12%;
            }

            .snapchat {
                background: #F7AD0B;
                padding: 6px 6px;
                border-radius: 12%;
            }
            .instagram {
background: radial-gradient(circle at 30% 107%, 
              #fdf497 0%, 
              #fdf497 5%, 
              #fd5949 45%, 
              #d6249f 60%, 
              #285AEB 90%);                padding: 6px 6px;
                border-radius: 12%;
            }
            /* Container styling */
.about-us {
  padding: 2rem;
  background: #fafafa;
}

/* Center-align the breadcrumb area */
.breadcrumb-area {
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 10px;
  width: 80%;
  position: relative;
  left: 180px;

}

/* Heading centered and bold */
.heading {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 0.5rem;
  padding-top: 40px;
  color: #ffff;

}

/* Breadcrumb styling */
.breadcrumb {
  display: inline-block;
  padding: 0;
  background-color: skyblue;
  padding-bottom: -80px;
}
.breadcrumb ol {
  display: inline-flex;
  list-style: none;
  padding: 20px;
  margin: 0;
  align-items: center;
}

/* List items and separators */
.breadcrumb li {
  margin: 0 0.5rem;
}
.breadcrumb-area {
  background: url(images/security-banner.jpg);
  height: 250px;
  }
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: #777;
}

/* Link and current item styling */
.breadcrumb a {
  text-decoration: none;
  color: #007bff;
}
.breadcrumb li[aria-current="page"] {
  font-weight: bold;
  color: #333;
}

/* Section content styling */
.section-content p {
  line-height: 0.9;
  margin-bottom: 1rem;
  width: 60%;
   position: relative;
  left: 340px;
}
.section-content h3 {
  line-height: 0.9;
  margin-bottom: 1rem;
  width: 60%;
   position: relative;
  left: 340px;
}





