/* Custom CSS for LeadSourceCo Website */

body {
    font-family: 'Arial', sans-serif; /* Placeholder font, user can change */
    background-color: #000; /* Dark background from image */
    color: #adb5bd!important;
}

/* Header */
.navbar-brand {
    /* Assuming the logo is text-based for now, or user will replace with an image */
}
header {background:#111}
header img {max-height: 50px;}
header .nav-link {
    color: #FFFFFF !important; /* Override Bootstrap's default link color if needed */
    font-weight: 500;
}

header .nav-link:hover {
    color: #0D6EFD !important; /* Primary blue for hover */
}

/* Hero Section */
#hero {
    padding-top: 180px;
    padding-bottom: 180px; position: relative; overflow: hidden;
}
#hero video {position: absolute; width: 100%; height: 100%; object-fit: cover; bottom: 0; right: 0; z-index: 2; opacity: .5;}
#hero .container {z-index: 3; position: relative}
#hero:before, #hero:after {content: ''; display: block; z-index: 1; width: 550px; height:550px; opacity: 0.2; border-radius: 50%; position: absolute;
-webkit-filter: blur(43px); filter: blur(43px);}
#hero:before {background: radial-gradient(circle,rgba(0, 121, 200, 1) 10%, rgba(0, 121, 200, 0.0) 100%); left: 60px;top:-130px;}
#hero:after {background: radial-gradient(circle,rgba(105, 223, 255, 1) 1%, rgba(105, 223, 255, 0) 100%); right: -60px; bottom:10px;}
#hero .container {position: relative; z-index: 10;}
#hero h1 {
    font-size: 3.5rem; /* Adjust as per design */
}

#hero .lead {
    color: #adb5bd; /* Lighter grey for subheading */
}

.btn-primary {
    background-color: #0D6EFD; /* Primary blue from design */
    border-color: #0D6EFD;
    padding: 10px 30px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #0a58ca;
    border-color: #0a58ca;
}

/* Partners Section */
#partners img {
    max-height: 45px; /* Adjust as per design */
    opacity: 0.8;
    margin: 0 15px;
    max-width: 150px;
}
#partners .slider .slick-slide {text-align: center;}
#partners .slider .slick-slide img {margin: 0 auto;}
/* Engine Section */
#engine {padding: 75px 0;}
#engine .bg-secondary.bg-opacity-25 {
    background-color: rgba(52, 58, 64, 0.3) !important; /* Darker card background */
}

#engine h5 {
    margin-bottom: 1rem;
}

#engine ul li a {padding: 19px 12px;
    background-color: rgba(255, 255, 255, 0.05) !important;
    transition: background-color 0.3s ease;
    line-height: 24px; color:#adb5bd;
}

#engine ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}
#engine .list-unstyled li a span {
    color: #adb5bd; /* Blue arrow */
}
.btn-outline-light {
    padding: 10px 30px; color: #69dfff; border-color: #69dfff;
    font-weight: bold; display: inline-block; margin: 0 auto;
}
.card-block {background: #111; padding: 15px; border-radius: 16px;}
.card-block img {width: 100%; border-top-left-radius: 14px; border-top-right-radius: 14px; margin-bottom: 15px;}
.card-block ul, .empowering {margin: 0; -webkit-column-count: 2;   -moz-column-count: 2; 
  column-count: 2;}
.card-block ul li {padding:6px 0}
/* Challenges Section */
#challenges {background: #111; padding: 25px; border-radius: 16px;/* Slightly lighter dark section background */
}

#challenges .bg-secondary.bg-opacity-25 {
    background-color: rgba(33, 37, 41, 0.7) !important; /* Card background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

#challenges h5 {
    color: #0D6EFD; /* Blue for card titles */
}

/* CTA Section */
#cta {padding: 120px 0;}
#cta h2 {
    font-size: 63px; 
}
#cta h2 span {color: #69dfff;}
#cta .btn-primary {background-color: #69dfff; color: #000;}

/* Testimonials Section */
#testimonials .bg-secondary.bg-opacity-25 {
    background-color: rgba(52, 58, 64, 0.3) !important; /* Darker card background */
    position: relative; padding: 45px 55px; text-align: center;
}

#testimonials .bg-secondary.bg-opacity-25::before {
    content: '“';
    font-size: 260px;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 50px;
    left: 10px;
    line-height: 0.5;
}

#testimonials .bg-secondary.bg-opacity-25::after {
    content: '”';
    font-size: 260px;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    bottom: -70px;
    right: 10px;
    line-height: 0.5;
}

/* Footer */
footer {
    background: #161616;
}

footer .nav-link {
    color: #adb5bd !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

footer .nav-link:hover {
    color: #FFFFFF !important;
}

footer .text-muted {
    color: #6c757d !important;
}
footer img {max-height: 40px;}
footer .navbar-brand {
    font-size: 1.5rem; /* Smaller logo in footer */
}
footer .socials a, footer .socials a  i{color: #454545; font-size: 18px;}
/* Utility for rounded corners as seen in design */
.rounded-custom {
    border-radius: 15px; /* Adjust as needed */
}

header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

header li a {
  display: block;
  text-decoration: none;
}

header li a:hover,
header .menu-btn:hover {
  color: #8f8f8f;
}
header .nav {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

header .menu-icon .navicon:before,
header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

header .menu-icon .navicon:before {
  top: 5px;
}

header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

header .menu-btn {
  display: none;
}

header .menu-btn:checked ~ .nav {
  max-height: 240px;
}

header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}


@media (min-width: 768px) {
  header .nav li {
    float: left;
  }
  header .nav li a {
    padding: 20px 30px;
  }
  header .nav {
    clear: none;
    float: right;
    max-height: none;
  }
  header .menu-icon {
    display: none;
  }
}

@media (max-width: 767px) {
    .navbar-brand img {max-width: 200px;}
    header .nav li {display: block;}
    header .nav {display: block; width:100%;}
    nav.d-flex {display: inline-block!important;}
    header.py-3 {padding: 0!important;}
    .navbar-brand {display: inline-block; margin-top: 15px;}
    #hero {padding:100px 0;}
    #partners img {height: 20px; margin: 0;}
    .card-block {margin-bottom: 30px;}
}