body {
  overflow-x: hidden !important;
}
.sub-banner {
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Background image */
.sub-banner-img {
    width: 100%;
    height: 400px;
     object-fit: cover; 
    filter: brightness(40%);
}

/* Text on top of image */
.sub-banner .container {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.sub-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFF;
}

.sub-banner p {
  font-size: 18px;
  opacity: 0.9;
  text-align: center;
}

@media (max-width: 768px) {
  .sub-banner-img {
    height: 280px;
  }
  .sub-banner h1 {
    font-size: 32px;
  }
}

/* Left right Combo */

/*.about-section {
  padding: 120px 0 0px;
}*/

.secspacing {
  margin-top: 30px;
}

/* Who we are */
/* ===== About Section ===== */


/* Kicker */
.about-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  color: #090a0d;
}

/* Title */
.about-title {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

/* Paragraphs */
.about-text {
  font-size: 20px;
  line-height: 1.8;
  color: #090a0d;
  text-align: justify;
      font-weight: 500;
}

/* Right image / video card */
.about-video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  background: #0f172a;
}

.about-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay at bottom */
.about-video-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0)
  );
}

/* Play button + text overlay */
.about-video-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  color: #ffffff;
}

/* Circular play button */
.about-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
}

.about-play-btn:focus {
  outline: none;
}

/* Play triangle */
.about-play-icon {
  width: 0;
  height: 0;
  border-left: 14px solid #0f172a;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}

/* Text next to play button */
.about-video-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.about-video-sub {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Hover effect */
.about-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
}


/* What we do */


.what-wrapper {
  background: #0b1f3a;
  color: #ffffff;
  border-radius: 10px;
}

/* Left image box */
.what-image-card {
  border-radius: 24px;
  overflow: hidden;
}

.what-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Heading label */
.what-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}

/* Main heading */
.what-title {
  font-size: clamp(2.2rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

/* Paragraph */
.what-text {
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
  max-width: 640px;
      font-weight: 500;
      text-align: justify;
}

/* Responsive */
@media (max-width: 991.98px) {
.what-wrapper {
    padding: 10px !important;
    height: fit-content;
    border-radius: 30px;
}
}


/* Founter Section */
.founder-section {
  background: #f7f9fc;
}

/* IMAGE BLOCK WITH OFFSET BORDER */
.founder-img-box {
  position: relative;
  display: inline-block;
}

.founder-img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

.founder-linkedin {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 42px;
    height: 42px;
    background: #0A66C2; /* LinkedIn Blue */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.founder-linkedin:hover {
    background: #fff;
}

/* BLUE OUTLINE LIKE YOUR REFERENCE */
.founder-img-box::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 5px solid #003c8a; /* deep blue outline */
  border-radius: 6px;
  z-index: 1;
}

/* RIGHT SIDE TEXT */
.founder-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b1f3a;
}

.founder-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #090a0d;
  max-width: 640px;
}

/* Headings */
.founder-main {
  font-size: 2rem;
  font-weight: 700;
  color: #0b1f3a;
}

.founder-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b3c88;
  margin-top: 10px;
}

.founder-role {
    font-size: 20px;
    font-weight: 700;
    color: #090a0d;
}

/* Bullet Points */
.founder-points {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.founder-points li {
  font-size: 20px;
  line-height: 1.8;
  color: #090a0d;
  position: relative;
  padding-left: 28px;
      font-weight: 500;
  margin-bottom: 10px;
}

.founder-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    transform: rotate(19deg);
    background-image: url("../images/gsliconsmall.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Responsive text alignment */
@media (max-width: 991.98px) {
.founder-main, .founder-name, .founder-points {
    text-align: center;
    font-size: 30px;
    margin: 0 !important;
    margin-bottom: 10px !important;
}
 .founder-role{
  text-align: center;
    font-size: 20px;
    margin: 0 !important;
    margin-bottom: 10px !important;
 }
  .founder-points li {
    padding-left: 30px;
    padding-top: 4px;
    text-align: start;
    font-size: 16px;
}
.founder-points li::before {
    top: 10px;
}
}


/* Mobile Responsive */
@media (max-width: 991.98px) {
  .founder-img-box {
    margin: 0 auto;
  }
  .founder-title,
  .founder-desc {
    text-align: center;
  }
  .founder-img-box::after {
    top: -12px;
    left: -7px;
  }
}


/* Our Value  */
.secspacing1 {
    margin-top: 80px;
}

.value {
    color: #16273F !important;
}

/* STRIPE SECTION */
.value-auto-stripe {
  position: relative;
  padding: 20px 0;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.8s ease-in-out;
  width: 100%;
  height: auto;
  overflow: hidden !important;
}


.text-center h2 {
  font-size: 40px;
  font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem !important;
    color: #fff;
}

/* ROW LAYOUT */
.value-row {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    width: 100%;
    height: auto;
}

/* TEXT STYLING */
.value-text { 
  font-size: 52px; 
  font-weight: 600; 
  line-height: 1.35; 
  font-style: italic; 
  letter-spacing: 0.5px; 
  text-transform: capitalize; 
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35); 
  opacity: 0; 
}



/* BUTTON */
.value-btn .btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 20px;
    color: #16273F;
    border: 3px solid #16273F;
    background: #fff;
}

#valueStripe {
  transition: background-image 0.6s ease-in-out;
}



/* FIXED IMAGE */
.fixed-img {
  position: sticky;
  top: 120px;
}

/* IMAGE */
.leadership-img {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  max-height: 350px;
  object-fit: cover;
}

/* CARD */
.leadership-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 44px;
    max-width: 600px;
}

.leadership-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 6px;
    border-radius: 16px;
    background: linear-gradient(120deg, #16273F, #5d7799, #a5bde0, #27282b);
    background-size: 300% 300%;
    animation: borderRun 6s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* NUMBER */
.leadership-number {
  font-size: 32px;
  font-weight: 700;
  color: #16273F;
}

/* TEXT */
.leadership-text {
  font-size: 22px;
  color: #090a0d;
  margin-top: 10px;
      font-weight: 500;
}



/* REMOVE DEFAULT BOOTSTRAP TRANSITION */
.carousel-item {
    transition: none !important;
}

/* INITIAL STATE */
.carousel-item .animate-content,
.carousel-item .value-text {
    opacity: 0;
}

/* value-text: Left → Right */
.carousel-item .value-text {
    transform: translateX(-120px);
}

/* animate-content: Right → Left */
.carousel-item .animate-content {
    transform: translateX(120px);
}


.carousel-item.active .value-text {
    animation: slideLeftToRight 0.6s ease forwards;
}
/* ACTIVE SLIDE – SAME TIMING */
.carousel-item.active .animate-content {
    animation: slideRightToLeft 0.6s ease forwards;
}

@keyframes slideLeftToRight {
    from {
        opacity: 0;
        transform: translateX(-120px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* KEYFRAMES */
@keyframes slideRightToLeft {
    from {
        opacity: 0;
        transform: translateX(120px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* MOBILE */
@media (max-width: 991px) {
  .fixed-img {
    position: relative;
    top: auto;
    margin-bottom: 25px;
  }

  .leadership-card {
    text-align: center;
    margin: auto;
  }
}





/* TOP IMAGE */
.service-top-img-wrap {
  margin: 0 auto 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15,23,42,0.18);
}
.service-top-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 767px){
  .service-top-img { height: 220px; }
}

/* CARD HOLDING TABS + CONTENT */
.service-tab-card {
  border-radius: 18px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15,23,42,0.08);
}

/* CUSTOM TAB BAR */
.gs-tab-header {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 50px;
     transition: all 0.3s ease;
}

.gs-tab-item {
  flex: 1;
}

/* CUSTOM TAB BUTTON */
.nav {
    width: 100%;
}



.gs-tab-link {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #1943af;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff !important;
    text-align: center;
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
}


.nav-item a {
  text-decoration: none;
}

.gs-tab-item:last-child .gs-tab-link {
  border-right: 0;
}

/* ACTIVE TAB */
.gs-tab-link.active {
  background: #1f1262;
  color: #fff !important;
}

/* TAB CONTENT BODY */
.service-tab-body {
  padding: 26px 28px;
  background: #fff;
}

.service-main-title {
  font-size: 40px;
  font-weight: 700;
  color: #16273F;
}

/* ===== SUBGROUP: 1.1 / 1.2 / 1.3 / 1.4 / Verticals ===== */

.service-subgroup {
  margin-top: 32px;
}

.service-subtitle-label {
  font-size: 30px;
  font-weight: 700;
  color: #16273F;
  margin-bottom: 16px;
}

.service-subtitle-label .code {
  margin-right: 6px;
}

/* ===== 3 COLUMN CARDS (Pain / Deliver / Outcome) ===== */

.service-info-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.06);
  height: 100%;
}

.service-info-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

/*.service-info-text {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 0;
}*/

/* BULLET LIST (used for 1.2) */
.service-bullet-list {
  padding-left: 1.2rem;
  margin-bottom: 0;
  list-style: none;
  padding: 30px;
}
.service-bullet-list li {
  margin-bottom: 6px;
  font-size: 18px;
  color: #090a0d;
  line-height: 1.65;
   font-weight: 500;
}

.service-bullet-list strong{
  color: #fff;
  font-size: 18px;
}

/* ===== PACK 1 / 2 / 3 CARDS (for 1.2) ===== */

.pack-cards {
  margin-top: 0.75rem;
}
.pack-card {
  background: #fff;
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.06);
  height: 100%;
}
.pack-badge {
    display: inline-block;
    font-size: 16px;
    padding: 4px 12px;
    background: #fff;
    border-radius: 999px;
    color: #000;
    margin-bottom: 12px;
    text-shadow: none;
    font-weight: 800;
}
.pack-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.pack-text {
  font-size: 16px;
  color: #090a0d;
  line-height: 1.6;
}

/* Mobile: stack 3-cards and pack-cards one by one */
@media (max-width: 767.98px) {
  .service-subgroup .col-md-4 {
    margin-bottom: 12px;
  }
}

.leadership-section {
  overflow-x: hidden !important;
}




/* How we works Page */


/* Heading */
.howwork-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0b1f3a;
}

/* Timeline wrapper: vertical line in center */
.howwork-timeline::before {
  content: "";
  position: absolute;
  top: 150px;     /* reduced from full height */
  bottom: 150px;  /* reduced from full height */
  left: 50%;
  width: 2px;
  background: #d1e3f2;
  transform: translateX(-50%);
}

/* Each row spacing */
.howwork-row {
  position: relative;
}

/* Image styling */
.howwork-img {
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  width: 100%;
  object-fit: cover;
}

/* Center numbered node */
.howwork-node {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 4px solid #16273F;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #16273F;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Step titles and text */
.howwork-step-title {
    font-size: 30px;
    font-weight: 700;
    color: #16273F;
    margin-bottom: 0.5rem;
}

.howwork-text {
    font-size: 18px;
    line-height: 1.8;
    color: #090a0d;
    font-weight: 500;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .howwork-timeline::before {
   display: none;
  }
  .howwork-node {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
  .howwork-text {
    font-size: 16px;
    text-align: justify;
  }
  .howwork-step-title {
    text-align: center;
  }
}


/* ============================
   CONTACT SECTION MAIN WRAPPER
===============================*/
/*.contact-section {
    background: #ffffff;
    padding-top: 30px;
}*/

/* ============================
   CONTACT INFORMATION BLOCKS
===============================*/

.contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 5px 0;
}

/* ICON WRAPPER */
.contact-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #16273F;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    flex-shrink: 0;
}

.contact-icon-light, .contact-icon-soft {
    background: #16273F !important;
    color: #fff !important;
}

/* ICON INSIDE */
.contact-icon-wrap i {
    font-size: 22px !important;
    line-height: 1 !important;
}

/* RIGHT SIDE TEXTS */
.contact-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

/* TITLE (Our Address, Our Phone...) */
.contact-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #16273F;
    margin-bottom: 4px;
}

/* DESCRIPTION BELOW TITLE */
.contact-info-text {
    font-size: 17px;
    color: #090a0d;
     font-weight: 500;
}

.contact-text-block a {
    text-decoration: none;
}
/* ============================
   SOCIAL ICONS
===============================*/

.contact-social a {
    text-decoration: none;
}

.social-square {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #d8d9d9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 18px;
    transition: 0.2s ease;
}

.social-square:hover {
    background: #111827;
    color: #ffffff;
}

/* ============================
   FORM CARD
===============================*/

.contact-form-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #16273F;
}

.contact-input {
    border-radius: 10px;
    border-color: #16273F;
    font-size: 18px;
    padding: 10px 12px;
     font-weight: 500;
}

.contact-input:focus {
    box-shadow: none;
    border-color: #111827;
}

/* FOR THE TEXTAREA HEIGHT FIXED + SCROLL */
.contact-input[name="message"] {
    min-height: 140px;
    resize: vertical;
    font-size: 18px;
    font-family: Inter, sans-serif;
}

/* SUBMIT BUTTON */
.contact-btn {
    background: #16273F;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 600;
    padding: 8px 25px;
    width: auto !important;   
    border: none;
}


.contact-btn:hover {
    background: #16273F;
    color: #ffffff;
}

/* ============================
   MAP AREA
===============================*/
.contact-map-wrapper {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* ============================
   RESPONSIVE FIXES
===============================*/

@media (min-width: 400px) and (max-width:500px) {
  .about-video-card img {
    width: 406px !important;
    height: 271px !important;
  }

  .what-image-card img {
    width: 386px !important;
    height: 260px !important;
  }
}

@media (max-width: 991.98px) {
    .contact-info-title {
        font-size: 18px;
    }
    .contact-info-text {
        font-size: 16px;
    }
    .contact-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-icon-wrap {
        width: 46px;
        height: 46px;
    }
    .contact-icon-wrap i {
        font-size: 20px;
    }
}

@media (min-width: 992px) and (max-width:1200px) {
  .value-row {
    min-height: unset;
    text-align: center;
    padding: 20px !important;
}
.value-text {
  font-size: 24px;
}
.value-auto-stripe {
   background-size: cover !important;
    background-position: center top;
    width: 100%;
    height: auto;
}
}


@media (min-width: 700px) and (max-width:990px) {
  .value-row {
    min-height: unset !important;
    text-align: center;
    padding: 20px !important;
}
.value-text {
  font-size: 24px;
}
}

/* Tablets & below */
@media (max-width: 991.98px) {
.value-auto-stripe {
    background-size: cover !important;
    background-position: center top;
    width: 100%;
    height: auto;
    margin-top: 10px !important;
}
  .value-text {
    font-size: 20px;
    text-align: center;
  }
  .whowe {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}
  .about-text {
    font-size: 16px;
  }
  .whowe1 {
    flex-direction: column-reverse;
  }
  .whatssec1 {
    font-size: 30px;
    margin-bottom: 10px !important;
  }
  .what-text {
    font-size: 16px;
  }
  .value-card-inner {
  font-size: 16px;
}
 .value-prop-section .col-lg-3,
    .value-prop-section .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .value-card {
        margin-bottom: 20px;
    }
    .leadership-number {
    font-size: 20px;
  }
  .leadership-text {
    font-size: 20px;
  }
  .gs-tab-link:last-child {
    font-size: 20px;
    padding: 5px;
  }
  .service-main-title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .service-subgroup {
     margin-top: 0px !important; 
}
.sub-service-title {
    font-size: 30px;
}
.service-bullet-list strong {
  font-size: 16px;
}
.service-bullet-list li {
  font-size: 16px;
}
.pack-badge {
  font-size: 16px;
}
.pack-title {
    font-size: 18px;
  }
  .pack-text {
    font-size: 16px;
  }
  .pack-cards .col-md-4 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .pack-card {
        width: 100%;
    }

    .secspacing1{
      margin-top: 30px;
    }
    .text-center h2 {
      font-size: 30px;
      margin-bottom: 10px !important;
    }
    #valueStripe {
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
  top: 0;
  bottom: 0;
  }
 /*.value-auto-stripe {
    background-size: cover !important;     
    background-position: center top;
    margin-top: 10px !important;
  }
.value-text {
    font-size: 12px;
    padding: 5px;
}*/
  .value-row {
    min-height: auto;
    text-align: center;
  }
  .leadership-card {
    padding: 20px;
  }
  .service-top-img-wrap .unique {
    font-size: 18px !important;
    width: 100%;
    padding: 5px !important;
}
.nav-item {
  width: 100%;
}
.service-tab-card{
  padding: 10px !important;
}
.service-tab-body {
     padding: 0 !important; 
    text-align: center;
}
.service-subtitle-label .code {
  font-size: 20px;
}
.contact-btn {
  align-items: center;
  justify-content: center;
  display: flex;
  margin: auto;
}
}


/* New css on 22.01.26 */

.maintext {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  text-align: center;
}

.overview-card { 
  border: 1px solid #000; 
  background: #fff; 
  padding: 18px 22px; 
  width: 100%; 
  height: 350px; 
  border-top: unset; 
  border-radius: 30px; 
  border-top-left-radius: unset; 
  border-top-right-radius: unset;
  transition: all 0.3s ease; 
  }
  .overview-card:hover {
    transform: translateY(-3px);
  }

/* SECTION LABELS */
.overview-card h6 {
    font-size: 20px;
    font-weight: 700;
    margin: 8px 0 6px;
    color: #16273F;
}

/* LIST */
.overview-card ul {
  padding-left: 18px;
  margin-bottom: 14px;
  list-style: none;
}

.overview-card li {
  position: relative;
  padding-left: 26px;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  font-weight: 500;
}

.overview-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  color: #16273F; /* change color if needed */
}


/* MOBILE */
@media (max-width: 767px) {
  .overview-card {
    padding: 16px;
  }
}


.gs-tab-header .gs-tab-link:hover {
  transform: translateY(-3px);   /* subtle lift */
}



/*HARUSH*/

@media (max-width: 600px) {
  .spl-font18 {
    font-size: 20px !important;
  }
}

@media (min-width: 601px) and (max-width: 991px) {
  .spl-font18 {
    font-size: 20px !important;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .spl-font18 {
    font-size: 24px !important;
  }
}
@media (max-width: 500px) {
  .service-top-img-wrap .unique {
    font-size: 12px !important;
    width: 100%;
    padding: 5px !important;
  }
}


.spl-font18 {
  font-size: 52px;
}