:root {
  --primary: #1b1b45;
  --seconday: #676781;
  --bg: #ededed;
  --h1: 115px;
  --bh1: 90px;
  --h2: 56px;
  --h3: 32px;
  --h6: 24px;
  --p: 20px;
}

#fluid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
}

/** Nunito Font Import **/
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Nunito/Nunito-Regular.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Nunito/Nunito-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Nunito/Nunito-Black.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Nunito/Nunito-Bold.ttf") format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Nunito/Nunito-SemiBold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Nunito/Nunito-ExtraBold.ttf") format("truetype");
  font-weight: bolder;
}

@font-face {
  font-family: "Philosopher";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Philosopher/Philosopher-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Philosopher";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Philosopher/Philosopher-Bold.ttf") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: "Scheherazade New";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Scheherazade_New/ScheherazadeNew-Regular.ttf")
    format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Scheherazade New";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Scheherazade_New/ScheherazadeNew-Medium.ttf")
    format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Scheherazade New";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Scheherazade_New/ScheherazadeNew-SemiBold.ttf")
    format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: "Scheherazade New";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Scheherazade_New/ScheherazadeNew-Bold.ttf") format("truetype");
  font-weight: bold;
}

#fluid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

#fluid.hidden-over-banner {
  opacity: 0 !important;
  transition: opacity 0.3s ease;
}

body {
  background: var(--bg);
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
}

/** Navbar **/
.navbar-brands img {
  width: 160px;
}

.image-dias-logo {
  width: 200px;
}

.navbar-nav {
  width: 90%;
  justify-content: center;
}

.nav-link {
  font-size: var(--p);
  color: var(--primary);
  font-weight: 700;
}

.nav-link {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.navbar {
  padding-top: 30px;
  padding-bottom: 30px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  background-color: var(--bg) !important;
  z-index: 999;
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler-icon img {
  width: 40px !important;
  height: 50px !important;
}

.end-navbar .nav-link {
  white-space: nowrap;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.custom-switch:checked {
  background-color: var(--primary);
  /* Green, you can use any color here */
  border-color: var(--primary);
}

.custom-switch:checked::before {
  background-color: #ffffff;
  /* White knob */
}

.end-navbar .form-check-label {
  font-size: var(--p);
  color: var(--primary);
  font-weight: 700;
  margin-top: 2px;
  margin-right: 3rem !important;
}

.end-navbar .form-switch .form-check-input {
  width: 60px;
  height: 30px;
  outline: none !important;
  box-shadow: none !important;
}

.banner h1,
.banner h2 {
  font-family: "Philosopher", sans-serif;
  font-size: var(--h1);
  color: var(--primary);
}
.banner h1 span,
.banner h2 span {
  font-family: "Nunito", sans-serif;
  font-size: var(--h2);
  color: var(--primary);
  display: block;
  margin-top: 5px;
}

.stats-section {
  background-color: transparent;
  padding: 50px 0;
}

.stats-box {
  font-family: "Nunito", sans-serif;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.stats-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-right: 15px;
}

.stats-icon img {
  max-width: 50px;
  max-height: 50px;
}

.stats-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  color: #1b1e4b;
}

.stats-content p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.scroll-icon {
  display: flex;
  align-items: center;
}

.scroll-icon img {
  width: 24px;
  margin-right: 10px;
}

.scroll-bottom-widget h4 {
  font-size: var(--p);
  color: var(--seconday);
}

/** Creativity **/
.creativity {
  padding-top: 60px;
  padding-bottom: 60px;
}

.creativity h3 {
  font-size: var(--h2);
  color: var(--primary);
  font-weight: 700;
}

.creativity p {
  font-size: var(--p);
  color: var(--seconday);
  font-weight: 700;
}

.creativity-content {
  padding-right: 20px;
}

.creativity-sub-content {
  padding-left: 0px;
  margin-top: 20px;
}

.creativity-sub-content p span {
  color: var(--primary);
  font-weight: bolder;
}

.self-center {
  align-self: center;
}

.creativity-protifolio {
  padding-left: 40px;
  border-left: 1px solid var(--seconday);
}

.creativity-protifolio p {
  margin-top: 20px;
}
.cut-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: top;
}

.creativity-protifolio p span {
  color: var(--primary);
  font-weight: bolder;
}

/* SERVICE_SECTION */
.services-section {
  background-color: transparent;
  color: #fff;
}

.services-title {
  font-size: 30px;
  font-weight: bold;
  color: var(--primary);
}

.subtitle {
  font-size: 25px;
  color: var(--seconday);
}

.service-box {
  position: relative;
  overflow: hidden;
}

.img-container {
  position: relative;
  overflow: hidden;
}

.img-container img {
  transition: transform 0.3s ease;
  width: 100%;
  display: block;
}

.service-box:hover .img-container img {
  transform: scale(1.4);
}

.text-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-title {
  font-size: 44px;
  font-weight: bold;
  text-align: start;
}

.explore-button {
  font-weight: 500 !important;
  font-size: 16px;
  color: var(--primary);
  background-color: var(--bg);
  padding: 3px 8px;
  margin-bottom: 5px;
  margin-left: 8px;
  display: inline-block;
  pointer-events: none;
  opacity: 0;
  transform: translateY(40px);
  position: relative;
  top: -5px;
}

.hover-text {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--bg);
  margin-top: 0px;
  text-align: left;
  pointer-events: none;
  opacity: 0;
  transform: translateY(40px);
}

/** Project Slider **/
.project-slider {
  position: relative;
  padding-top: 50px;
  padding-bottom: 80px;
}
.right-text-box {
  position: absolute;
  top: 20px;
  right: 0px;
  background: #0d1440;
  color: #fff;
  padding: 2px 14px;
  border-radius: 2px;
  font-weight: 600;
  display: inline-block;
}
.right-text-box h3 {
  margin-top: 10px;
  font-size: 18px;
}
.slider-content h2 {
  font-size: 40px;
  color: var(--primary);
  font-weight: 700;
  padding-left: 10px;
  font-family: "Nunito", sans-serif !important;
}

.slider-content .btn-primary {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  font-size: 24px !important;
  background: transparent !important;
  color: #676781 !important;
  font-family: "Nunito", sans-serif !important;
  font-weight: 500 !important;
}

.slider-content .btn-primary img {
  width: 24px;
}

.project-slider section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.text-white h2,
.text-white .btn-primary {
  color: #ededed !important;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}

.text-white .btn-primary img {
  filter: brightness(0) invert(1);
}

.view-all-container {
  font-family: "Nunito", sans-serif;
  display: flex;
  justify-content: flex-end;
  padding: 60px 50px;
  padding-bottom: 0px;
}

.view-all-btn {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 35px;
  text-decoration: none;
  color: white;
  background-color: var(--primary);
  padding: 12px 30px;
  display: inline-block;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background-color: var(--seconday);
}
.our-clients-section {
  padding: 40px 0;
}

.clients-title {
  font-family: "Nunito", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--bg);
}

.clients-title strong {
  color: var(--primary);
  font-weight: 700;
}

.clients-title .subtitle {
  color: var(--secondary);
  font-weight: 500;
}

.client-card {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.client-card img {
  max-height: 120px;
  object-fit: contain;
}

.client-card:hover {
  transform: translateY(-4px);
}

/* .............................. */
/* .all-projects {
    padding-bottom: 60px;
}

.all-projects h5 {
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
}

.all-projects .btn-primary {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    font-size: var(--p) !important;
    background: var(--primary) !important;
    color: var(--bg) !important;
    font-weight: 700;
    border-radius: 0px !important;
    margin-top: 30px;
}

.marketing-features h3,
.contact-us h3 {
    font-family: "Orbit", sans-serif;
    font-size: var(--p);
    color: var(--primary);
}

.marketing-features {
    padding-bottom: 80px;
}

.features {
    padding-top: 60px;
}

.features h2 {
    font-size: var(--h1);
    color: var(--primary);
    font-family: "Scheherazade New", sans-serif;
    font-weight: 900;
}

.contact-us {
    padding-bottom: 60px;
}

.contact-info img {
    width: 52px;
}

.contactinfo {
    padding-top: 60px;
}

.contact-info p {
    font-size: var(--p);
    color: #676781;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0px;
}

.border-right-color {
    border-right: 1px solid var(--seconday);
}

.contact-info {
    padding-left: 20px;
    text-align: center;
} */
/* :verticalS */
.other-verticals-section {
  background-color: transparent;
  padding: 40px 0;
}

.section-heading {
  font-family: "Nunito", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--bg);
}

.section-heading .bold-text {
  color: var(--primary);
  font-weight: 700;
}

.section-heading .sub-text {
  color: var(--seconday);
  font-weight: 500;
}

.vertical-card {
  margin-right: 20px !important;
  font-weight: 500 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vertical-card:hover {
  transform: translateY(-4px);
}

/* project*/
.project-section {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    #ffffff 50%,
    #ffffff 100%
  );
  font-family: "Nunito", sans-serif;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.project-card {
  background-color: var(--primary);
  padding: 80px;
  border-radius: 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-text {
  color: white;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 0px;
  margin-right: 400px !important;
  white-space: nowrap;
  /* Prevents line break */
}

.brochure-btn {
  font-family: "Nunito", sans-serif;
  background-color: #fff;
  color: var(--primary);
  font-weight: bold;
  padding: 14px 20px;
  font-size: 28px;
  border: none;
  border-radius: 6px;
  white-space: nowrap;
  /* Prevents line break */
}

.brochure-btn:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

/** Footer **/
.footer-section {
  background: #fff;
  color: #1e1e4b;
  font-size: 15px;
  padding: 0px 60px;
  padding-top: -40px !important;
}

.footer-logo-img {
  height: 70px;
  transition: all 0.3s ease;
}

.footer-logo-img.small-footer-logo {
  height: 30px;
}

.footer-address {
  font-family: "Nunito", sans-serif;
  color: #333;
  margin-top: 15px;
  font-size: 20px;
  font-weight: 500;
}

.icon-img {
  height: 30px;
  vertical-align: middle;
}

.footer-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: flex-start;
}

.qr-column {
  flex: 0 0 110px;
}

.links-column {
  flex: 1;
}

/* 👇 Two-column link layout in desktop */
.footer-links-columns {
  display: flex;
  gap: 40px;
}

.footer-links {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  list-style: none;
  padding: 0;
  font-size: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--secondary);
  transition: 0.2s;
}

.footer-qr {
  width: 140px;
  height: 140px;
  display: block;
  margin-bottom: 15px;
  object-fit: contain;
}

.social-icons a {
  text-decoration: none;
}

.social-icons .social-icon {
  margin-top: 100px;
  height: 25px;
  margin-left: 12px;
}

.join-hands {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--primary);
  margin-top: 20px;
}

.lets-talk {
  font-size: 80px;
  font-weight: bold;
  color: var(--primary);
  margin-top: 10px;
}

.lets-talk a {
  text-decoration: none !important;
  color: var(--primary);
}

.footer-divider {
  all: unset;
  display: block;
  height: 0;
  border: none;
  border-top: 2px dashed #15154c !important;
  margin: 20px 0;
}

.footer-terms a {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #888;
  font-size: 16px;
}

/* Make this a column and align to the right */
.footer-copy {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #888;
  margin-bottom: 0;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

/* Back top aligned below footer-copy */
.back-top {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
}

.back-top a {
  font-size: 18px;
  color: #888;
  text-decoration: none;
  cursor: pointer;
}

.back-top img {
  height: 22px;
}

/* ------------------------- */
.footer {
  padding-top: 80px;
  padding-bottom: 15px;
}

.footer .scroll-icon img {
  margin-left: 10px;
}

.fill-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--primary);
  z-index: 1;
  pointer-events: none;
}

.project-slider .fill-bg,
.all-projects .fill-bg {
  background-color: transparent;
}

.project-slider .btn-hover,
.all-projects .btn-hover {
  border: 1px solid var(--bg) !important;
  background: transparent !important;
}

.project-slider .button {
  border: 1px solid transparent;
  padding-left: 10px;
}

.button {
  position: relative;
}

.btn-hover span {
  color: #ffffff !important;
  z-index: 99999;
  position: relative;
}

.all-projects .btn-hover span {
  color: var(--primary) !important;
}

.button {
  text-decoration: none;
}

.creativity-content #text-change {
  display: inline-block;
  white-space: nowrap;
}

.features-hovers {
  cursor: pointer;
  position: relative;
}

.mask-wrapper {
  position: relative;
  overflow: hidden;
}

.hidden-content {
  --x: 0px;
  --y: 0px;
  --size: 5px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(251, 156, 132);
  background: -moz-linear-gradient(
    180deg,
    rgba(251, 156, 132, 1) 0%,
    rgba(240, 102, 128, 1) 50%,
    rgba(129, 36, 112, 1) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(251, 156, 132, 1) 0%,
    rgba(240, 102, 128, 1) 50%,
    rgba(129, 36, 112, 1) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(251, 156, 132, 1) 0%,
    rgba(240, 102, 128, 1) 50%,
    rgba(129, 36, 112, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fb9c84", endColorstr="#812470", GradientType=1);
  color: var(--bg);
  --mask: radial-gradient(
    circle at var(--x) var(--y),
    white var(--size),
    transparent 0
  );
  -webkit-mask-image: var(--mask);
  mask-image: var(--mask);
  pointer-events: none;
  visibility: hidden;
}

@media only screen and (min-width: 900px) {
  .min-vh-80 {
    min-height: 80vh;
  }
}

@media only screen and (max-width: 900px) {
  .min-vh-80 {
    min-height: 50vh;
  }
}

/*=============================================== project---list page ==========================================================================*/

.projects-heading {
  font-size: 22px;
  font-weight: 500;
  background: var(--primary);
  color: #fff;
  text-align: start;
  display: inline-block;
  padding: 8px 16px;
}
.projects-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.projects-scroll::-webkit-scrollbar {
  display: none;
}

.project-box-card {
  min-width: 370px;
  max-width: 370px;
  flex: 0 0 auto;
  overflow: hidden;
  text-align: left;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.project-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-box-content {
  padding-top: 15px;
}

.project-box-title {
  text-align: left;
  font-size: 26px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}

.project-box-brief {
  font-size: 20px;
  text-align: left;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.view-project {
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary);
  transition: 0.3s;
}
.section-divider {
  border: none;
  height: 2px;
  background: var(--seconday);
  margin-top: 120px;
  border-radius: 4px;
}

.projects-list-section {
  background: var(--bg);
  padding: 60px 40px;
}

.project-box {
  padding: 30px 30px;
  border-bottom: 2px solid #1a1a40;
  background-color: transparent;
  color: var(--primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.project-title {
  font-family: "Nunito", sans-serif !important;
  font-size: 27px !important;
  font-weight: 500 !important;
}

.project-type {
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  color: var(--seconday);
  transition: color 0.3s ease;
  font-weight: 500;
  text-align: center;
  margin-right: 200px !important;
}

.arrow {
  font-family: "Nunito", sans-serif !important;
  font-size: 30px;
  font-weight: 400 !important;
  transition: color 0.3s ease;
}

/* HOVER EFFECT ONLY */
.project-box:hover {
  background-color: var(--primary) !important;
  color: #ffffff !important;
}

.project-box:hover .project-title,
.project-box:hover .project-type,
.project-box:hover .arrow {
  color: #ffffff;
}

.hero-section {
  padding: 80px 60px 30px;
}

.hero-title {
  font-family: "Nunito", sans-serif;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 60px;
  color: #111138;
}

.info-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

.info-box {
  flex: 1;
}

.info-box.center {
  text-align: center;
}

.info-box.right {
  text-align: right;
}

.label {
  font-family: "Philosopher", sans-serif;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 400;
}

.value {
  font-family: "Nunito", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px 40px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .info-columns {
    flex-direction: column;
    text-align: left;
  }

  .info-box {
    margin-bottom: 20px;
    text-align: left !important;
  }
}

.image-overlay-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.background-image {
  width: 100%;
  height: auto;
  display: block;
}

.overlay-text {
  position: relative;
  top: 120px;
  left: 0px;
  color: #252525;
  font-size: 30px;
  font-weight: 500;
  z-index: 2;
}

/* HearSay-----Page */
.overlay-texths {
  position: absolute;
  top: 60px;
  left: 50px;
  color: var(--bg);
  font-size: 30px;
  font-weight: 500;
  z-index: 2;
}

/* Ink@wash-----Page */
.overlay-textiw {
  position: absolute;
  top: 30px;
  left: 30px;
  color: black;
  font-size: 25px;
  font-weight: 500;
  z-index: 2;
}

@media (max-width: 768px) {
  .overlay-text {
    font-size: 14px;
    top: 20px;
    left: 20px;
  }

  .overlay-texths {
    font-size: 14px;
    top: 20px;
    left: 20px;
  }

  .overlay-textiw {
    font-size: 14px;
    top: 20px;
    left: 20px;
  }
}

.project-details {
  background-color: transparent;
  padding-top: 60px;
  padding-bottom: 60px;
  margin: auto;
}

.mb-6 {
  margin-bottom: 60px;
}

.project-details article {
  max-width: 1100px;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.project-details h3 {
  font-family: "Philosopher", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.6;
}

.project-details article div {
  flex: 1;
  line-height: 1.5;
}

.project-details .bold-text {
  font-family: "Nunito", sans-serif;
  color: var(--primary);
  font-size: 25px !important;
  margin-bottom: 10px;
  font-weight: 700;
}

.project-details p {
  font-family: "Nunito", sans-serif;
  color: var(--seconday);
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 500;
}

.project-details .Testimonial {
  font-family: "Nunito", sans-serif;
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 500;
}

.project-details ul li {
  font-family: "Nunito", sans-serif;
  color: var(--seconday);
  font-size: 25px;
  font-weight: 500;
}

.project-details hr {
  border: none;
  border-top: 2px solid #676781;
  margin: 30px 0;
}

.author {
  margin-top: 10px;
  font-style: italic;
  color: #666;
  font-size: 12px;
  text-align: right;
}

.other-projects-section {
  width: 100%;
  background-color: transparent;
  padding: 60px 0;
}

/* Title block above image */
.section-heading {
  font-family: "Nunito", sans-serif;
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.section-heading h3 {
  font-weight: 500;
  color: var(--primary);
}

.section-heading span {
  font-weight: 500;
  color: var(--seconday);
}

/* Image block with overlay text */
.image-container {
  position: relative;
  width: 100%;
}

.project-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Overlay Text */
.text-box {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
}

.text-box h2 {
  font-family: "Nunito", sans-serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}

/* hearsay---page */
.text-boxhs {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #111138;
}

.text-boxhs h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ====================== */

.visit-link {
  font-family: "Nunito", sans-serif;
  font-size: 22px !important;
  color: var(--bg) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.visit-link img {
  width: 20px;
  height: 20px;
}

/* Bliss---page */
.image-overlay-sections {
  position: relative;
  width: 100%;
  height: 650px;
  background-color: #e0e0e0;
  /* fallback background */
  background-image: url("assets/projects/0.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.image-overlay-sections img.background-image {
  display: none;
  /* hide image if using CSS background */
}

.overlay-texts {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #000000;
  font-size: 25px;
  font-weight: 500;
  z-index: 2;
}

.text-white {
  color: #ffffff !important;
}

/* ================================================================================================================= */
.terms-section {
  padding: 60px 20px;
}

.terms-section h2,.terms-section h1{
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--primary);
  margin-top: 30px;
  margin-bottom: 15px;
}

.terms-section p {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.terms-section a {
  color: var(--primary);
  text-decoration: none;
}

.terms-section ul {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  list-style: none !important;
  padding-left: 0 !important;
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-section ul li {
  font-size: 18px;
  margin-bottom: 10px;
}

/* ===============================================contact-us===================================== */

.contact-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}

.contact-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45%;
  width: 1px;
  background-color: #a3a3a3;
  transform: translateX(-50%);
}
.contact-left {
  flex: 0.8;
  min-width: 280px;
  padding-right: 2rem;
}
.contact-right {
  flex: 1.2;
  min-width: 320px;
}

.contact-left h1 {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-left h2 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background-color: transparent;
  width: 100%;
  padding: 12px;
  border: 1px solid #a3a3a3;
  border-radius: 2px;
  font-weight: 500;
  font-size: 18px;
}

/* Checkbox */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #a3a3a3;
  padding: 10px 15px;
  width: fit-content;
  cursor: pointer;
  user-select: none;
  font-size: 18px;
  font-weight: 500;
}

.checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1a237e;
}

.checkbox-container label {
  cursor: pointer;
}

/* Button */
.contact-form button {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 30px;
  width: 190px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #0d47a1;
}

/* Right (Map + Address) */
.contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-right h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
}

.map-box {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border: none;
}

.contact-right p {
  font-size: 23px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.6;
}

/* ============================================TEAMS-PAGE================================ */
.team-section {
  font-family: "Nunito", sans-serif;
  padding: 30px 0px;
}

.team-section h5,.team-section h1 {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
}
.team-section h1{
  font-size: 42px !important;
}

.team-section p {
  font-weight: 500;
  color: var(--primary);
  font-size: 24px;
  margin: 0 auto 40px;
}

.team-row {
  margin: auto 0;
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.team-rows {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.center-two {
  gap: 50px;
  justify-content: center;
}

.member {
  max-width: 100%;
  text-align: center;
}

.members {
  max-width: 100%;
  text-align: center;
}

.memberes {
  max-width: 100%;
  text-align: center;
}

.member img {
  width: 300px;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.memberes img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.members img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.member h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
}

.member p {
  font-weight: 500;
  font-size: 20px;
  color: var(--seconday);
  margin-top: 4px;
}

.members h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
}

.members p {
  font-weight: 500;
  font-size: 20px;
  color: var(--seconday);
  margin-top: 4px;
}

.memberes h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
}

.memberes p {
  font-weight: 500;
  font-size: 20px;
  color: var(--seconday);
  margin-top: 4px;
}

.organogram {
  font-family: "Nunito", sans-serif;
  padding: 60px 40px;
  max-width: 100%;
  overflow-x: auto;
}

.organogram .heading {
  text-align: left;
  margin-bottom: 40px;
}

.organogram h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary);
}

.organogram p {
  font-size: 24px;
  color: var(--primary);
  font-weight: 500;
  max-width: 600px;
}

.organogram img {
  display: block;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  height: auto;
}

.team-contact {
  background-color: transparent;
  font-family: "Nunito", sans-serif;
  padding: 60px;
}

.team-contact .section-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary);
}

.team-contact .container {
  display: flex;
  flex-direction: column;
}

.team-contact .card-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}

.team-contact .contact-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: var(--primary);
}

.team-contact .contact-card h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 10px;
}

.team-contact .contact-card p {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 30px;
}

.team-contact .contact-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.team-contact .icon-box {
  background-color: var(--primary);
  padding: 10px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

.team-contact .icon-box img {
  width: 30px;
  height: 30px;
}

.email-icon {
  width: 35px !important;
  height: 35px !important;
}

.team-contact .contact-row span {
  font-weight: 400;
  font-size: 20px;
  color: var(--primary);
  line-height: 1;
}

.team-contact .vertical-line {
  width: 1px;
  background-color: var(--primary);
  align-self: stretch;
  margin-right: 50px;
}

/* +++++++++++++++++++++++++++++++++ CONTACT_SECTION-ITEM_CONTACT-RESPONSIVE CODE ++++++++++++++++++++++++++++++++++++++++++++ */
@media (max-width: 480px) {
  .team-contact {
    padding: 30px 20px;
  }

  .team-contact .section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 23px;
  }

  .team-contact .card-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .team-contact .contact-card {
    width: 100%;
    max-width: 350px;
    padding: 20px;
    border: 2px solid var(--primary);
    border-radius: 12px;
  }

  .team-contact .contact-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .team-contact .contact-row span {
    font-size: 16px;
  }

  .team-contact .vertical-line {
    display: none;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .team-contact .card-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .team-contact .contact-card {
    flex: 1 1 45%;
    max-width: 320px;
  }

  .team-contact .center-card {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .team-contact .vertical-line {
    display: none;
  }
}
