* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #111;
  flex-wrap: wrap;
}

nav .logo {
  height: 100px;
}

.logo {
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

nav ul li a:hover {
  color: #ff9900;
}

.hero {
  position: relative;
  background: url('../images/bg-hero.png') no-repeat center center;
  background-size: cover; /* fills full width */
  background-position: top center; /* starts from top */
  width: 100%;
  height: 120vh; /* taller height to fit full person */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.0); /* optional: keep it or tweak */
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 0 20px;

  /* ↓ NEW LINE TO CONTROL VERTICAL POSITION */
  align-items: flex-end; 

  /* ↓ NEW: Add bottom margin so it's not stuck to bottom */
  padding-bottom: 100px; 
}


.hero-content {
  color: white;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn {
  background-color: #ff9900;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e88c00;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 15px 0;
}

.intro {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.intro-container {
  max-width: 900px;
  margin: 0 auto;
}

.intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #111;
}

.intro p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.services-preview {
  padding: 80px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-container h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  flex: 1 1 280px;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 15px;
}

.card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}


.residential-service {
  background: url('../images/residential-condo-bg.jpg') no-repeat center center/cover;
  padding: 100px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.residential-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* darken for text readability */
  padding: 40px;
  max-width: 800px;
  margin: auto;
  border-radius: 10px;
}

.residential-card {
  padding: 0;
  overflow: hidden;
}

.residential-image {
  background: url('../images/residential-condo-bg.jpg') no-repeat center center/cover;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.residential-image h3 {
  color: white;
  font-size: 1.8rem;
  background-color: rgba(0, 0, 0, 0.6); /* optional dark overlay */
  padding: 10px 20px;
  border-radius: 5px;
}

.residential-text {
  background: white;
  padding: 20px;
  text-align: left;
}

.residential-text p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

.construction-service {
  background: url('../images/construction.png') no-repeat center center/cover;
  padding: 100px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.construction-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* darken for text readability */
  padding: 40px;
  max-width: 800px;
  margin: auto;
  border-radius: 10px;
}

.construction-card {
  padding: 0;
  overflow: hidden;
}

.construction-image {
  background: url('../images/construction.png') no-repeat center center/cover;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.construction-image h3 {
  color: white;
  font-size: 1.8rem;
  background-color: rgba(0, 0, 0, 0.6); /* optional dark overlay */
  padding: 10px 20px;
  border-radius: 5px;
}

.construction-text {
  background: white;
  padding: 20px;
  text-align: left;
}

.construction-text p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

.commercial-service {
  background: url('../images/commercial.png') no-repeat center center/cover;
  padding: 100px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.commercial-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* darken for text readability */
  padding: 40px;
  max-width: 800px;
  margin: auto;
  border-radius: 10px;
}

.commercial-card {
  padding: 0;
  overflow: hidden;
}

.commercial-image {
  background: url('../images/commercial.png') no-repeat center center/cover;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.commercial-image h3 {
  color: white;
  font-size: 1.8rem;
  background-color: rgba(0, 0, 0, 0.6); /* optional dark overlay */
  padding: 10px 20px;
  border-radius: 5px;
}

.commercial-text {
  background: white;
  padding: 20px;
  text-align: left;
}

.commercial-text p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}


.contact-cta {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-buttons {
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: #ffa600;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background-color: #ff8c00;
}


.footer-section {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-intro {
  max-width: 1000px;
  margin: 0 auto 30px auto;
  text-align: center;
  font-size: 16px;
  color: #ccc;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}

.footer-column p, 
.footer-column li, 
.footer-column a {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 6px 12px;
  background-color: #222;
  border: 1px solid #555;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
}

.footer-btn:hover {
  background-color: #333;
}

.social-icons a {
  margin-right: 10px;
  font-size: 16px;
  color: #fff;
}

.footer-toggle {
  display: block;
  margin-top: 10px;
  padding: 6px 10px;
  background-color: #fff;
  color: #000;
  font-size: 12px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #888;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* About Us page tweaks */
.about-hero {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.about-logo {
  max-width: 180px;
  margin: 0 auto 20px;
  display: block;
}
.values-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
}
.values-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .values-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.value-box h3 {
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 12px;
}
.value-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* ---- About Page Styling ---- */

.about-hero {
  background-color: #f2f2f2;
  padding: 100px 20px;
  text-align: center;
}

.about-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.about-subtext {
  font-size: 1.1rem;
  color: #444;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Credentials Section ---- */
.credentials {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.credentials .section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.credentials .section-subtext {
  font-size: 1.05rem;
  color: #444;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Security Model Section ---- */
.service-model {
  background-color: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.service-model .section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.service-model .section-subtext {
  font-size: 1.05rem;
  color: #444;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Why Choose OSP Section ---- */
.why-osp {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.why-osp .section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
}

.why-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.why-list li {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.why-list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
}

.services-hero {
  background: url('../images/services-banner.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.services-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.services-hero-content p {
  font-size: 1.3rem;
}

.services-list {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}
.service-item {
  margin-bottom: 40px;
}
.service-item h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}
.service-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}


.services-banner {
  background: url('../images/services-hero.jpg') no-repeat center center/cover;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-banner-overlay {
  background-color: rgba(0, 0, 0, 0.0);
  padding: 60px 20px;
  color: #fff;
  width: 100%;
}

.services-banner-overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.services-banner-overlay p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.banner-buttons .btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 5px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}

.btn.dark {
  background-color: #000;
  color: #fff;
}

.btn.yellow {
  background-color: #ffc107;
  color: #000;
}

.services-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222;
}

.service-card p {
  color: #555;
  line-height: 1.6;
}

.service-icon {
  font-size: 2.5rem;
  color: #1f3a93;
  margin-bottom: 15px;
}

.services-banner {
  position: relative;
  background-image: url("../images/services-banner.png"); /* Make sure image is in correct folder */
  background-size: cover;
  background-position: center;
  height: 400px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-banner-overlay {
  background: rgba(0, 0, 0, 0.0); /* dark overlay for contrast */
  padding: 40px;
  border-radius: 10px;
}

.banner-buttons .btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}

.btn.dark {
  background-color: black;
  color: white;
}

.btn.yellow {
  background-color: #fbc02d;
  color: black;
}

.services-banner {
  position: relative;
  background-image: url("../images/services-banner.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-banner-overlay {
  background: rgba(0, 0, 0, 0.0);
  padding: 40px;
  border-radius: 10px;
}

.banner-buttons .btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}

.btn.dark {
  background-color: black;
  color: white;
}

.btn.yellow {
  background-color: #fbc02d;
  color: black;
}

.quote-request {
  background-color: #fff;
  padding: 80px 20px;
}

.quote-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.quote-left {
  flex: 1 1 400px;
}

.quote-left h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 20px;
}

.quote-left ul {
  list-style: none;
  padding-left: 0;
}

.quote-left li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
}

.quote-form {
  flex: 1 1 400px;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
}

.quote-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.quote-form button {
  padding: 14px;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .quote-container {
    flex-direction: column;
    padding: 0 10px;
  }

  .quote-left,
  .quote-form {
    flex: 1 1 100%;
    width: 100%;
  }

  .quote-left h2 {
    font-size: 1.6rem;
  }

  .quote-left p,
  .quote-left li {
    font-size: 0.95rem;
  }

  .quote-form {
    padding: 20px;
  }

  .quote-form input,
  .quote-form textarea {
    font-size: 1rem;
    padding: 10px;
  }

  .quote-form button {
    width: 100%;
  }
}


.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 30px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-option {
  max-width: 250px;
  margin: 15px;
}

.contact-form-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  background-color: #fff;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  background: #fafafa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  background-color: #FFC107; /* Bright yellow */
  color: black;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e0a800; /* Slightly darker yellow on hover */
}
   

here contact banner 

.contact-banner {
  background: url('../images/contact-banner.jpg') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}


.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-option {
  max-width: 300px;
}

.contact-form-section {
  display: flex;
  justify-content: center;
  padding: 30px;
  background-color: #f9f9f9;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

here cleaner version 

/* Cleaned and professional CSS for Ontario Security Protection */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #111;
  flex-wrap: wrap;
}

.logo {
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

nav ul li a:hover {
  color: #ff9900;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('../images/bg-hero.png') no-repeat center center;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 120vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding-bottom: 100px;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.0);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  color: white;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn {
  background-color: #ff9900;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e88c00;
}

/* Contact Banner */
.contact-banner {
  background: url('../images/contact-banner.jpg') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

/* Contact Options */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-option {
  max-width: 300px;
}

/* Contact Form */
.contact-form-section {
  display: flex;
  justify-content: center;
  padding: 30px;
  background-color: #f9f9f9;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fafafa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}



.contact-form button:hover {
  background-color: #e0a800;
}

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 15px 0;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 20px;
  background: #fff;
  border-top: 2px solid #ddd;
}

.contact-box {
  flex: 1 1 300px;
  margin: 20px;
  text-align: center;
}

.contact-box .icon {
  font-size: 40px;
  color: #111;
  margin-bottom: 15px;
}

.contact-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.contact-box p,
.contact-box a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.email-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.email-btn,
.job-btn {
  padding: 12px 20px;
  background: linear-gradient(to right, #ff9900, #ffcc00);
  color: black;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.email-btn:hover,
.job-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #ffaa00, #ffe066);
  color: #000;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}


/* --- CAREERS PAGE STYLING --- */

.careers-banner {
  background-image: url('../images/careers-banner.jpg'); /* Replace with your banner */
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.careers-banner h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.careers-banner p {
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

.careers-banner {
  background-image: url('../images/careers-banner.jpg');
  background-size: contain; /* changed from 'cover' */
  background-repeat: no-repeat;
  background-position: center top;
  padding: 300px 20px 100px; /* increased height padding */
  text-align: center;
  color: white;
}


.careers-intro {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
}

.careers-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #111;
}

.careers-intro p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

.careers-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  background: #fff;
}

.feature {
  flex: 1 1 280px;
  max-width: 320px;
  background: #f4f4f4;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature i {
  font-size: 40px;
  color: #ffb100;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111;
}

.feature p {
  font-size: 1rem;
  color: #444;
}

.job-listings {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.job-listings h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.job-card {
  background: white;
  padding: 25px;
  margin: 20px auto;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.job-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #000;
}

.job-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #333;
}

.apply-btn {
  padding: 10px 20px;
  background: #000;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #ffb100;
  color: #000;
}

.careers-banner {
  background-image: url('../images/careers-banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.careers-banner {
  background-image: url('../images/careers-banner.jpg'); /* your banner image */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.careers-banner h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.careers-banner p {
  font-size: 1.25rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}


.careers-banner {
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('../images/careers-banner.jpg') center center/cover no-repeat;
}

.banner-text {
  position: absolute;
  width: 100%;
  text-align: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
  padding: 20px;
}

.bottom-aligned {
  bottom: 30px; /* Adjust to how low you want it */
  left: 50%;
  transform: translateX(-50%);
}

.banner-text h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.banner-text p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.quote-banner {
  background: url('images/quote-banner.jpg') no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}


.quote-banner h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.quote-form-section {
  background: #fff;
  padding: 50px 20px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.quote-form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: 500;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.submit-btn {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #ff9900;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #e68800;
}

nav {
  position: relative;
  z-index: 10;
}

nav ul li a {
  color: white;
  font-weight: bold;
}

nav ul li a:hover {
  color: #ffcc00;
}

.services-banner {
  background: url('../images/services-banner.jpg') no-repeat center center/cover;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.services-banner .overlay {
  background: rgba(0, 0, 0, 0.0);
  padding: 20px;
  width: 100%;
  height: 100%;
}

.services-banner h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.services-banner p {
  font-size: 1.2rem;
}

.quote-form {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.quote-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.quote-form textarea {
  resize: vertical;
  height: 100px;
}

.quote-form button {
  padding: 12px 25px;
  background-color: #111;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.quote-form button:hover {
  background-color: #ff9900;
  color: #111;
}

.services-banner {
  background: url('../images/quote-banner.jpg') no-repeat center center/cover;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.services-banner .overlay {
  background: rgba(0, 0, 0, 0.0);
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services-banner h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.services-banner p {
  font-size: 1.2rem;
}

.about-hero {
  background: url('../images/about-banner.jpg') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.intro-container {
  background: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
  padding: 30px;
  border-radius: 8px;
}

.value-box {
  background: #f9f9f9;
  border-left: 5px solid #ff9900;
  padding: 20px;
  margin: 20px 0;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}
.value-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.value-box p {
  color: #444;
  line-height: 1.6;
}

.why-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
.why-list li {
  padding: 10px 0;
  position: relative;
  padding-left: 25px;
  font-weight: 500;
  color: #222;
}
.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

section {
  padding: 60px 20px;
  border-bottom: 1px solid #eee;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff9900;
  text-decoration: underline;
}

.about-hero {
  background-image: url('../images/about-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.about-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);

}

.about-subtext {
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);

}

.about-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.about-subtext {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #eee;
}

.about-heading {
  animation: fadeInUp 1.2s ease-in-out;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-slogan {
  color: #f0f0f0;
  font-size: 1.4rem;
  font-style: italic;
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.about-slogan {
  /* existing styles above */
  animation: fadeInUp 1.6s ease-in-out;
}

.about-slogan {
  color: #ffffff;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1.6s ease-in-out;
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 20px 30px;
  border-radius: 12px;
}





.about-subtext {
  color: #f5f5f5;
  font-size: 1.05rem;
  text-align: center;
  font-weight: 400;
  line-height: 1.6;
  padding: 0 20px;
  
  text-shadow:
    0 0 2px #fff,
    0 0 4px #fff,
    0 0 6px #fff,
    0 0 8px rgba(255, 255, 255, 0.6);

  animation: fadeInUp 1.3s ease-in-out;
}







@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.credentials, .service-model {
  background: linear-gradient(to bottom right, #f7f7f7, #e9ecef);
  padding: 60px 20px;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
  border-bottom: 1px solid #ccc;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.section-heading::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #ff9900;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-subtext {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  color: #333;
  padding: 0 20px;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.mission-vision-promise {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 3rem auto;
}

.mvp-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 1.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-left: 5px solid #ff9900;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUpCard 1s forwards;
}


.mvp-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUpCard 1s forwards;
}

.mvp-card:nth-child(1) {
  animation-delay: 0.3s;
}
.mvp-card:nth-child(2) {
  animation-delay: 0.6s;
}
.mvp-card:nth-child(3) {
  animation-delay: 0.9s;
}

  .mission-vision-promise {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 60px 30px;
  background: #f7f7f7;
  flex-wrap: wrap;
}

.mvp-card {
  background: white;
  border-left: 6px solid #ffa500;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 340px;
  transition: all 0.4s ease;
  animation: fadeInUp 1.2s ease both;
}

.mvp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.mvp-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: #111;
}

.mvp-card h3 span {
  margin-right: 10px;
  font-size: 1.3rem;
}

.mvp-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero {
  background: url('../images/hero-banner.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  color: white;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* ======================
   Intro Section Styling
   ====================== */
.intro-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
}

.intro-card {
  background-color: #ffffff;
  max-width: 900px;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.intro-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
}

.intro-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.intro-card .quote-btn {
  display: inline-block;
  background-color: #ff9900;
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.intro-card .quote-btn:hover {
  background-color: #cc7a00;
}

.card.residential-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.card.residential-card:hover {
  transform: scale(1.02);
}

.residential-hero {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.residential-overlay {
  background: rgba(0, 0, 0, 0.0); /* optional dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.residential-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.0);
}

.residential-overlay p {
  font-size: 1.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.0);
}

.hero-content {
  animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-box {
  background: #ffffff;
  border-left: 4px solid #ff9900;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 1.8rem;
  color: #ff9900;
  margin-bottom: 0.5rem;
}

.feature-box h4 {
  margin-bottom: 0.5rem;
  color: #222;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 36px;
  color: #ff9900;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.95rem;
  color: #333;
}





.hero.construction-hero {
  background-image: url('../images/construction.png'); /* or your correct image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000; /* fallback if image doesn't cover entire area */
  height: 100vh; /* or try 70vh if it's too tall */
}



.construction-hero .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0); /* Optional dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.construction-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.construction-hero .hero-content p {
  font-size: 1.3rem;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link:hover .card {
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.commercial-hero {
  background: url('../images/commercial-banner.jpg') no-repeat center top;
  background-size: cover;
  height: 500px; /* Adjust as needed */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.commercial-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.45); /* Dark overlay */
  z-index: 1;
}

.commercial-hero .hero-content {
  z-index: 2;
  padding: 20px;
}

.services-hero {
  background: url('../images/services-banner.jpg') no-repeat center top;
  background-size: cover;
  height: 500px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.services-hero .hero-content {
  z-index: 2;
  padding: 20px;
}


.services-hero {
  background: url('../images/services-banner.jpg') no-repeat center top;
  background-size: cover;
  height: 500px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.hero-content {
  z-index: 2;
  padding: 20px;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
}

.btn-primary {
  background-color: black;
  color: white;
}

.btn-secondary {
  background-color: #ffcc00;
  color: black;
}

.btn-primary:hover,
.btn-secondary:hover {
  opacity: 0.9;
}


/* FINAL override styling for service cards */
.services-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.services-intro-container {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.services-intro-container h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: #111;
}

.services-intro-container p {
  font-size: 1.1rem;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0 auto; /* Center horizontally */
  padding: 0 20px;
  justify-content: center;
}

.services-section h2,
.services-section .services-intro {
  text-align: center;
}



.service-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #ff9900;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}



.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.services-section h2,
.services-intro {
  text-align: center;
  margin-bottom: 10px;
}

.services-intro {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: center;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  background-color: orange;
  color: white;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}


.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-header {
  max-width: 800px;
  margin: 0 auto 40px;
}

.services-intro {
  font-size: 1.1rem;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  background-color: orange;
  color: white;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}


.services-section {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-intro {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #ff9900;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  justify-items: center;
}

.service-card {
  width: 100%;
  max-width: 280px;
  min-height: 280px;
}

.contact-video-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.contact-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  color: rgb(8, 7, 7);
  background: rgba(0, 0, 0, 0.4); /* semi-transparent black overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.contact-video-overlay h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.contact-video-overlay p {
  font-size: 1.2rem;
}

.contact-video-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.contact-video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-banner {
  width: 100%;
  height: auto; /* Change this */
  max-height: 600px; /* Optional: Increase for more visibility */
  object-fit: contain; /* or try 'cover' vs 'contain' */
  display: block;
  margin: 0 auto;
}

.contact-video-banner {
  position: relative;
  width: 100%;
  height: 90vh; /* increased height for full visibility */
  overflow: hidden;
}

.contact-video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* move visible area to show face */
}

.contact-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  color: white;
  background: rgba(0, 0, 0, 0.35); /* optional dark overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.contact-video-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact-video-overlay p {
  font-size: 1.2rem;
}

.contact-video-banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background-color: black; /* Fallback color behind video */
}

.contact-video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 768px) {
  .contact-options {
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
    gap: 30px;
  }

  .contact-box {
    max-width: 90%;
    width: 100%;
    text-align: center;
  }

  .email-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
  }

  .email-btn,
  .job-btn {
    width: 100%;
    max-width: 280px;
    font-size: 15px;
  }

  .contact-box p {
    font-size: 15px;
  }

  .contact-video-overlay h1 {
    font-size: 1.8rem;
  }

  .contact-video-overlay p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 78px;
    right: 0;
    width: 100%;
    padding: 20px;
    z-index: 99;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }

  nav {
    position: relative;
  }

  .logo {
    max-width: 150px;
  }

  .hero h1,
  .hero p,
  .contact-video-overlay h1,
  .contact-video-overlay p {
    font-size: 1.2rem;
    padding: 0 10px;
  }

  .services-grid,
  .mission-vision-promise,
  .features-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .email-btn,
  .job-btn {
    width: 100%;
    max-width: 280px;
    margin-bottom: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  margin-left: auto;
  padding: 10px 20px;
}

.close-icon {
  display: none;
  font-size: 2.5rem;
  position: absolute;
  top: 15px;
  right: 20px;
}

/* Show on mobile only */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    padding: 20px;
  }

  nav ul.show {
    display: flex;
  }

  .close-icon {
    display: block;
  }
}

nav ul {
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%);
}

nav ul.show {
  transform: translateY(0%);
}

.logo {
  max-height: 70px;
  padding: 10px;
}

nav {
  position: relative;
  z-index: 1000;
}

nav ul {
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  border-bottom: 1px solid #333;
  border-top: 1px solid #333;
  border-radius: 0 0 8px 8px;
}
 
nav ul {
  background-color: #000;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

nav ul li a {
  color: white;
  text-decoration: none;  /* This removes underlines */
  font-weight: 500;
  font-size: 1rem;
}

nav ul li a:hover {
  text-decoration: none;  /* Ensure hover doesn’t add underline */
  color: #ff9900;  /* Optional: highlight color on hover */
}


.form-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.top-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.black-btn {
  background-color: black;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.black-btn:hover {
  background-color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.submit-btn {
  background-color: #ffcc00;
  color: black;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #e6b800;
}

.about-hero {
  position: relative;
  background: url('../images/about-banner.jpg') no-repeat center center/cover;
  height: 500px; /* Adjust if needed */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.about-overlay {
  background: none;  /* No overlay */
  color: white;
  padding: 30px;
  max-width: 900px;
  text-align: center;
}

.about-overlay h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);  /* Strong shadow */
}

.about-overlay p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 600;
  color: #f9f9f9;  /* Brighter white */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  padding: 0 20px;
}

.service-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon-circle {
  font-size: 2rem;
  color: #ff9900;
  margin-bottom: 15px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* FINAL Service Cards Fix */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  justify-items: center;
}

.service-card {
  width: 100%;
  max-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #ff9900;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Icon Animation on Hover */
.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #ff9900;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .icon-circle {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.6);
  animation: bounce 0.6s ease;
}

/* Bounce keyframes */
@keyframes bounce {
  0%, 100% {
    transform: scale(1.2) translateY(0);
  }
  50% {
    transform: scale(1.2) translateY(-8px);
  }
}

.quote-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.quote-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

.quote-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745; /* Green tick */
  font-weight: bold;
}

.green-check {
  color: #28a745;
  margin-right: 8px;
}

.quote-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  padding: 30px 20px;
}

.quote-list {
  margin-top: 20px;
  margin-bottom: 30px;
}

.quote-form {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Mobile Navbar Fix */
@media (max-width: 768px) {
  nav {
    /* flex-direction: column; */
    align-items: flex-start;
    padding: 4px;
    position: fixed;
    z-index: 101;
    width: 100%;
  }

  nav .logo {
    padding: 0;
    margin: 0;
    width: auto;
    max-width: 100%;
    height: auto;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    background: #111;
    padding: 15px;
    display: none; /* Hide initially */
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    margin-left: auto;
  }

  .about-hero {
    height: 770px;
  }

  .intro-container {
    padding: 14px;
  }

  .services-banner {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero {
    height: auto;
    padding: 60px 20px;
    text-align: center;
    flex-direction: column;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .service-card {
    max-width: 100%;
    min-height: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .quote-container {
    flex-direction: column;
    padding: 20px;
  }

  .quote-form,
  .quote-left {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-column {
    text-align: center;
  }
}


/* WhatsApp Floating Icon — single source of truth */
.osp-whatsapp{
  position: fixed; right:18px; bottom:18px;
  width:56px; height:56px; display:inline-flex;
  align-items:center; justify-content:center;
  background:#25D366; border-radius:50%;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
  z-index:9999; border:none; cursor:pointer; outline:none;
  opacity:0; transition:opacity .6s ease;
  animation:osp-pulse 2.8s ease-in-out 2s infinite;
}
.osp-whatsapp.is-visible{ opacity:1; }
.osp-whatsapp:hover{ transform: translateY(-1px); }
.osp-whatsapp svg{ width:28px; height:28px; fill:#fff; }
@keyframes osp-pulse{ 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-1px) scale(1.04)} }

/* Greeting bubble */
.osp-wa-bubble{
  position:fixed; right:84px; bottom:18px; max-width:260px;
  background:#111; color:#fff; padding:10px 12px; border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,.2); font-size:14px; line-height:1.25;
  z-index:9999; display:none;
}
.osp-wa-bubble.show{ display:block; animation:osp-pop .35s ease-out; }
@keyframes osp-pop{ from{transform:translateY(6px);opacity:0} to{transform:translateY(0);opacity:1} }
.osp-wa-bubble .close{ margin-left:8px; cursor:pointer; font-weight:700; opacity:.65; }
.osp-wa-bubble .close:hover{ opacity:1; }

/* Small screens: move bubble above icon */
@media (max-width:480px){ .osp-wa-bubble{ right:16px; bottom:84px; } }




















/* AI chat button – stacks under WhatsApp */
.osp-ai-btn{
  position: fixed; right:18px; bottom:84px;  /* 56px + gap above WA */
  width:56px; height:56px; display:inline-flex;
  align-items:center; justify-content:center;
  background:#111; border-radius:50%;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
  z-index:9999; border:none; cursor:pointer; outline:none;
}
.osp-ai-btn:hover{ transform: translateY(-1px); }

/* Panel */
.osp-ai-panel{
  position: fixed; right:18px; bottom:150px;  /* above both buttons */
  width: 320px; max-width: calc(100vw - 36px);
  background:#fff; border-radius:16px; box-shadow:0 18px 40px rgba(0,0,0,.2);
  overflow:hidden; z-index:10000; display:none;
}
.osp-ai-panel.show{ display:block; }

.osp-ai-header{
  background:#111; color:#fff; padding:10px 12px; display:flex; justify-content:space-between; align-items:center;
  font-weight:600;
}
.osp-ai-header button{ background:transparent; border:none; color:#fff; font-size:22px; cursor:pointer; }

.osp-ai-msgs{ max-height: 50vh; overflow:auto; padding:12px; background:#fafafa; }
.m{ padding:8px 10px; border-radius:10px; margin-bottom:8px; font-size:14px; line-height:1.35; }
.m.user{ background:#e8f3ff; margin-left:40px; }
.m.bot{ background:#fff; margin-right:40px; border:1px solid #eee; }
.m.typing{ opacity:.7; font-style:italic; }

.osp-ai-input{ display:flex; gap:8px; padding:10px; border-top:1px solid #eee; background:#fff; }
.osp-ai-input input{ flex:1; padding:10px 12px; border:1px solid #ddd; border-radius:10px; font-size:14px; }
.osp-ai-input button{ background:#111; color:#fff; border:none; padding:10px 14px; border-radius:10px; cursor:pointer; }
@media (max-width:480px){
  .osp-ai-btn{ bottom:84px; right:16px; }
  .osp-ai-panel{ right:16px; left:16px; width:auto; bottom:150px; }
}


/* ===== OSP AI Chat widget ===== */
.osp-chat-button{
  position:fixed; right:18px; bottom:90px; /* sits above WhatsApp */
  width:56px; height:56px; display:inline-flex; align-items:center; justify-content:center;
  background:#111; color:#fff; border-radius:50%; border:none; cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,.15); z-index:9999;
  transition:transform .15s ease, opacity .25s ease;
}
.osp-chat-button:hover{ transform:translateY(-1px); opacity:.95; }
.osp-chat-button svg{ width:26px; height:26px; fill:#fff; }

/* Panel */
.osp-chat-panel{
  position:fixed; right:18px; bottom:154px; /* 56+18 above button */
  width:320px; max-height:60vh; background:#fff; color:#111;
  border-radius:14px; box-shadow:0 18px 40px rgba(0,0,0,.25);
  display:none; flex-direction:column; overflow:hidden; z-index:9999;
  border:1px solid #eaeaea;
}
.osp-chat-panel.open{ display:flex; }

.osp-chat-header{
  background:#000; color:#fff; padding:10px 12px; display:flex; align-items:center; justify-content:space-between;
  font-weight:600; font-size:14px;
}
.osp-chat-close{ background:transparent; border:none; color:#fff; font-size:18px; cursor:pointer; }

.osp-chat-log{
  padding:10px; overflow:auto; flex:1; background:#fafafa;
}
.osp-msg{ margin:8px 0; max-width:85%; padding:8px 10px; border-radius:10px; line-height:1.35; font-size:14px; }
.osp-msg.user{ margin-left:auto; background:#111; color:#fff; border-bottom-right-radius:4px; }
.osp-msg.bot{ background:#fff; border:1px solid #eee; border-bottom-left-radius:4px; }

.osp-chat-form{ display:flex; gap:6px; padding:10px; border-top:1px solid #eee; background:#fff; }
.osp-chat-input{
  flex:1; font-size:14px; padding:10px 12px; border:1px solid #ddd; border-radius:8px; outline:none;
}
.osp-chat-send{
  background:#111; color:#fff; border:none; padding:10px 14px; border-radius:8px; cursor:pointer; font-weight:600;
}
.osp-chat-send[disabled]{ opacity:.6; cursor:not-allowed; }
