* {
    margin: 0px;
    padding: 0px;
    font-family: 'UniNeueBook', sans-serif;
}

@font-face {
    font-family: 'UniNeue-Regular';
    src: url('../font/UniNeue-Regular.otf') format('opentype');
  
  }
  
  @font-face {
    font-family: 'UniNeue-Bold';
    src: url('../font/UniNeue-Bold.otf') format('opentype');
  }
  
  p,button,a,input {
    font-weight: 400;
    font-family: 'UniNeue-Regular';
  }
  
  h1, h2, h3, h4, h5, h6,span {
    font-family: 'UniNeue-Bold';
  }
h4.case_study_highlight_text {
    font-weight: bold;
    font-size: 32px;
    /* color: red; */
    margin-top: 40px;
}

.sector-section-title {
  font-size: 24px;
  font-weight: 500;
  color: #999;
}

.sector-highlighted-text {
  background: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 10px;
  font-weight: bold;
}

.sector-subtitle {
  color: #666;
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Navbar Styling */
.navbar {
background-color: #fff;
padding: 15px 30px;
border-bottom: 1px solid #ddd;
}

.nav-link {
color: black;
font-weight: 500;
margin-right: 20px;
}

.nav-link.active {
position: relative;
color: black;
/* or whatever color you want for text */
}

.nav-link.active::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 40%;
height: 2px;
background-color: black;
}

@media (max-width: 576px) {
.nav-link.active::after {
width: 60%;
}

.nav-link {
color: black;
font-weight: 500;
text-align: center;
}
}

.btn-contact {
background-color: #4a4a4a;
color: white;
padding: 8px 15px;
border-radius: 5px;
}

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

/* Search Box Styling */
.search-box {
position: relative;
width: 200px;
}

.search-box input {
padding-right: 40px;
/* Space for the icon */
}

.search-box i {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
color: gray;
}

body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9f9;
}

.hero {
/* background-image: url('../images/insight_1.png'); */
background-size: cover;
background-position: center;
color: white;
padding: 160px 20px;
text-align: center;
}

.hero h1 {
font-size: 2.8rem;
font-weight: bold;
line-height: 1.3;
}

.section {
padding: 40px 20px;
}

.section h2 {
font-size: 1.6rem;
font-weight: bold;
margin-bottom: 15px;
color: #2c2c2c;
}

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

.research-image {
width: 100%;
height: 440px;
background-color: #444;
border-radius: 10px;
}

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

.research-image {
height: 200px;
}
}

.deliverables {
background-color: #e0dddd;
}



/* case-studies-section */
.case-studies-section {
padding: 30px;
}

.case-studies-section h2 {
font-size: 24px;
}

.case-studies-section .badge {
font-size: 16px;
font-weight: 500;
border-radius: 6px;
}

.case-card {
height: 300px;
margin: 16px;
background-color: #000;
}

.case-card img {
object-fit: cover;
height: 100%;
width: 100%;
filter: brightness(0.7);
transition: all 0.3s ease;
}

.case-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
color: #fff;
padding: 20px;
border-radius: 12px;
z-index: 2;
}

.case-overlay h5 {
position: relative;
top: 15%;
font-size: 30px;
font-weight: 600;
margin-bottom: 10px;
}

.case-overlay p {
position: relative;
top: 20%;
font-size: 16px;
font-weight: 300;
color: #fff;
}


.read-more-icon {
font-size: 20px;
font-weight: bold;
cursor: pointer;
}

.carousel-indicators [data-bs-target] {
background-color: #999;
width: 12px;
height: 12px;
border-radius: 50%;
margin: 0 5px;
}

.carousel-indicators .active {
background-color: #333;
}

@media (max-width: 768px) {
.case-studies-section {
padding: 20px;
}

.case-studies-section h2 {
font-size: 18px;
text-align: center;
}

.case-studies-section .badge {
font-size: 12px;
padding: 6px 10px;
display: block;
margin: 0 auto 10px;
text-align: center;
}

.case-card {
height: 220px;
margin: 12px 0;
}

.case-overlay {
padding: 12px;
border-radius: 8px;
}

.case-overlay h5 {
font-size: 11px;
top: 10%;
}

.case-overlay p {
font-size: 11px;
top: 15%;
}

.read-more-icon {
font-size: 18px;
}

.carousel-indicators [data-bs-target] {
width: 10px;
height: 10px;
margin: 0 3px;
}
}


/* footer */
.footer {
background-color: #f4f4f4;
padding: 30px;
}

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

.footer-top {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-logo {
width: 120px;
}

.footer-nav {
width: 60%;
}

.footer-nav ul {
display: grid;
grid-template-columns: repeat(4, 1fr);
/* 4 columns */
gap: 20px;
/* Adjust spacing between items */
list-style: none;
padding: 0;
margin: 0;
text-align: center;
}

.footer-nav ul li {
display: flex;
justify-content: center;
}

.footer-nav ul li a {
text-decoration: none;
color: #333;
font-size: 14px;
font-weight: 500;
}

/* Responsive: 2 columns on tablets */
@media (max-width: 768px) {
.footer-nav ul {
grid-template-columns: repeat(2, 1fr);
/* 2 columns */
}
}

/* Responsive: 1 column on small screens */
@media (max-width: 480px) {
.footer-nav ul {
grid-template-columns: repeat(1, 1fr);
/* Single column */
}
}

.social-icons {
display: flex;
gap: 15px;
}

.social-icons a {
font-size: 18px;
color: #333;
}

.footer-bottom {
margin-top: 30px;
}

.footer-bottom h3 {
font-size: 16px;
margin-bottom: 10px;
}

.subscribe-form {
display: flex;
max-width: 400px;
border: 1px solid #ccc;
border-radius: 5px;
overflow: hidden;
}

.subscribe-form input {
flex: 1;
padding: 10px;
border: none;
outline: none;
}

.subscribe-form button {
background-color: #333;
color: #fff;
padding: 10px 15px;
border: none;
cursor: pointer;
}

@media (max-width: 768px) {
.footer-top {
flex-direction: column;
align-items: center;
text-align: center;
}

.footer-nav ul {
flex-direction: column;
align-items: center;
gap: 10px;
}

.subscribe-form {
flex-direction: column;
max-width: 100%;
}

.subscribe-form input,
.subscribe-form button {
width: 100%;
}
}