/* ===================================
   Global Styles
=================================== */
:root {
  --primary-color: #020E37;
  --secondary-color: #2889CF;
  --light-bg: #f9fbff;
  --text-dark: #1a1a1a;
  --text-light: #5f5f5f;
  --white: #ffffff;
}
*{
  font-size: 16px;
}
a {
    text-decoration: none;
}

.text-black {
    color: #000;
}

li {
    list-style: none;
}

.text-white {
    color: #fff;
}

.mt-30 {
  margin-top: 30px;
}

.text-center {
  text-align: center;
}
.justify-content-center {
  justify-content: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1470px;
  margin: 0 auto;
}



/* HEADER WRAPPER */
.header_bcs_wrapper {
  position: relative;
  z-index: 1000;
  /* 👇 Add margin around the entire header */
  margin: 20px 20px 0 20px; /* top, right, bottom, left */
  border-radius: 0px 0px 20px 20px; /* optional for rounded corners */
  overflow: hidden; /* keeps rounded edges visible */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Sticky effect */
.header_bcs_sticky {
  position: fixed;
  top: 20px; /* match top margin spacing when sticky */
  left: 20px;
  right: 20px;
  width: auto; /* so it respects left & right spacing */
  margin: 0; /* remove margin during stick */
  border-radius: 15px;
}

/* TOP HEADER */
.header_bcs_top {
  background-color: #00113b;
  color: #fff;
  padding: 8px 0;
  border-radius: 20px 20px 0px 0px;
}

.header_bcs_container {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
      width: 95%;
}

/* Top Info */
.header_bcs_info span {
  margin-right: 20px;
  font-size: 0.9rem;
  color: #d5d8e6;
}

.header_bcs_info i {
  color: #6cb8ff;
  margin-right: 6px;
}


/* MAIN HEADER */
.header_bcs_main {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header_bcs_logo img {
  width: 110px;
}

/* Nav Menu */
.header_bcs_nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.header_bcs_nav a {
  text-decoration: none;
  color: #00113b;
  font-weight: 500;
  transition: all 0.3s ease;
}

.header_bcs_nav a:hover,
.header_bcs_nav a.active {
  color: #2196f3;
}

/* Contact Us Button */
.header_bcs_btn {
  background: #6cb8ff;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: 0.3s;
  border: 1px solid #55BDFF;
}

.header_bcs_btn:hover {
  background: #2196f3;
}

/* Mobile Menu Icon */
.header_bcs_toggle {
  display: none;
  font-size: 1.4rem;
  color: #00113b;
  cursor: pointer;
}

.header_toggle_contact_btn {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .header_bcs_container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header_bcs_info {
    flex: 1 1 100%;
    margin-bottom: 10px;
  }

  .header_bcs_top .footer-info-social-icons {
    display: none;
  }

  .header_bcs_social {
    flex: 1 1 100%;
    text-align: right;
  }

  .header_bcs_nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: fixed;
    top:186px;
    left: 0;
    right: 0;
    width: 95%;
    padding: 15px 0;
    gap: 5px;
    margin: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .header_bcs_nav ul.show {
    display: flex;
  }

  .header_bcs_nav ul li {
    text-align: center;
    margin: 10px 0;
  }

  .header_bcs_toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .header_bcs_info span {
    display: block;
    margin-bottom: 6px;
  }

  .header_bcs_top {
    display: none;
  }

  .header_bcs_social {
    text-align: center;
  }

  .header_bcs_container {
    /* flex-direction: column; */
    gap: 10px;
  }
   .header_bcs_nav ul {
    top: 125px;
   }
}



.contact-btn {
  background: var(--secondary-color);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #003ecb;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  color: var(--primary-color);
  cursor: pointer;
}


/* ===================================
   Footer
=================================== */

.footer-top-bar {
    background-image: url(../images/footer-top-image.png);
    height: 22px;
    background-size: cover;
}

/* Footer Section */
.contact-info_bcs_footer {
  background-color: #031447;
  color: #fff;
  padding: 60px 20px;
}

.contact-info_bcs_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* About Section */
.contact-info_bcs_about .contact-info_bcs_logo {
  width: 120px;
  margin-bottom: 15px;
}

.contact-info_bcs_about p {
  font-size: 0.95rem;
  color: #d5d8e6;
  line-height: 1.6;
  margin-bottom: 20px;
}


/* Navigation */
.contact-info_bcs_nav h3,
.contact-info_bcs_contact h3,
.contact-info_bcs_touch h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.contact-info_bcs_nav ul,
.contact-info_bcs_contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info_bcs_nav li,
.contact-info_bcs_contact li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #cfd5f3;
  display: flex;
  gap: 10px;
}

.contact-info_bcs_nav a {
  text-decoration: none;
  color: #cfd5f3;
  transition: all 0.3s ease;
}

.contact-info_bcs_nav a:hover {
  color: #007bff;
}

/* Contact Info Icons */
.contact-info_bcs_contact i {
  margin-right: 8px;
  color: #007bff;
}

/* Be In Touch */
.contact-info_bcs_subscribe {
  position: relative;
  display: flex;
  align-items: center;
  background: #0b1b58;
  border-radius: 12px;
  overflow: hidden;
  height: 45px; /* 👈 set the height once — both match */
}

.contact-info_bcs_subscribe input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  padding: 0 15px; /* 👈 remove vertical padding */
  height: 100%;    /* 👈 match container height */
}

.contact-info_bcs_subscribe input::placeholder {
  color: #cfd5f3;
}

.contact-info_bcs_subscribe button {
  background: #fff;
  border: none;
  padding: 0 15px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  height: 100%; /* 👈 matches input perfectly */
  border-radius: 12px;
}

.contact-info_bcs_subscribe button:hover {
  background: #fff;
}


/* Responsive */
@media (max-width: 992px) {
  .contact-info_bcs_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .contact-info_bcs_container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-info_bcs_subscribe {
    justify-content: center;
  }
}



.footer-info-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-info-social-icons a{
    display: inline-block;
}

.footer-info-social-icons a span {
    display: inline-block;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background-color: var(--white);
    text-align: center;
    line-height: 50px;
}

.footer-info-social-icons a span svg{
    fill:#3A98D0
}

.footer-info-social-icons a:hover span {
    background-color: #3A98D0;
}

.footer-info-social-icons a:hover span svg{
    fill:var(--white)
}

.footer-info-nav-links a{
    color: var(--white);
}

.footer-info-nav-links a:hover {
    color: var(--secondary-color);
}

.footer-info {
    background: var(--primary-color);
    padding: 30px 0px;
}

.footer {
  background: var(--white);
  color: var(--white);
  padding: 20px 0;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer .social i {
  margin-left: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .social i:hover {
  color: var(--secondary-color);
}

@media (max-width: 992px) {
  

  .menu-toggle {
    display: block;
  }
}


/* Main Heading CSS */

.main-section-heading {
    position: relative;
}

.section-bg-text {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  font-size: 6.1rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  font-family: "Inter", sans-serif;
  /* text-transform: capitalize; */
  pointer-events: none;
  user-select: none;
  text-shadow: -1px -1px 0 #E3E3E3, 1px -1px 0 #E3E3E3, -1px 1px 0 #E3E3E3, 1px 1px 0 #E3E3E3; 
  color: white;
  line-height: 110px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 75px;
  margin-left: 14px;
  z-index: 3;
}

.section-title {
  font-size: 25px;
  font-weight: 700;
  color: #000;
  font-family: "Inter", sans-serif;
}

.section-line {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
      margin-top: 10px;
}

.section-line .line-primary {
  width: 40px;
    height: 3px;
    background-color: #6BC5FF;
    border-radius: 5px;
}

.section-line .line-secondary {
  width: 65px;
    height: 3px;
    background-color: #6BC5FF;
    border-radius: 5px;
}


/* ===================================
   Brand Connect Section
=================================== */
.brand-connect-section {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  margin-top: 30px;
}

.brand-connect-bg {
  position: relative;
  background: url('../images/about_hero.png') center/cover no-repeat;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-connect-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.brand-connect-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  z-index: 1;
}

.brand-connect-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.brand-connect-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 18px;
}

.brand-connect-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 500;
  padding: 10px 24px;
  border: 1.6px solid #0000001A;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 3px 1.5px #ffffff70;
}

.brand-connect-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .section-header {
    justify-content: center;
  }

  .brand-connect-bg {
    height: 200px;
  }

  .brand-connect-title {
    font-size: 20px;
  }

  .brand-connect-desc {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .brand-connect-bg {
    height: 230px;
  }

  .brand-connect-title {
    font-size: 18px;
  }

  .brand-connect-btn {
    font-size: 14px;
    padding: 8px 18px;
  }
}


/* ===================================
   Contact - Next Level Section
=================================== */
.nextlevel-contact {
  position: relative;
  padding-top: 70px; /* space for overflow image */
  margin-bottom: 50px;
}

.nextlevel-container {
  background-color: #3A98D0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 50px;
  /* position: relative;*/
  overflow: hidden;
}

/* ===== Image Wrapper (floats outside) ===== */
.nextlevel-image-wrap {
  position: absolute;
  bottom: 0px; /* makes image overflow above */
  /* left: 40px; */
  flex: 0 0 35%;
  z-index: 2;
}

.nextlevel-image-wrap img {
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Text Content ===== */
.nextlevel-content {
  flex: 1;
  margin-left: 300px;
  color: #fff;
  /* max-width: 600px; */
}

.nextlevel-subtitle .section-header {
  margin-left: 0;
}

.nextlevel-subtitle .section-title{
  color: #fff;
}
.nextlevel-subtitle .section-line {
  margin-top: 4px;
}
.nextlevel-subtitle .section-line .line-primary , .nextlevel-subtitle .section-line .line-secondary{
  background-color:#003D63;
}

.nextlevel-heading {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}

.nextlevel-btn {
  display: inline-block;
  background: #fff;
  color: #2e9cdb;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nextlevel-btn:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}


/* =======================
   Responsive Design
======================= */

@media (max-width: 1021px) {
  .nextlevel-content {
    margin-left: 200px;
  }
}

@media (max-width: 992px) {
  .nextlevel-container {
    flex-direction: column;
    text-align: center;
    padding: 50px 25px 30px;
  }

  .nextlevel-image-wrap {
    position: relative;
    top: -40px;
    left: 0;
    margin-bottom: -20px;
    display: flex;
    justify-content: center;
  }

  .nextlevel-image-wrap img {
    width: 200px;
  }

  .nextlevel-heading {
    font-size: 22px;
  }

  .nextlevel-btn {
    padding: 10px 24px;
  }
  .nextlevel-content {
    margin: auto;
    max-width: 600px;
  }
}

@media (max-width: 576px) {
  .nextlevel-contact {
    padding-top: 50px;
  }

  .nextlevel-heading {
    font-size: 20px;
  }

  .nextlevel-line {
    width: 30px;
  }
}


.beyond-dev-section {
  background: #fff;
  padding: 20px 20px;
  font-family: "Inter", sans-serif;
  color: #0d0d0d;
}

.beyond-dev-subtitle {
  font-size: 44px;
  color: #3A98D0;
  font-weight: 600;
  margin-top: 20px;
}

.beyond-dev-title {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}