
.bg-custom {
  background-color: #154880;
}

/* Left side shadow */
.left-shadow {
  box-shadow: 10px 0 30px rgba(0,0,0,0.4); /* shadow on right side of image */
}

/* Right side overlay */
.right-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2); /* semi-transparent overlay */
  z-index: 1; /* ensure overlay is above background but below content */
}

/* Ensure content is above overlay */
.right-overlay h2 {
  position: relative;
  z-index: 2;
}

/* Section height */
#insight-section {
  min-height: 300px;
  position: relative;
}

/* Image cover */
.object-fit-cover {
  object-fit: cover;
  height: 100%;
}

/* Border curve */
.border-curve {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 5;
}


/* Horizontal ribbon below full image */
.ribbon {
  height: 60px;
  width: 100%;
  background-color: #154880;
}
  .main_logo{
        height: 150px; 
        width: auto;
  }

/* Navbar base */
.navbar {
  padding: 0.5rem 1rem;
  background-color: #ffffff;
}

/* Navbar Brand Logo and Text */
.navbar-brand img {
  display: block;
  object-fit: contain;
  margin-right: 2rem;
}

.navbar-brand span {
  font-size: 1.2rem;
  color: #262655;
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #262655;
  font-weight: 500;
  margin-left: 1rem;
  transition: color 0.3s;
  font-size: 18px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fab732;
}

/* Toggler Icon Custom */
/* .navbar-toggler {
  border: none;
}
.navbar-toggler-icon {
  filter: invert(0.3);
} */


.navbar-toggler-icon {
  display: block;
  width: 24px;
  height: 24px;
  background: none;
  position: relative;
}

/* Hamburger/X lines */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon div {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #262655;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before { top: 0; }
.navbar-toggler-icon div { top: 50%; transform: translateY(-50%); }
.navbar-toggler-icon::after { bottom: 0; }

/* Hamburger state (menu closed) */
.navbar-toggler.collapsed .navbar-toggler-icon::before {
  transform: rotate(0deg) translateY(0);
}
.navbar-toggler.collapsed .navbar-toggler-icon div { opacity: 1; }
.navbar-toggler.collapsed .navbar-toggler-icon::after {
  transform: rotate(0deg) translateY(0);
}

/* X state (menu open) */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  top: 50%;
  transform: rotate(45deg) translateY(-40%);
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon div {
  opacity: 0;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  top: 50%;
  transform: rotate(-45deg) translateY(-40%);
}

/* Ribbon below image */
.ribbon-image {
    height: 100px;
    width: 100%; /* same width as image container */
    max-width: 100%; /* responsive */
    background-color: #154880;
    margin-top: -1px; /* touch image */
    top: -50px;
    position: relative;
    max-width: 1200px;
}

/* Primary color class */
.text-primary {
    color: #154880 !important;
}

.top-left-square {
    width: 50px;
    height: 50px;
    background-color: #154880;
    position: absolute;
    top: 0;
    left: 0; /* ensures it's always at top-left of container */
}

.container {
    position: relative; /* make absolute elements relative to container */
}

/* Full image styling */
.about-image {
    width: 100%;
    max-width: 1200px;
    height: 700px;
    display: block;
    margin: 0 auto;
    position: relative;
}

/* Top-left square */
.top-left-square {
    width: 50px;
    height: 50px;
    background-color: #154880;
    position: absolute;
    /* position bottom-right of square at top-left of image */
    top: 0;
    left: 0;
    transform: translate(-5%, -92%);/* move square so bottom-right touches image */
/*   transform: translate(-77%, -92%); */
}

#about-us-section p{
    font-size: 18px;
}


/* Background image covering entire section */
#core-values-section .bg-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('/assets/images/african-american-nurse-takes-notes-consultation-with-old-people-768.jpg');
background-size: cover;
background-position: center;
z-index: 1;
}

/* White gradient overlay from right to left ending 80px before content */
#core-values-section .gradient-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to left, rgba(255,255,255,1) 60%, rgba(255,255,255,0) calc(100% - 80px));
z-index: 2;
pointer-events: none; /* gradient does not block text interactions */
}

/* Content starting from half of the section */
#core-values-section .content {
position: relative;
z-index: 3;
max-width: 700px;
margin-left: 40%;
margin-top: 150px;
}

/* Numbered items color */
#core-values-section .text-primary {
color: #154880 !important;
}
#core-values-section .top-right-squares {
position: absolute;
top: 0;
right: 0;
z-index: 4; /* above content */
}

/* General square style */
#core-values-section .square {
width: 100px;
height: 100px;
background-color: #154880;
position: absolute;
}

/* First square at top-right */
#core-values-section .first-square {
top: 0;
right: 0;
}

/* Second square touching bottom-left of first */
#core-values-section .second-square {
top: 100px; /* equal to first square height */
right: 100px; /* shift left to touch bottom-left of first */
}


.core_values_subtitle{
font-style: italic;
color: #154880;
}

#core-values-section .content p {
    line-height: 2;
}


#core-values-section .content h2{
font-size: 3rem;
}

#core-values-section .content p{
font-size: 17px;
line-height: 2.5;
}
/* Top-left squares */
#our-services .top-left-squares {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
}
#our-services .top-left-squares .square {
    width: 80px;
    height: 80px;
    background-color: #154880;
    position: absolute;
}
#our-services .top-left-squares .first-square {
    top: 0;
    left: 0;
}
#our-services .top-left-squares .second-square {
    top: 80px;
    left: 80px;
}

/* Background image */
#our-services .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/woman-writing-blurred-fruit-768.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

#our-services .core_values_subtitle{
    font-size: 3rem;
}

#our-services .content h2{
    font-size: 3rem;
} 

#our-services .content p, .content-project-design p{
    font-size: 17px;
}
.expertise-list li,.expertise-list li{
    font-size: 18px;
}

/* Left-to-right gradient overlay */
#our-services .gradient-overlay-left {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to right, rgb(255, 255, 255) 40%, rgba(255,255,255,0) calc(100% - 80px));
z-index: 2;
pointer-events: none;
}

/* Content starting from left side, half-height alignment */
#our-services .content {
position: relative;
z-index: 3;
max-width: 700px;
margin-top: 25%;
}


.expertise-list {
list-style-type: disc;   /* bullet style */
padding-left: 40px;      /* indentation for bullets */
}

.expertise-list li {
margin-bottom: 10px;     /* spacing between bullets */
}
.expertise-list {
list-style: none; /* removes default marker */
padding-left: 0;  /* reset padding */
}

.expertise-list li {
position: relative;
padding-left: 25px; /* space for the custom bullet */
margin-bottom: 20px;
margin-top: 20px;
line-height: 1.5;
}

.expertise-list li::before {
content: "•";            /* custom bullet character */
position: absolute;
left: 0;
top: 0;
color: #154880;           /* bullet color */
font-size: 20px;          /* bullet size */
line-height: 1;           /* vertical alignment tweak */
    font-size: 43px;
line-height: 0.5;
}

.expertise-list .text-primary {
font-style: italic;
font-weight: 400;
}

.project-design {
padding-left: 30px;
}

p{
line-height: 2;
}

#our-services .bg-image-project-design {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('/assets/images/employee-working-marketing-setting-768.jpg');
background-size: cover;
background-position: center;
z-index: 1;
min-height: 1250px;
}

#our-services .content-project-design,#our-services .content-approach {
position: relative;
z-index: 3;
max-width: 900px;
margin-top: 30%;
background: #F4EDE5;
margin-left: auto;
margin-right: auto;
}

.image-container img {
width: 100%;
/* height: 500px;
object-fit: cover;
border-radius: 8px; */
}

#our-services .bg-image-approach {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('/assets/images/african-man-black-suit-man-writing-glass-768.jpg');
background-size: cover;
background-position: center;
z-index: 1;
min-height: 1250px;
}

.organizational-learning p{
font-size: 17px;
}
.approach-list {
list-style: none;
padding-left: 0;
}

.approach-list li {
position: relative;
margin-bottom: 20px;
margin-top: 20px;
line-height: 2.5;
}

.content-approach{
opacity: 0.9;
}

.custom-section {
background-color: #154880;
height: 600px;
position: relative;
display: flex;
justify-content: center;
align-items: flex-end;
overflow: hidden;
}

.custom-section img {
width: 200px; /* adjust logo size as needed */
margin-bottom: 20px;
}

.expertise-list.project-design .text-primary{
margin-left: 5px;
}



/* Smaller screens */
@media (max-width: 768px) {
  #core-values-section .bg-image{
    background-image: url('/assets/images/african-american-nurse-takes-notes-consultation-with-old-people-768.jpg');
  }
  .about-section {
    background-image: url('/assets/images/happy-employees-480.jpg');
  }
}

/* Medium screens */
@media (max-width: 1200px) {
  #core-values-section .bg-image{
    background-image: url('/assets/images/african-american-nurse-takes-notes-consultation-with-old-people-1200.jpg');
  }
  .about-section {
    background-image: url('/assets/images/happy-employees2.jpg');
  }
}

/* Larger screens (optional) */
@media (min-width: 12001px) {
  #core-values-section .bg-image{
    background-image: url('/assets/images/african-american-nurse-takes-notes-consultation-with-old-people.jpg');
  }
  .about-section {
    background-image: url('/assets/images/happy-employees2.jpg');
  }
}

@media (max-width: 480px) {

.main_logo {
height: 80px;
}
}

@media (max-width: 992px) {

.main_logo {
height: 100px;
}

#insight-section .col-lg-6 {
height: auto
}

#insight-section {
min-height: 300px;
}

#about-us-section.p-5{
padding: 0!important;
margin-top: 10px;
}

.about-image{
height: auto;
}

#core-values-section .square,#our-services .top-left-squares .square {
width: 50px;
height: 50px;
}

#core-values-section .second-square,#our-services .top-left-squares .second-square {
top: 50px;
right: 50px;
}

#our-services .top-left-squares .second-square {
left: 50px;
}

#core-values-section .content {
margin-left: 0;
}
#core-values-section .gradient-overlay {
opacity: 0.9;
background: linear-gradient(to left, rgb(255, 255, 255) 95%, rgba(255,255,255,0) calc(100% - 0px));
}

#our-services{
padding-top: 0!important;
}

#our-services .content{
margin-top: 55%;
}

#our-services .content.px-5,#core-values-section .content.px-5,.content-project-design.px-5,#our-services .container.my-5 {
padding-right: 2rem !important;
padding-left: 2rem !important;
}

#our-services .gradient-overlay-left {
background: linear-gradient(to right, rgb(255, 255, 255) 100%, rgba(255,255,255,0) 100% 100%);
opacity: 0.9;
}

}


