/* Basics */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: "Helvetica Now Display";
  src: url("/assets/fonts/HelveticaNowDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
}

:root {
  --font-primary: "Helvetica Now Display", Helvetica, Arial, sans-serif;
  --font-secondary: "Montserrat", system-ui, -apple-system, sans-serif;
  --color-primary: #232457;
  --color-secondary: #f2b465;
  --color-muted: #6b6b6b;
  --color-black: #222222;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-primary);
}

p,
li,
a,
h6,
span,
h5 {
  font-family: var(--font-secondary);
}

p {
  font-size: 16px;
  font-weight: 400;
}

/* navbar */
.logo {
  width: 150px;
}

.logo-sm {
  display: none;
}

.primary-bg {
  background-color: var(--color-primary);
  padding: 20px !important;
  color: #fff;
  border-radius: 12px;
  height: 460px;
}

.primary-btn {
  background-color: var(--color-primary) !important;
  color: #fff !important;
  padding: 10px 30px !important;
  border-radius: 6px !important;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  font-weight: 600 !important;
}

.primary-btn:hover {
  background-color: var(--color-secondary) !important;
  color: var(--color-primary) !important;
  font-weight: 600;
}

.font-sm {
  font-size: 16px
}

.nav-link.active {
  font-weight: 600 !important;
  color: var(--color-secondary) !important;
}

.nav-item a {
  padding: 0px 10px !important;
  font-size: 14px;
}

/* banner */
.cg-hero {
  position: relative;
  min-height: 90vh;
  background: url("./images/banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

/* .cg-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
} */

.cg-hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 760px; */
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

/* H1 – Primary Message */
.cg-title {
  font-size: 54px;
  font-style: var(--font-primary) !important;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--color-black);
  letter-spacing: 2px;
  text-align: center;

}

/* Emphasized Sub-head */
.cg-lead {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.cg-lead span {
  font-weight: 600;
  letter-spacing: 2px;

}

/* Supporting Text */
.cg-subtext {
  font-size: 16px;
  line-height: 1.75;
  color: #7f7e7e;
  margin-bottom: 36px;
  font-family: var(--font-secondary);
  font-weight: 400;
  padding: 0px 180px;
  text-align: center;
}

.secondary-btn {
  background-color: var(--color-secondary) !important;
  color: var(--color-black) !important;
  padding: 10px 30px !important;
  border-radius: 6px !important;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  font-weight: 600 !important;
}

.secondary-btn:hover {
  background-color: var(--color-primary) !important;
  color: #fff !important;
  font-weight: 600;
}

/* about & services */
.cg-subheading {
  font-size: 42px;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--color-black);
}

.cg-semi-subheading {
  font-size: 38px;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--color-black);
}


.image-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.04);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.15));
  opacity: 1;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}


/* Overlay content */
.overlay-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.overlay-content span {
  font-size: 28px;
  width: 350px;
}

.overlay-content i {
  font-size: 28px;
}

/* Arrow Button */
.arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 5px;
}

.arrow-btn:hover {
  background: #000;
  color: #fff;
}

/* mission & vision */
#missionVision {
  position: relative;
  padding-top: 120px;
  /* space for the image */
}

#missionVision::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  right: 0px;
  width: 300px;
  height: 200px;
  background-image: url(./images/cg-texture-color.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.4;
}

/* Image card */
.image-card {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.primary-bg img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-card:hover img {
  transform: scale(1.04);
}

/* partners */
.team-section {
  background: #eeeef6;
  padding: 80px 0px;
}

/* Left content */
.team-title {
  font-weight: 700;
  /* font-size: 36px; */
  line-height: 1.3;
}

.team-title span {
  color: var(--color-black);
}

.team-subtitle {
  color: var(--color-muted);
  max-width: 320px;
}


/* Team Card */
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  transition: all 0.3s ease;
  /* height: 415px; */
}

.team-card:hover {
  transform: translateY(-6px);
}

/* Image */
.team-card img {
  width: 100%;
}

/* Info */
.team-info {
  padding: 20px;
}

.team-info h5 {
  font-size: 22px !important;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-info p {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
}

/* Owl Controls */
.team-slider .owl-nav {
  position: absolute;
  bottom: -45px;
  right: 0;
}

.team-slider .owl-nav button {
  background: transparent !important;
  font-size: 30px !important;
  color: var(--color-secondary) !important;
}

/* testimonial */

.testimonial-image {
  width: 100%;
  max-width: 1100px;
  border-radius: 12px;
}

/* faq */
/* SECTION */
.faq-section {
  padding-bottom: 80px;
  background: #fff;
}

/* LAYOUT */

/* LEFT */
.faq-left h2 {
  text-align: center;
  margin-bottom: 80px;
}

.faq-line {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--color-black);
  margin-bottom: 40px;
}

.faq-intro {
  background-image: url("./images/cta-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 40px;
  border-radius: 12px;
  color: #fff;
}

.faq-intro h4 {
  /* font-size: 54px;
  font-weight: 600; */
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 2px;
}

.faq-intro p {
  color: #ddd;
  font-size: 18px;
  line-height: 1.6;
  max-width: 860px;
  margin-bottom: 20px;
}


/* RIGHT */
.faq-right {
  border-top: 1px solid #e5e5e5;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 18px 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  max-width: 90%;
}

/* ICON */
.icon {
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

/* OPEN STATE */
details[open] .icon {
  transform: rotate(45deg);
}

/* insights */
/* FULL WIDTH */
.fullwidth-slider {
  width: 100%;
  overflow: hidden;
}


/* SLIDE */
.slide {
  position: relative;
  height: 280px;
  overflow: hidden;
  /* border-radius: 8px; */
}

/* IMAGE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DARK OVERLAY (OPTIONAL BUT RECOMMENDED) */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.15));
}

/* TEXT ON IMAGE */
.slide-text {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  max-width: 80%;
  line-height: 1.4;
}

/* REMOVE CONTROLS */
.image-marquee .owl-nav,
.image-marquee .owl-dots {
  display: none;
}



/* FOOTER BASE */
.footer-dark {
  position: relative;
}

.footer-dark::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  right: 0px;
  width: 300px;
  height: 200px;
  background-image: url(./images/cg-texture-white.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.2;
}

/* BASE */
.footer-dark {
  background: var(--color-primary);
  color: #bdbdbd;
  padding: 40px 20px 40px;
  /* font-family: "Inter", sans-serif; */
  text-align: center;
}

/* BRAND */
.footer-brand {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* MENUS */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-menu.primary a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-menu.secondary a {
  font-size: 16px;
}

.footer-menu a {
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.3s ease;

}

.footer-menu a:hover {
  color: #ffffff;
}

/* SOCIAL */
.footer-social {
  margin: 28px 0;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ffffff;
  color: #1c1c1c;
}

/* LEGAL LINKS */
.footer-legal {
  font-size: 12px;
  margin-bottom: 16px;
}

.footer-legal a {
  color: #9a9a9a;
  text-decoration: none;
  font-size: 15px;
}

.footer-legal a:hover {
  color: var(--color-secondary)
}

.footer-legal span {
  margin: 0 8px;
}

/* NOTE */
.footer-note {
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #9c9c9c;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 12px;
  color: #7f7f7f;
}


#aboutPage .image-card {
  position: relative;
}

#aboutPage .image-card::before {
  content: '';
  width: 300px;
  height: 300px;
  background: repeating-linear-gradient(45deg, #fff, #fff 8px, #232457 8px, #fff 11px);
  position: absolute;
  left: -30px;
  bottom: -30px;
  z-index: -1;
}

/* USP SECTION */
.usp-section {
  background-color: #ffffff;
}


/* USP Cards */
.usp-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  transition: all 0.3s ease;
  margin: 15px 0px;
  border-radius: 20px;
  height: 320px;
}

/* Filled Cards */
.usp-filled {
  background-color: var(--color-primary);
  color: #fff;
}

.usp-filled p {
  color: #c3c3c3;
}


/* Outline Cards */
.usp-outline {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  color: var(--color-primary);
}

.usp-icon img {
  width: 65px;
}

/* Icons */
.usp-icon {
  font-size: 38px;
  margin-bottom: 15px;
}

/* Text */
.usp-card p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 0px 10px;
}

/* Hover – subtle, professional */
.usp-card:hover {
  transform: translateY(-4px);
}


/* join us */
.join-card {
  background-color: var(--color-primary);
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  height: 415px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.join-card i {
  font-size: 25px;
  margin-top: 6px;
  display: inline-block;
}


/* service page */

.service-card {
  background: #f8fafc;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.service-body {
  padding: 22px;
}

.service-body h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 22px;
  color: var(--color-primary);
}

.service-body p {
  font-size: 16px;
  font-weight: 400;
  color: #6c757d;
  margin: 15px 0px;
  height: 180px;
}



.service-body a:hover {
  text-decoration: underline;
}


/* teams & testimonial page */
.profile-card.compact-card {
  background: #eeeef6;
  border-radius: 14px;
  /* box-shadow: 0 6px 22px rgba(0,0,0,0.06); */
  padding: 18px;
  transition: 0.25s ease;
}

.profile-card.compact-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 12px 10px rgba(227, 227, 253, 0.1); */
}

/* Horizontal Layout */
.card-inner-div {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Image */
.card-img {
  flex: 0 0 150px;
}

.profile-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
}

/* Content */
.card-content {
  flex: 1;
}

/* Header */
.card-header {
  background-color: #eeeef6 !important;
  border-bottom: none !important;
  padding: 20px 0px !important;
}

.card-header h3 {
  font-size: 20px;
  margin-bottom: 3px;
  font-weight: 600;
}

.designation {
  font-size: 18px;
  margin: 6px 0px;
  color: var(--color-primary);
  font-weight: 600;
}

.since {
  font-size: 15px;
  color: #777;
  display: block;
  margin-bottom: 10px;
}

/* Two-column compact meta */
.card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.meta-block h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-black);
}

.meta-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.meta-block ul li {
  font-size: 14px;
  margin-bottom: 4px;
  padding-left: 12px;
  position: relative;
  line-height: 1.35;
}

.meta-block ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .card-inner {
    flex-direction: column;
  }

  .card-img {
    flex: none;
  }

  .card-meta {
    grid-template-columns: 1fr;
  }
}


/* insights */
.blog-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  transition: 0.3s ease;
  border: 1px solid #e6e6e6;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.blog-header {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.blog-date {
  font-size: 13px;
  color: #888;
  float: right;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--color-black);
}

.blog-title a {
  color: var(--color-black);
}

.tag {
  display: inline-block;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 30px;
  background: #e3ecfb;
  color: var(--color-primary);
  margin-right: 6px;
  margin-bottom: 6px;
  font-weight: 600;
}



/* contact us */
.contact-section {
  background: #f8f9fa;
  padding: 80px 0px;
}

.contact-title {
  font-weight: 600;
}

.contact-subtext {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}

.office-block h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.office-block p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
}

.btn-dark {
  padding: 10px;
  border-radius: 6px;
}

.br-1 {
  border-right: 1px solid #8b8b8b;
}


/* map */

.map-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 40%;
  /* Adjust height ratio */
  border-radius: 12px;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* service details page */
.service-details {
  padding-top: 80px;
}

.service-details img {
  border-radius: 12px;
}

/* Feature Box */
.feature-box {
  background: #eeeef6;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s ease;
}

.feature-box:hover {
  background: #dfdaf5;
}

/* Check Icon */
.check-icon {
  width: 35px;
  height: 35px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* BLOG */
.blog-section {
  padding: 50px 25px;
}


.blog-content ul {
  margin: 20px 0px;
  padding-left: 0px;
}

.blog-content ul li {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 10px;
  color: var(--color-muted);
  font-size: 16px;
}

.blog-content ul li i {
  color: var(--color-primary);
  font-size: 16px;
}

.conclusion {
  border: 1px solid #232457;
  border-radius: 6px;
  padding: 30px 25px;
}

.blog-content h3 {
  font-size: 28px;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--color-black);
}

.blog-image {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
}


/* SIDEBAR */

.sidebar-box {
  background: #fff;
  padding: 0px 20px;
  margin-bottom: 20px;
}

.recent-post {
  display: flex;
  margin-bottom: 15px;
}

.recent-post img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  border-radius: 6px;
  object-fit: cover;
}

.contact-box {
  background-color: #eeeef6;
  padding: 20px 40px;
  border-radius: 12px;
  margin-top: 60px;
}

.sidebar input,
.sidebar textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}