/* Base reset */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');
body, html {
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", sans-serif;
  scroll-behavior: smooth;
  background-color: #0a0a0a;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(to bottom right, rgba(10, 10, 10, 0.1), rgba(0, 0, 0, 0.1)), 
              url('../images/AdobeStock_1521797823.jpg') no-repeat center center/cover;
               color: white;
  padding: 0 1.5rem;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 200px;
  padding-bottom: 150px;
}

.hero-section h1 {
  max-width: 800px;
  margin: 0 auto;
  font-size: 3.8rem;
}

.hero-section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.hero-section .btn {
  transition: all 0.3s ease-in-out;
}

.hero-section .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
}

/* Custom Navbar */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: center;
  background: linear-gradient(to top, transparent 0%, #0a0a09 100%);
}
.custom-navbar .container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffc107; /* Gold tone */
}
.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #ffc107;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #ffc107;
}
/* Hamburger Base */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #ffc107;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0a0a0a;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    display: none;
    transition: all 0.3s ease;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 1.2rem;
  }
}
/* Mission & Vision Section - Clean Premium Look */
.mission-section {
  padding: 100px 20px;
  background-color: #0a0a0a;
  color: #f1f1f1;
}

.mission-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.mission-content-box {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 0 80px rgba(255, 193, 7, 0.06);

  border:1px solid #333;
}

.mission-block,
.vision-block {
  flex: 1 1 300px;
}

.section-title {
  font-size: 1.8rem;
  color: #ffc107;
  margin-bottom: 1rem;
  font-weight: 700;
}

.mission-content-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* Emphasized quote block */
.highlight-quote {
  font-style: italic;
  font-size: 1.1rem;
  border-left: 4px solid #ffc107;
  padding-left: 1rem;
  color: #ffc107;
  margin-top: 2rem;
  line-height: 1.7;
}

.highlight-quote strong {
  color: #ffc107;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .mission-content-box {
    flex-direction: column;
    padding: 40px 25px;
  }
}
/* Icon Wraps */
.icon-wrap {
  margin-bottom: 1rem;
}

.mission-icon {
  width: 50px;
  height: 50px;
  filter: brightness(1.2) saturate(1.2);
}
.mission-icon {
  font-size: 2.5rem;
  color: #ffc107;
  margin-bottom: 1rem;
}
/* Core Values Section */
.core-values-section {
  background-color: #111;
  color: #f1f1f1;
  padding: 100px 20px;
}

.value-card {
  background-color: #1a1a1a;
  border-radius: 15px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  height: 100%;
}

.value-card i {
  font-size: 2.2rem;
  color: #ffc107;
  margin-bottom: 15px;
}

.value-card h5 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #ffc107;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: #ffc107;
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.1);
}
/* Bridge & Beacon Section */
.bridge-section {
  background: #0b0b0b;
  color: #f1f1f1;
  padding: 100px 20px;
  position: relative;
}

.bridge-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.bridge-step {
  flex: 1 1 250px;
  background-color: #161616;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid transparent;
  transition: 0.3s;
  min-height: 220px;
}

.bridge-step:hover {
  border-color: #ffc107;
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.1);
  transform: translateY(-6px);
}

.step-icon {
  font-size: 2.4rem;
  color: #ffc107;
  margin-bottom: 15px;
}

.bridge-step h5 {
  color: #ffc107;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.bridge-step p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Connector Lines */
.connector-line {
  width: 40px;
  height: 2px;
  background: #444;
  align-self: center;
}

.beacon i {
  color: #ffc107;
  text-shadow: 0 0 12px #ffc107;
}

/* Responsive */
@media (max-width: 768px) {
  .bridge-flow {
    flex-direction: column;
    align-items: center;
  }

  .connector-line {
    width: 2px;
    height: 30px;
  }
}
/* Services Section */
.services-section {
  background-color: #111;
  color: #f1f1f1;
  padding: 100px 20px;
}

.service-card {
  background-color: #1a1a1a;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}

.service-card:hover {
  border-color: #ffc107;
  transform: translateY(-8px);
  box-shadow: 0 0 24px rgba(250, 204, 21, 0.08);
}

.service-icon {
  font-size: 2.5rem;
  color: #ffc107;
  margin-bottom: 15px;
}

.service-card h5 {
  font-size: 1.3rem;
  color: #ffc107;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}
/* Enhanced Services Section */
.services-section {
  background: #0a0a0a;
  padding: 100px 20px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
}

.service-block {
  padding: 60px 0;
  border-top: 1px solid #222;
}

.service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.service-content i {
  font-size: 3rem;
  color: #ffc107;
  flex-shrink: 0;
  text-shadow: 0 0 10px rgba(250, 204, 21, 0.4);
}

.service-content h3 {
  font-size: 1.8rem;
  color: #ffc107;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 1rem;
  color: #eee;
  line-height: 1.7;
  max-width: 550px;
}

/* Alternate reverse layout */
.service-block.reverse .service-content {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 768px) {
  .service-content {
    flex-direction: column;
    text-align: center;
  }
  .service-content p {
    max-width: 100%;
  }
}
/* CTA Section */
.cta-section {
  background: radial-gradient(circle at center, #ffc107 5%, #0a0a0a 80%);
  padding: 120px 20px;
  color: white;
  position: relative;
}

.cta-heading {
  font-size: 2.5rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtext {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 2rem;
}

.btn-cta {
  background-color: #fff;
  color: #111;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 1rem;
}

.btn-cta:hover {
  background-color: #ffdf46;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.5);
  transform: translateY(-3px);
}
/* Contact Split Section */
.contact-split-section {
  background-color: #0a0a0a;
  padding: 100px 20px;
  color: #f1f1f1;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item i {
  font-size: 1.6rem;
  color: #facc15;
}

.contact-item h6 {
  margin: 0;
  font-size: 1rem;
  color: #facc15;
}

.contact-item a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Form Style Enhancements */
.contact-split-section input,
.contact-split-section textarea {
  background-color: #1a1a1a;
  color: #f1f1f1;
  border: 1px solid #333;
}

.contact-split-section input:focus,
.contact-split-section textarea:focus {
  border-color: #facc15;
  box-shadow: none;
}

.contact-split-section label {
  font-size: 0.95rem;
}

/* Final Quote Banner Section with Background */
.quote-banner-section {
  position: relative;
  background: #0a0a0a;
  padding: 120px 30px;
  text-align: center;
  color: #f1f1f1;
  overflow: hidden;
}

.quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at center, rgba(250, 204, 21, 0.12) 0%, rgba(10, 10, 10, 0.96) 70%),
    url('../images/AdobeStock_1275637653.jpg') no-repeat center center / cover;
  z-index: 0;
  opacity: 0.8;
}

.quote-banner-section .container {
  position: relative;
  z-index: 2;
}

.quote-text {
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.quote-text span {
  color: #ffc107;
  font-weight: 600;
}
.text-warning
{color: #ffc107!important}
/* Footer Section */
.footer-section {
  background-color: #0a0a0a;
  padding: 30px 20px;
  color: #ccc;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

.footer-section .footer-brand {
  font-weight: 400;
}

.footer-section .footer-social a {
  color: #facc15;
  margin-left: 20px;
  font-size: 1.2rem;
  transition: 0.3s ease;
}

.footer-section .footer-social a:hover {
  color: #ffdf46;
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #facc15;
  color: #111;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  z-index: 999;
  display: none;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.4);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: #ffdf46;
  transform: translateY(-4px);
}
@media only screen and (max-width: 768.98px) {
  .hero-section h1 {
  max-width: 700px;
  margin: 0 auto;
    margin-bottom: 0px;
  font-size: 2.8rem;
}
.bridge-step
{min-height: auto!important}
}
@media only screen and (max-width: 534.98px) {
  .hero-section h1 {
  max-width: 400px;
  margin: 0 auto;
    margin-bottom: 0px;
  font-size: 1.8rem;
}
.bridge-step
{min-height: auto!important}
}