* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

:root {
--nav-height: 90px;   /* change if your navbar height is different */
}
body {
font-family: Inter, sans-serif;
color: #16273f;
background: #f5f9ff;
padding-top: var(--nav-height) !important;
overflow-x: hidden !important;
}

#subHeadlineCarousel,
#subHeadlineCarousel * {
    cursor: default !important;
}

.headertext {
  display: none;
}


/* ===========================
NAVBAR & HEADER
=========================== */

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
color: #fff !important;
}

.main-navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: #fff;
transition: all 0.35s ease-in-out;
z-index: 1030;
box-shadow: 0 2px 10px rgba(0,0,0,0.25); /* clean visible separation */
}


/* Make left image column taller */
.hero-image-col {
padding: 0 !important;
margin: 0 !important;
display: flex;
}

/* Give the image more height than the content */
.hero-image-wrapper {
width: 100%;
height: 120%;         /* <-- increases image height */
max-height: 750px;    /* adjust as needed */
position: relative;
}

/* Image fills expanded height */
.hero-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}


.main-navbar.nav-scrolled {
background: #fff !important;
box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

/*.main-navbar.nav-scrolled .container {
padding-block: 10px;
}*/

/* Logo bigger + pill */
.navbar-brand img {
max-width: 190px;
height: auto;
transition: 0.3s;
padding: 10px 16px;
}

.main-navbar.nav-scrolled .navbar-brand img {
max-width: 190px;
}

/* Hamburger icon bigger */
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2316273F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.9em;
    height: 1.9em;
}


.navbar-light .navbar-toggler {
border-color: #16273F !important;
}

.navbar-toggler {
border-color: rgba(148, 163, 184, 0.7);
padding: 0.55rem 0.8rem;
}

/* Nav links */

.nav-link {
color: #fff !important;
}

.navbar-nav .nav-link {
position: relative;
font-weight: 700;
font-size: 18px;
color: #626060 !important;
padding-inline: 1.1rem;
transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
color: #16273F !important;
}

.navbar-nav .nav-link::after {
content: "";
position: absolute;
left: 0;
bottom: -3px;
width: 100%;
height: 2px;
background: #16273F;
opacity: 0;
transform: scaleX(0.4);
transition: all 0.35s ease;
}

.navbar-nav .nav-link:hover::after {
opacity: 1;
transform: scaleX(1);
}

.navbar-nav .activeclass {
color: #16273F !important;
font-weight: 700;
}

.navbar-nav .activeclass::after {
opacity: 1;
transform: scaleX(1);
}

.navbar-nav .nav-item {
margin-right: 0px !important;
}

.navbar-nav .nav-item:last-child {
margin-right: 0;
}

.navbar-light .navbar-toggler-icon {
width: 1.9em;
height: 1.9em;
transition: background-image 0.25s ease;
}

/* When menu is open (aria-expanded="true"), change to X icon */
.navbar-light .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2316273F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M7 7l16 16M23 7L7 23'/%3e%3c/svg%3e");
}


/* ===========================
HERO SECTION
=========================== */

.hero-section {
margin-top: 0 !important;
padding: 0 0 0px !important;   /* no top padding here */
background: #f5f7fb;            /* light background for clean separation */
}

/* Creates the visible gap between header and banner */
.hero-section .container {
padding-top: 32px !important;
}

/* Base row alignment, tweaked with media queries */
.hero-row {
align-items: center;
}

/* ===== ONE-LINE TAGS ON BANNER IMAGE ===== */

.hero-image-wrapper {
position: relative;
}

.hero-tags {
position: absolute;
bottom: 18px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: row;    /* force one line */
gap: 12px;
white-space: nowrap;    /* prevent wrapping */
padding: 10px 14px;
border-radius: 14px;
}

.hero-tags span {
background: rgba(255, 255, 255, 0.15); /* Light glass tint */
backdrop-filter: blur(10px) saturate(160%) contrast(120%);
-webkit-backdrop-filter: blur(10px) saturate(160%) contrast(120%);    
color: #fff;
padding: 8px 20px;
border-radius: 12px;
font-size: 18px;
font-weight: 600;
letter-spacing: 0.3px;
border: 1px solid rgba(255, 255, 255, 0.25); /* subtle border */
box-shadow: 0 4px 12px rgba(0,0,0,0.25);     /* depth */
}

/* Text + image layout inside each sub-headline slide */
.hero-sub-slide {
display: flex;
align-items: center;
gap: 1.5rem;
}

/* Text side */
.hero-sub-text {
flex: 1 1 0;
}

.hero-sub-text p {
margin-bottom: 0;
line-height: 1.7;
font-size: 18px;
font-weight: 700;
}

/* Image side */
.hero-sub-image {
flex: 0 0 140px;      /* fixed-ish width on desktop */
max-width: 160px;
}

.hero-sub-image img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 14px;
}

/* Mobile: stack image below text for readability */
@media (max-width: 767.98px) {
.hero-sub-slide {
flex-direction: column;
align-items: center;
text-align: center;
}

.hero-sub-text p {
font-size: 16px;
}

.hero-sub-image {
flex: 0 0 auto;
max-width: 220px;
}
}



/* Mobile Handling — allow slider to scale but keep one-line */
@media (max-width: 576px) {
.hero-tags {
bottom: 12px;
transform: translateX(-50%) scale(0.85); /* shrink for small screens */
}

.hero-tags span {
font-size: 13px;
padding: 6px 16px;
}
}

/* Hero image wrapper */

.hero-image-wrapper {
border-radius: 1.5rem;
overflow: hidden;
box-shadow: 0 22px 45px rgba(15, 23, 42, 0.28);
height: 1300px;
}

.hero-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

/* Texts */

.hero-kicker {
font-size: 16px;
text-transform: uppercase;
font-weight: 600;
margin-bottom: 0.75rem;
color: #16273F;
}

.hero-title {
font-size: clamp(2rem, 3vw + 1rem, 55px);
font-weight: 700;
line-height: 1.1;
margin-bottom: 1.25rem;
}

/* Sub-headline slider */

.hero-sub-slider {
margin-bottom: 1.75rem;
font-size: 0.98rem;
max-width: 900px;
min-height: 120px;
text-align: justify;
}
.carousel-inner {
position: relative;
width: 100%;
/* overflow: hidden; */
}

.hero-sub-slider .carousel-item p {
margin-bottom: 0;
line-height: 1.7;
font-size: 20px;
font-weight: 500;
color: #16273F;
}

/* Slider indicators */

.hero-sub-indicators {
margin-top: 0.75rem;
display: flex;
gap: 0.35rem;
justify-content: center;
}

.hero-sub-indicators button {
width: 7px;
height: 7px;
border-radius: 50px;
background: #d1d5db;
border: none;
transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}

/* Active dot animation */
.hero-sub-indicators button.active {
width: 22px;
background: #2563eb;
}

/* Smooth shrink-back */
.hero-sub-indicators button:not(.active) {
width: 7px;
background: #d1d5db;
}

/* Ripple */
.hero-sub-indicators button.active::after {
content: "";
position: absolute;
inset: 0;
border-radius: 50px;
background: rgba(37, 99, 235, 0.28);
animation: pulseIndicator 0.6s ease-out forwards;
}

@keyframes pulseIndicator {
from {
transform: scale(0.4);
opacity: 0.5;
}
to {
transform: scale(1.6);
opacity: 0;
}
}

/* ===========================
HERO BUTTONS / CTA
=========================== */

.hero-buttons .btn {
border-radius: 999px;
padding-inline: 1.7rem;
padding-block: 0.7rem;
font-weight: 600;
font-size: 0.95rem;
}

.hero-buttons .btn-primary {
background: #111827;
border-color: #111827;
}

.hero-buttons .btn-primary:hover {
background: #020617;
border-color: #020617;
}

/* CTA buttons used in hero */

.btn-cta-primary,
.btn-cta-secondary {
font-weight: 600;
border-radius: 50px;
font-size: 20px;
border-width: 2px;
position: relative;
overflow: hidden;
transition: none !important; /* no hover transform */
}

/* Always show dark background */
.btn-cta-primary {
background: #111827 !important;
border-color: #111827 !important;
color: #ffffff !important;
}

.btn-cta-secondary {
background: #111827 !important;
border-color: #111827 !important;
color: #ffffff !important;
}

/* Continuous shine animation */
.btn-cta-primary::before,
.btn-cta-secondary::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 60%;
height: 100%;
background: linear-gradient(
120deg,
transparent,
rgba(255, 255, 255, 0.45),
transparent
);
transform: skewX(-25deg);
animation: continuousShine 3.5s linear infinite;
}

@keyframes continuousShine {
0% {
left: -100%;
}
100% {
left: 140%;
}
}

/* Remove extra hover effects */
.btn-cta-primary:hover,
.btn-cta-secondary:hover,
.btn-cta-primary:focus,
.btn-cta-secondary:focus {
background: #111827 !important;
border-color: #111827 !important;
color: #ffffff !important;
box-shadow: none !important;
transform: none !important;
}

/* ===========================
STAT / INFO CARDS (if used later)
=========================== */

.hero-bottom-row {
margin-top: 2.4rem;
}

.stat-card-main {
background: #020617;
border-radius: 1.1rem;
padding: 1.6rem 1.8rem;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.stat-label {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.16em;
margin-bottom: 0.5rem;
}

.stat-number {
font-size: 2rem;
font-weight: 700;
margin-bottom: 0.25rem;
}

.stat-number span {
font-size: 1.2rem;
margin-left: 0.15rem;
}

.stat-text {
font-size: 0.9rem;
}

.stat-avatars img {
width: 32px;
height: 32px;
border-radius: 999px;
border: 2px solid #020617;
margin-left: -10px;
}

.stat-rating {
font-size: 0.78rem;
}

.stat-card-side {
border-radius: 1.1rem;
padding: 1.6rem 1.8rem;
background: linear-gradient(135deg, #1e3a8a, #0f172a);
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.stat-card-side h6 {
font-size: 0.95rem;
font-weight: 600;
margin-bottom: 0.4rem;
}

.stat-card-side p {
font-size: 0.87rem;
margin-bottom: 1rem;
}

.play-pill {
display: flex;
align-items: center;
gap: 0.7rem;
font-size: 0.8rem;
margin-top: 0.5rem;
}

.play-pill .circle {
width: 40px;
height: 40px;
border-radius: 999px;
border: 2px solid #e5e7eb;
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
}

/* ===========================
SECTION & MINI-CARDS
=========================== */

.section-kicker {
font-size: 0.78rem;
text-transform: uppercase;
font-weight: 600;
margin-bottom: 0.75rem;
}

.whatssec {
font-size: 35px;
font-weight: 700;
line-height: 1.1;
margin-bottom: 1.25rem !important;
color: #16273F !important;
}

.whatssec1 {
font-size: 40px;
font-weight: 700;
line-height: 1.1;
margin-bottom: 1.25rem !important;
color: #fff;
}

.whatssec2 {
font-size: 40px;
font-weight: 700;
line-height: 1.1;
margin-bottom: 1.25rem !important;
color: #16273F !important;
}


.section-title-small {
font-size: 1.45rem;
font-weight: 700;
color: #0f172a;
margin-top: 4px;
}

/* Mini service cards */

.service-mini-card {
  background: #ffffff;
  padding: 1.4rem 1.2rem;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  height: 100%;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-mini-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;
}


@keyframes borderRun {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}


/* Hover lift */
.service-mini-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}


.service-mini-card h6 {
font-size: 24px;
font-weight: 700;
color: #16273F;
margin-bottom: 0.4rem;
}

.service-mini-card p {
font-size: 18px;
color: #090a0d;
margin-bottom: 0;
text-align: left;
}



.service-icon-box {
width: 50px;
height: 50px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
}

.service-icon-box img {
width: 40px;
height: 40px;
object-fit: contain;
}

.service-points {
  list-style: none;
  padding-left: 0;
  margin-top: 0.6rem;
}

.service-points li {
  position: relative;
  padding-left: 28px;
  font-size: 18px;
  color: #090a0d;
  margin-bottom: 8px;
  line-height: 1.5;
      font-weight: 500;
}

.service-points p {
    position: relative;
    font-size: 20px;
    color: #090a0d;
    margin-bottom: 8px;
    line-height: 1.5;
    font-weight: 700;
}

.service-points a {
  text-decoration: none;
}

/* ICON */
.service-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
}


/* Very small phones */
/* =================================
MOBILE HEADER – BIGGER HEIGHT, LOGO, HAMBURGER
=================================*/
@media (max-width: 575.98px) {

/* Header bar taller */
.main-navbar {
padding-block: 14px;           /* increases header height */
}

.main-navbar .container {
padding-inline: 16px;
}

/* Logo bigger on mobile */
.navbar-brand img {
max-width: 210px;              /* was 190px */
padding: 12px 20px;            /* slightly larger white pill */
}

/* Larger hamburger tap area */
.navbar-toggler {
padding: 0.75rem 1rem;         /* larger clickable area */
}

.navbar-light .navbar-toggler-icon {
width: 2.3em;                  /* icon bigger */
height: 2.3em;
}

/* Optional: slightly bigger mobile menu text */
.navbar-nav .nav-link {
font-size: 1.05rem;
padding-block: 0.5rem;
}

/* Because header is taller, give hero more top padding */
.hero-section {
padding-top: 160px;            /* adjust so hero starts below header */
}

.service-mini-card p{
text-align: justify;
}
}

@media (min-width: 1200px) {
.container, .container-lg, .container-md, .container-sm, .container-xl {
max-width: 1250px;
}
}

/* For 1600px and above (Already Added) */
@media (min-width: 1600px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
max-width: 1520px;
}
}





/* ===========================
WHAT MAKES US DIFFERENT
=========================== */

.process-section {
border-radius: 32px;
}

/* headings (desktop + mobile) */
.process-label {
font-size: 14px;
font-weight: 500;
color: #090a0d;
}

/*.process-title,
.whatssec {
font-size: 32px;
font-weight: 700;
color: #111827;
}*/

.process-subtext {
max-width: 620px;
margin: 0 auto;
font-size: 14px;
color: #090a0d;
}

/* timeline line and numbers (DESKTOP) */
.process-timeline {
max-width: 1000px;
margin: 0 auto;
}

.timeline-line {
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1px;
background: #000;
z-index: 1;
}

.step-number {
position: relative;
z-index: 2;
width: 42px;
height: 38px;
border-radius: 6px;
background: #d1d5db;
color: #090a0d;
font-size: 20px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
}

.step-number.active {
background: #16273F;
color: #ffffff;
}

/* cards (desktop) */
.process-card {
background: #ffffff;
border-radius: 24px;
padding: 32px 28px;
text-align: center;
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.process-card-title {
font-size: 20px;
font-weight: 700;
color: #16273F;
margin-bottom: 12px;
}

.process-card-text {
font-size: 18px;
color: #090a0d;
margin-bottom: 0;
    font-weight: 500;
}

/* =========================================
WHAT MAKES US DIFFERENT – MOBILE VERTICAL TIMELINE
========================================= */
@media (max-width: 991.98px) {

/* Hide horizontal desktop timeline */
.process-timeline {
display: none !important;
}

/* Vertical timeline container */
.process-cards {
position: relative;
margin-left: 0;
padding-left: 70px;          /* space for line + numbers */
}

/* Vertical line joining 01, 02, 03 */
.process-cards::before {
content: "";
position: absolute;
left: 30px;
top: 55px;
bottom: 55px;
width: 2px;
background: #d1d5db;
z-index: 1;
}

/* Each step: full-width, stacked one by one */
.process-step {
position: relative;
display: flex;
align-items: flex-start;
margin-bottom: 22px;
flex: 0 0 100%;
max-width: 100%;
}

.process-step:last-child {
margin-bottom: 0;
}

/* Number box on the line (left side) */
.process-step::before {
    content: "";
    position: absolute;
    left: -63px;
    top: 27px;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #d1d5db;
    color: #090a0d;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 30px;
}

/* Step numbers */
.process-step.step-1::before {
content: "01";
background: #16273F;
color: #ffffff;
font-size: 20px;
}

.process-step.step-2::before {
content: "02";
font-size: 20px;
}

.process-step.step-3::before {
content: "03";
background: #16273F;
color: #ffffff;
font-size: 20px;
}

/* Cards aligned to the right of the numbers */
.process-card {
text-align: left;
padding: 20px 18px;
box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
width: 100%;
}

.process-card-title{
text-align: left;
font-size: 20px;
}

.process-card-text {
text-align: left;
font-size: 16px;
}
}

/* ===============================
MOBILE MENU HEADER INSIDE DRAWER
================================ */
.mobile-menu-header {
width: 100%;
padding: 18px 10px 22px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid rgba(255,255,255,0.15);
}

.mobile-menu-logo {
width: 100px;
height: auto;
background: #fff;
}

.mobile-close-btn {
background: none;
border: none;
color: #fff;
font-size: 34px;
padding: 0;
}

.mobile-close-btn:focus {
outline: none;
}

/* Hide header on desktop */
@media (min-width: 992px) {
.mobile-menu-header {
display: none;
}
}

/* ===============================
FULL-SCREEN RIGHT SIDE DRAWER MENU
================================ */
@media (max-width: 991.98px) {

.main-navbar .navbar-collapse {
position: fixed !important;
top: 0;
right: 0;
width: 100%;
height: 100vh;
background: #16273F;
padding: 30px 22px;
transform: translateX(100%);
transition: transform 0.35s ease-in-out;
z-index: 9999;
}

.main-navbar .navbar-collapse.show {
transform: translateX(0);
}

/* Menu links stacked */
.navbar-nav {
flex-direction: column !important;
align-items: flex-start !important;
gap: 22px;
padding-top: 20px;
}
}

/* ===============================
HAMBURGER → X ICON SWITCH
================================ */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-width='2' d='M7 7l16 16M23 7L7 23'/%3e%3c/svg%3e");
}









/* ===========================
FOOTER SECTION
=========================== */

.footer-section {
    background: #fff;
    color: #000;
    font-size: 18px;
    margin-top: 50px;
    padding-top: 60px;
    padding-bottom: 20px;
    padding-left: 60px;
    padding-right: 60px;
    font-weight: 500;
}

/* LINKS */
.footer-section a {
color: #000;
text-decoration: none;
}

.footer-section a:hover {
color: #000;
}

/* LOGO */
.footer-logo-img {
height: 80px;
width: auto;
padding-bottom: 6px;
}

/* HEADINGS */
.footer-heading {
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
position: relative;
display: inline-block;
padding-bottom: 6px;
}

.footer-heading::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 0%;
height: 2px;
background: #000;
transition: width 0.35s ease;
border-radius: 50px;
}

.footer-heading:hover::after {
width: 100%;
  background: #000; /* hover → BLACK line */
}

/* PARAGRAPH */
.footer-text {
max-width: 430px;
line-height: 1.7;
margin-bottom: 25px;
font-size: 20px;
}

/* SOCIAL ICONS */
.footer-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid #000;
    margin: auto;
}

.footer-social .social-icon:hover {
background: #fff;
}

/* LINK LISTS */
/* Footer Link Animation */
.footer-links li {
margin-bottom: 6px;
font-size: 18px;
overflow: hidden; /* for slide effect */
}

.footer-links li a {
font-size: 18px;
display: inline-block;
position: relative;
padding-left: 0;
transition: all 0.3s ease;
    font-weight: 500;
}

/* Slide Right + Color Change */
.footer-links li a:hover {
color: #000;
padding-left: 6px;
transform: translateX(3px);
}

/* Underline Reveal */
.footer-links li a::after {
content: "";
position: absolute;
left: 0;
bottom: -2px;
width: 0%;
height: 2px;
background: #ffffff;
border-radius: 50px;
transition: width 0.3s ease;
}

.footer-links li a:hover::after {
width: 100%;
}

.footer-links {
padding-left: 0;
}


/* DIVIDER */
.footer-divider {
border-color: rgba(255, 255, 255, 0.08);
}

/* BOTTOM AREA */
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
color: #000;
padding-top: 10px;
font-size: 18px;
    font-weight: 500;
}

/* POWERED BY LOGO */
.footer-powered {
display: flex;
align-items: center;
gap: 8px;
}

.footer-powered img {
height: 20px;
width: auto;
}

.footer-map iframe {
border-radius: 12px;
}

.footer-links li a i {
    color: #000;
    font-size: 14px;
}

.footer-legal-links li {
    margin-bottom: 6px;
}


/* MOBILE RESPONSIVE */
@media (max-width: 767.98px) {

.footer-section {
text-align: left;
padding: 20px;
}
.footer-logo {
  justify-content: center;
  width: 60px;
  margin: auto;
}

.space1 {
  margin-top: 10px;
}

.contactspace {
   margin-top: 10px !important;
   padding: 10px !important;
}
.contact-social {
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.enquiry-submit {
  padding: 10px !important;
}

.legal-title {
  font-size: 30px !important;
}

.legal-card {
  padding: 15px !important;
}
.legal-card p {
  font-size: 16px !important;
}
.legal-card h4 {
  font-size: 20px !important;
}
.footer-bottom {
flex-direction: column;
text-align: center;
gap: 8px;
}
}

/* WhatsApp Integration */

.whatsapp-name {
font-size: 18px;
font-weight: 600;
padding-bottom: 0;
margin-bottom: 0;
line-height: 1.5;
color: #fff;
}
#whatsapp-chat {
box-sizing: border-box !important;
outline: none !important;
position: fixed;
width: 350px;
border-radius: 10px;
box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
bottom: 230px;
right: 32px;
overflow: hidden;
z-index: 99;
animation-name: showchat;
animation-duration: 1s;
transform: scale(1);
}
a.blantershow-chat {
background: none !important;
color: #404040;
position: fixed;
display: flex;
font-weight: 400;
justify-content: space-between;
z-index: 1002;
bottom: 180px;
right: 49px;
font-size: 18px;
height: 45px;
width: 45px;
padding: 4px;
border-radius: 30px;
/box-shadow: 0 1px 15px rgb(32 33 36 / 61%);/
}
a.blantershow-chat svg {
transform: scale(1.2);
}
.header-chat {
background: #009688;
background: #095e54;
color: #fff;
padding: 20px;
}
.header-chat h3 {
margin: 0 0 10px;
}
.header-chat p {
font-size: 14px;
line-height: 1.7;
margin: 0;
}
.info-avatar {
position: relative;
}
.info-avatar img {
width: 80px;
float: left;
margin: 0 10px 0 0;
background: #fff;
padding: 5px;
}
a.informasi {
padding: 20px;
display: block;
overflow: hidden;
animation-name: showhide;
animation-duration: 0.5s;
}
a.informasi:hover {
background: #f1f1f1;
}
.info-chat span {
display: block;
}
#get-label,
span.chat-label {
font-size: 12px;
color: #888;
}
#get-nama,
span.chat-nama {
margin: 5px 0 0;
font-size: 15px;
font-weight: 700;
color: #222;
}
#get-label,
#get-nama {
color: #fff;
}
span.my-number {
display: none;
}
textarea#chat-input {
border: none;
width: 100%;
height: 46px;
outline: none;
resize: none;
padding: 9px;
font-size: 14px;
border-radius: 0px;
min-height: 50px;
}
a#send-it {
font-weight: 700;
padding: 10px 10px 0;
background: #eee;
}
a#send-it svg {
fill: #a6a6a6;
height: 24px;
width: 24px;
}
.first-msg {
background: transparent;
padding: 30px;
text-align: center;
}
.first-msg span {
background: #e2e2e2;
color: #333;
font-size: 14.2px;
line-height: 1.7;
border-radius: 10px;
padding: 15px 20px;
display: inline-block;
}
.start-chat .blanter-msg {
display: flex;
}
#get-number {
display: none;
}
a.close-chat {
position: absolute;
top: 5px;
right: 15px;
color: #fff;
font-size: 30px;
}
@keyframes ZpjSY {
0% {
background-color: #b6b5ba;
}
15% {
background-color: #111111;
}
25% {
background-color: #b6b5ba;
}
}
@keyframes hPhMsj {
15% {
background-color: #b6b5ba;
}
25% {
background-color: #111111;
}
35% {
background-color: #b6b5ba;
}
}
@keyframes iUMejp {
25% {
background-color: #b6b5ba;
}
35% {
background-color: #111111;
}
45% {
background-color: #b6b5ba;
}
}
@keyframes showhide {
from {
transform: scale(0.5);
opacity: 0;
}
}
@keyframes showchat {
from {
transform: scale(0);
opacity: 0;
}
}
@media screen and (max-width: 480px) {
#whatsapp-chat {
width: auto;
left: 5%;
right: 5%;
font-size: 80%;
}
}
@media screen and (max-width: 1200px) {
.index-page.show{
display: none !important;
}
}
#whatsapp-chat.hide {
display: none;
animation-name: showhide;
animation-duration: 0.5s;
transform: scale(1);
opacity: 1;
}
#whatsapp-chat.show {
display: block;
animation-name: showhide;
animation-duration: 0.5s;
transform: scale(1);
opacity: 1;
}
.whatsapp-message-container {
display: flex;
z-index: 1;
}
.whatsapp-message {
padding: 7px 14px 6px;
background-color: white;
border-radius: 0px 8px 8px;
position: relative;
transition: all 0.3s ease 0s;
opacity: 0;
transform-origin: center top 0px;
z-index: 2;
box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
margin-top: 4px;
margin-left: -54px;
max-width: calc(100% - 66px);
}
.whatsapp-chat-body {
padding: 4px 0px 0px 2px;
background-color: #e6ddd4;
position: relative;
}.whatsapp-chat-body::before {
display: block;
position: absolute;
content: "";
left: 0px;
top: 0px;
height: 100%;
width: 100%;
z-index: 0;
opacity: 0.08;
background-image: url("../../senthaa/image-senthaa/whatsapp-bg.webp");
}
.dAbFpq {
display: flex;
z-index: 1;
}
.eJJEeC {
background-color: white;
width: 52.5px;
height: 32px;
border-radius: 16px;
display: flex;
-moz-box-pack: center;
justify-content: center;
-moz-box-align: center;
align-items: center;
margin-left: 10px;
opacity: 0;
transition: all 0.1s ease 0s;
z-index: 1;
box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}
.hFENyl {
position: relative;
display: flex;
}
.ixsrax {
height: 5px;
width: 5px;
margin: 0px 2px;
border-radius: 50%;
display: inline-block;
position: relative;
animation-duration: 1.2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
top: 0px;
background-color: #9e9da2;
animation-name: ZpjSY;
}
.dRvxoz {
height: 5px;
width: 5px;
margin: 0px 2px;
background-color: #b6b5ba;
border-radius: 50%;
display: inline-block;
position: relative;
animation-duration: 1.2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
top: 0px;
animation-name: hPhMsj;
}
.kAZgZq {
/*  padding: 7px 14px 6px;*/
/* background-color: white;
border-radius: 0px 8px 8px;*/
position: relative;
transition: all 0.3s ease 0s;
opacity: 0;
transform-origin: center top 0px;
z-index: 2;
/*  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;*/
margin-top: 4px;
margin-left: -54px;
max-width: calc(100% - 66px);
}
/*.kAZgZq::before {
position: absolute;
background-image: url("../../solar-image/images/whatsapp/side-extend.webp");
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: contain;
content: "";
top: 0px;
left: -12px;
width: 12px;
height: 19px;
}*/
.bMIBDo {
font-size: 13px;
font-weight: 700;
line-height: 18px;
color: #000;
}
.iSpIQi {
font-size: 14px;
line-height: 19px;
margin-top: 4px;
color: #111111;
}
.iSpIQi {
font-size: 14px;
line-height: 19px;
margin-top: 4px;
color: #111111;
}
.cqCDVm {
text-align: right;
margin-top: 4px;
font-size: 12px;
line-height: 16px;
color: rgba(17, 17, 17, 0.5);
margin-right: -8px;
margin-bottom: -4px;
}
.phone .phon1 {
position: fixed;
bottom: 135px;
right: 44px;
z-index: 9;
width: 35px;
}

.call-phone {
height: 40px;
z-index: 1003;
position: fixed;
right: 53px;
bottom: 120px;
}

/* Back to Top Button */
.back-to-top {
position: fixed;
bottom: 25px;
right: 50px;
width: 45px;
height: 45px;
background: #16273F;
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
z-index: 999;
cursor: pointer;
transition: 0.3s ease-in-out;
opacity: 0;
visibility: hidden;
}

.back-to-top.show {
opacity: 1;
visibility: visible;
bottom: 35px;
}

.back-to-top:hover {
background: #333;
}

.mobile-close-btn i {
    color: #16273F;
    font-size: 20px;
    border: 2px solid #16273F; 
    border-radius: 6px;   /* optional – makes it look neat */
    padding: 4px 6px;     /* space inside the border */
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}
.mobile-social-icons a {
  text-decoration: none;
}
.mob-social {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 2px solid #16273F;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16273F;
    font-size: 20px;
    transition: 0.3s;
    text-transform: none;
}




/* ===========================
RESPONSIVE TWEAKS
=========================== */

@media (max-width: 1300px) {
  .service-top-img-wrap .unique {
    font-size: 38px !important;
}
.gs-tab-header {
  gap: 50px !important;
  flex-direction: row !important; /* ✅ one line */
}
}

/* Tablets & below */
@media (max-width: 991.98px) {

  .legal-hero .legal-title{
    font-size: 30px !important;
  }
  .legal-hero-content {
    padding: 10px !important;
  }
  .secspacing {
    margin-top: 30px !important;
}

.maintext {
    font-size: 20px !important;
}

.overview-card h6 {
  font-size: 18px !important;
}
.overview-card li {
  font-size: 16px !important;
}
.overview-card ul {
    padding-left: 5px !important;
}
.overview-card {
    padding: 10px !important;
}

.overview-card {
  height: fit-content !important;
}

.service-overview-inline {
  margin-bottom: 5px !important;
}

.gs-tab-header {
  gap: 20px !important;
}


.appointment {
    position: relative !important;
    width: 100% !important;
    margin-bottom: 20px;
    font-size: 16px !important;
}


.outcome-btn {
    font-size: 10px !important;
    bottom: 5px !important;
    padding: 5px !important;
}

.yellow2 .service-info-list li {
  font-size: 16px !important;
}

.service-info-card {
  padding-bottom: 30px !important;
}

.contact-map-wrapper iframe {
    width: 100% !important;
    height: 200px !important;
    /* margin: auto; */
    display: flex;
}

.headertext {
    display: block;
    font-size: 18px;
    position: absolute;
     left: 55%;
    top: 25px; /* adjust if needed */
    right: auto;
    transform: translateX(-50%);
    text-align: center;
    font-weight: 600;
    background: #16273F;
    padding: 5px;
    color: #fff;
    border-radius: 20px;
}

.headermanagement h2{
  font-size: 20px !important;
}

.zcwf_lblLeft .zcwf_privacy_txt {
  font-size: 14px !important;
}

.zcwf_lblLeft .zcwf_button {
  font-size: 16px !important;
}


.space {
  margin-top: 30px;
}

  html, body {
    overflow-x: hidden;
  }

  /* Fix collapsed navbar container */
  #mainNavbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1040;
  }

  /* Reset desktop spacing */
  .navbar-nav {
    width: 100%;
    margin: 0;
    padding: 20px 0;
  }

  .navbar-nav .nav-item {
    margin-right: 0 !important;
  }

  /* Stack links properly */
  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 20px;
  }



.main-navbar .navbar-collapse {
position: fixed;
top: 0;
right: 0;
width: 100%;
height: 100%;
background: #fff;
padding: 90px 24px 24px;      
transform: translateX(100%);   
transition: transform 0.35s ease-in-out;
z-index: 1020;
}

/* When open (Bootstrap adds .show), slide in */
.main-navbar .navbar-collapse.show {
    transform: translateX(0);
    padding: 10px;
}

/* Prevent body from scrolling when menu open */
body.nav-open {
overflow: hidden;
}

/* Stack nav items vertically with space */
.main-navbar .navbar-nav {
flex-direction: column;
align-items: flex-start;
gap: 14px;                     /* space between menu items */
}

.main-navbar .nav-link {
font-size: 20px;
padding: 0;                    /* remove side padding inside overlay */
}

/* Keep header bar visible above overlay */
.main-navbar {
z-index: 1030;
}
.hero-row {
align-items: flex-start !important;
margin-top: 10px;
}

.navbar-nav .nav-link::after {
    left: 0px;
    bottom: 4px;
    width: 100vw;
}

.header1, {
    font-size: 20px !important;
}
.whatssec2, .whatssec {
    font-size: 30px;
    margin-bottom: 10px !important;
    text-align: center;
}

.gsl-paragraphs p{
  font-size: 16px !important;
}

.gsl-point-box p{
  font-size: 18px !important;
}

.hero-section {
padding-top: 130px;
padding-bottom: 50px;
}
.section-title-small {
font-size: 40px;
}
.service-icon-box {
width: 80px;
height: 80px;
}

.hero-kicker {
font-size: 30px;
}

.hero-title {
font-size: 40px;
line-height: 1.15;
}

.hero-sub-slider {
margin-top: 0.8rem;
margin-bottom: 1.3rem;
min-height: 140px; /* ensure carousel visible */
}


/* Center service cards & icons */
.service-mini-card {
text-align: center;
}

.service-icon-box {
    margin-inline: auto;
    margin-bottom: 0;
}

/* Buttons stacked full-width on small screens */
.hero-cta-group {
width: 100%;
}

.hero-cta-group .btn {
width: 100%;
justify-content: center;
}

.service-mini-card p {
text-align: justify;      /* prevents the last line from stretching */
hyphens: auto;                 /* auto break long words */
-webkit-hyphens: auto;
-ms-hyphens: auto;
font-size: 25px;
}

.main-navbar.nav-scrolled .navbar-brand img {
    max-width: 100px;
}

.main-navbar .container {
padding-inline: 16px;
padding-left: 0 !important;
}

/* Logo bigger on mobile */
.navbar-brand img {
max-width: 100px;
padding: 10px;
margin: 0;
}

/* Larger hamburger tap area */
.navbar-toggler {
padding: 5px;         /* larger clickable area */
}

.navbar-light .navbar-toggler-icon {
width: 20px;                  /* icon bigger */
height: 20px;
}

/* Optional: slightly bigger mobile menu text */
.navbar-nav .nav-link {
font-size: 16px;
padding-block: 0.5rem;
}

/* Because header is taller, give hero more top padding */
.hero-section {
padding-bottom: 0 !important;           /* adjust so hero starts below header */
}

.container, .container-md, .container-sm {
max-width: 900px;
}
.hero-tags span {
font-size: 25px;
}
.services-mini-row {
display: block !important;
}

.services-mini-row .col-12,
.services-mini-row .col-md-4 {
width: 100% !important;
max-width: 100% !important;
margin-bottom: 20px;
}

.service-mini-card {
margin-left: auto;
margin-right: auto;
width: 100%;
height: fit-content;
}
.service-icon-box img {
width: 40px;
height: 40px;
}
.service-mini-card h6 {
font-size: 20px;
}

.hero-sub-slider .carousel-item p { 
font-size: 16px;
}
.footer-heading {
    font-size: 20px;
    margin-bottom: 15px !important;
    padding-bottom: 0 !important;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}
.footer-social {
   align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.footer-links li {
  padding-left: 10px;
}
.service-points li {
  text-align: left !important;
}

.footer-heading {
font-size: 20px;
}
.footer-section a {
font-size: 16px;
}
.footer-links li a{
font-size: 16px;
}
.footer-bottom {
font-size: 16px;
}
.web {
font-size: 16px;
}
.header {
  flex-direction: column;
}
.header span {
font-size: 16px !important;
}
.service-info-title {
  text-align: center !important;
  font-size: 17px !important;
}
.service-info-list li {
  text-align: left !important;
  font-size: 16px !important;
}
.service-separator{
  margin: 10px !important;
}
.delivery-list li, .service-info-text {
  font-size: 16px !important;
  text-align: left !important;
}
}

/* New css 23-12-25 */

body {
  background: #f6f8fb;
  font-family: "Inter", sans-serif;
}

/* SECTION */


/* IMAGE */
.service-top-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.service-top-img {
  width: 100%;
  display: block;
}

.service-top-img-wrap .unique {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    color: #fff;
    font-size: 60px;
    font-weight: 500;
    text-align: center;
    background: rgba(0, 0, 0, 0.45);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    width: 100%;
}

/* TAB CARD */
.service-tab-card {
  background: #fff;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* TAB HEADERS */
.gs-tab-header {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid #e6e9ef;
  padding-bottom: 12px;
}

.gs-tab-link {
  background: #f1f3f7;
  border: none;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gs-tab-link:hover {
  background: #1943af;
  color: #fff;
}

.gs-tab-link.active {
  background: #0d6efd;
  color: #fff;
  box-shadow: 0 6px 16px rgba(13,110,253,0.35);
}

/* TITLES */
.service-main-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* INFO CARDS */
.service-info-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  height: 100%;
  border: 1px solid #eef1f5;
  transition: 0.3s;
}

.service-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.service-info-title {
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 12px;
}

/* LISTS */
.service-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-info-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 5px;
  font-size: 18px;
  color: #fff;
      font-weight: 500;
}

.service-info-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gs-tab-header {
    flex-direction: column;
  }

  .gs-tab-link {
    width: 100%;
    text-align: center;
  }
}

.green1 {
    background:
        linear-gradient(
            rgba(12, 90, 96, 0.85),
            rgba(12, 90, 96, 0.85)
        ),
        url("../images/1st(1).jpg") !important;
        
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    color: #ffffff;
}

.green2 {
    background:
        linear-gradient(
            rgba(12, 90, 96, 0.85),
            rgba(12, 90, 96, 0.85)
        ),
        url("../images/1st(2).jpg") !important;
        
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    color: #ffffff;
}

.green3 {
    background:
        linear-gradient(
            rgba(12, 90, 96, 0.85),
            rgba(12, 90, 96, 0.85)
        ),
        url("../images/1st(3).jpg") !important;
        
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    color: #ffffff;
}

.yellow1, .yellow2, .yellow3, .yellow4, .yellow5, .yellow6 {
    color: #fff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.yellow1 li, .yellow2 li, .yellow3 li, .yellow4 li, .yellow5 li, .yellow6 li {
    color: #fff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-left: 22px; /* space for icon */
}

.yellow1 li::before, .yellow2 li::before, .yellow3 li::before, .yellow4 li::before, 
.yellow5 li::before, .yellow6 li::before{
    content: "✦";
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 18px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    list-style: none;
}

.yellow1 span, .yellow2 span, .yellow3 span, .yellow4 span, .yellow5 span, .yellow6 span {
  color: #fff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}


.yellow1 {
    background:
        linear-gradient(
            rgba(242, 163, 20, 0.85),
            rgba(242, 163, 20, 0.85)
        ),
        url("../images/2nd(1).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #000000; /* adjust if needed */
}

.yellow2 {
    background:
        linear-gradient(
            rgba(242, 163, 20, 0.85),
            rgba(242, 163, 20, 0.85)
        ),
        url("../images/service1.jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #000000; /* adjust if needed */
}

.yellow3 {
    background:
        linear-gradient(
            rgba(242, 163, 20, 0.85),
            rgba(242, 163, 20, 0.85)
        ),
        url("../images/pack(1).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #000000; /* adjust if needed */
}

.yellow4 {
    background:
        linear-gradient(
            rgba(242, 163, 20, 0.85),
            rgba(242, 163, 20, 0.85)
        ),
        url("../images/1st(3).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #000000; /* adjust if needed */
}

.yellow5 {
    background:
        linear-gradient(
            rgba(242, 163, 20, 0.85),
            rgba(242, 163, 20, 0.85)
        ),
        url("../images/pack(3).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #000000; /* adjust if needed */
}

.yellow6 {
    background:
       
        url("../images/pack4.png") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #000000; 
    border-radius: 20px;
}

.yellow2 .service-info-title {
  font-size: 22px;
}

.yellow2 .service-info-list li {
  font-size: 20px;
}

.yellow span {
  color: #fff;
  font-weight: 500;
}

.small, small {
    font-size: 18px !important;
}

.red1 {
    background:
        linear-gradient(
            rgba(201, 56, 56, 0.85),
            rgba(201, 56, 56, 0.85)
        ),
        url("../images/3rd(1).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #ffffff;
}

.red2 {
    background:
        linear-gradient(
            rgba(201, 56, 56, 0.85),
            rgba(201, 56, 56, 0.85)
        ),
        url("../images/3rd(2).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #ffffff;
}

.red3 {
    background:
        linear-gradient(
            rgba(201, 56, 56, 0.85),
            rgba(201, 56, 56, 0.85)
        ),
        url("../images/3rd(3).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #ffffff;
}

.black1 {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
        ),
        url("../images/4th(1).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #ffffff;
}

.black2 {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
        ),
        url("../images/4th(2).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #ffffff;
}

.black3 {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
        ),
        url("../images/4th(3).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #ffffff;
}


.lightgreen1 {
    background:
        linear-gradient(
            rgba(138, 169, 65, 0.85),
            rgba(138, 169, 65, 0.85)
        ),
        url("../images/pack(1).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #ffffff;
}

.lightgreen2 {
    background:
        linear-gradient(
            rgba(138, 169, 65, 0.85),
            rgba(138, 169, 65, 0.85)
        ),
        url("../images/1st(3).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #ffffff;
}

.lightgreen3 {
    background:
        linear-gradient(
            rgba(138, 169, 65, 0.85),
            rgba(138, 169, 65, 0.85)
        ),
        url("../images/3rd(1).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #ffffff;
}


.meroon1 {
    background:
        linear-gradient(
            rgba(92, 8, 10, 0.85),
            rgba(92, 8, 10, 0.85)
        ),
        url("../images/pack(3).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #ffffff;
}

.meroon2 {
    background:
        linear-gradient(
            rgba(92, 8, 10, 0.85),
            rgba(92, 8, 10, 0.85)
        ),
        url("../images/3rd(3).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #ffffff;
}

.meroon3 {
    background:
        linear-gradient(
            rgba(92, 8, 10, 0.85),
            rgba(92, 8, 10, 0.85)
        ),
        url("../images/4th(1).jpg") !important;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #ffffff;
}

.header {
  display: flex;
  align-items: center;
  gap: 10px; /* space between title and text */
}

.header-title {
  font-weight: 700;
  white-space: nowrap;
}

.header-text {
  font-size: 16px;
  color: #626060 !important;
}




.header span {
  font-size: 18px;
  color: #0c5a60;
  margin-bottom: 0 !important;
}

.header {
  margin-top: 20px;
}

.service-subtitle-label p {
  font-size: 16px;
  color: #626060;
  margin-top: 10px;
}

.service-main-title p {
  font-size: 16px;
  color: #626060;
  margin-top: 10px;
}


.secspacing {
    margin-top: 50px;
}


/* New correction 29-12-25 */
/* SECTION */
.gsl-image-box-section {
  background: #fafafa;
}

/* IMAGE */
.gsl-image-wrap img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* SUBTITLE */
.section-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 520px;
}

/* PARAGRAPHS */
.gsl-paragraphs p {
  font-size: 20px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 12px;
      font-weight: 500;
}

/* POINT BOXES */
.gsl-point-box {
    background: #82b1dd38;
    padding: 20px 22px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    font-size: 18px;
    font-weight: 600;
    color: #16273F;
    height: 100%;
    min-height: 160px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gsl-point-box span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-top: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .gsl-image-wrap img {
    height: 320px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}


.first {
  background: #16273F ;
  color: #fff;
  padding: 10px;
}



.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}
/*
.row > div:nth-child(1),
.row > div:nth-child(3) {
  padding-left: 40px;
}*/

/* Heading */
.service-info-title {
  text-align: left;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

/* Bullet list */
.delivery-list {
  padding-left: 0px; /* default bullet spacing */
  margin: 0;
}

.delivery-list li {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  list-style: none;
}

/* Paragraph */
.service-info-text {
  font-size: 16px;
  line-height: 1.6;
}


.service-info-text {
  font-size: 18px;
  font-weight: 500;
}


/* New css 31-12-25 */

.yellow3 span, .yellow4 span, .yellow5 span {
  font-weight: 800;
  letter-spacing: 1;
}

.enquiry-btn {
  background-color: #16273F;
  color: #fff;
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.enquiry-btn:hover {
  background-color: #1943af; /* accent yellow */
  color: #fff;
  transform: translateY(-2px);
}

.contact-map-wrapper {
  position: relative;
}

/* Appointment badge */
.appointment {
    position: absolute;
    top: 9px;
    right: 7px;
    background: #ffffff;
    color: #16273F;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    z-index: 5;
    text-align: center;
    width: 42%;
}

.appointment a {
  color: #0b3c88;
  font-weight: 600;
  text-decoration: underline;
}

.gsl-point-box p {
  margin-bottom: 0;
  color: #fff;
  text-align: center !important;
}




/* enquiry */

.enquiry-section {
  background: #f9f9f9;
}

.enquiry-card {
  background: #fff;
  padding: 40px;
  max-width: 850px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.enquiry-title {
  font-weight: 700;
  color: #16273F;
}

.enquiry-card label {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.form-control {
  border-radius: 12px;
  padding: 10px 14px;
}

.enquiry-submit {
  background: #16273F;
  color: #fff;
  padding: 14px 40px;
  font-size: 17px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.enquiry-submit:hover {
  background: #1943af;
  color: #fff;
}

.small-text {
    color: #000;
    font-size: 18px;
    font-weight: 500;
}

.col-black {
  color: black !important;
}

/* New css on  03-01-26 */

.header1 {
  font-size: 30px;
  font-weight: 500;
}

.bold{
  font-weight: 800;
}

.service-separator {
  margin: 40px 0 50px;
  text-align: center;
}

.service-separator img {
    width: 100%;
    height: auto;
    max-width: 1800px;
}

.leadership-number {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.leadership-icon {
  width: 22px;
  height: 22px;
}

/* New css on 05-01-26 */

.legal-section {
  background: #f8fafc;
}

.legal-title {
  font-size: 40px;
  font-weight: 700;
  color: #16273F;
}

.legal-updated {
    font-size: 20px;
    color: #000;
    font-weight: 700;
}

.legal-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.legal-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #16273f;
}

.legal-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  font-weight: 500;
   margin-bottom: 10px;
}

.legal-list {
  padding-left: 18px;
  list-style: none;
}

.legal-list li {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 10px;
  font-weight: 500;
}

.legal-list a {
  text-decoration: none;
}

.cookie-table th {
    background: #f5f6f8;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    color: #16273F;
    font-size: 18px;
}

.cookie-table td {
    vertical-align: middle;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

.cookie-table code {
  background: #f1f3f5;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 16px;
  color: #c7254e;
}

.table-link {
  color: #0b5ed7;
  text-decoration: underline;
  font-size: 18px;
}

.colorcode {
    color: #00ddfb;
    font-weight: 700;
}

/* New css on 12-01-26 */

.outcome-card {
  position: relative;
  padding-bottom: 70px; /* space for button */
}

.outcome-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 10px 22px;
    background: #fff;
    color: #16273F;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: none;
}

.outcome-btn:hover {
  background: #0f1c30;
  color: #fff;
}


/* subbanner for services */

/* Legal page heading background */
.legal-hero {
  background-image: url("../images/Subbanner.jpg"); /* change image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  position: relative;
  border-radius: 30px;
}

/* Dark overlay for readability */
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.legal-hero-content {
  display: inline-block;
  padding: 30px 50px;
  border-radius: 16px;

  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* Title */
.legal-hero .legal-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Subtitle */
.legal-hero .legal-updated {
  color: #f2f2f2;
  font-size: 16px;
  letter-spacing: 0.5px;
}


/* Management form starts */

.headermanagement h2{
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 5px;
  background: #162737;
  padding: 10px;
  border-radius: 10px;
}

.headermanagement p {
  font-size: 18px;
  color: #000;
  text-align: center;
  font-weight: 500;
  font-style: italic;
}

          html,body{
            margin: 0px;
          }
          .formsubmit.zcwf_button{
            color: white !important;
            background: transparent linear-gradient(0deg, #0279FF 0%, #00A3F3 100%);
          }
          #crmWebToEntityForm.zcwf_lblLeft{
            width: 100%;
            padding: 25px;
            margin: 0 auto;
            box-sizing: border-box;
          }
          #crmWebToEntityForm.zcwf_lblLeft *{
            box-sizing: border-box;
          }
          #crmWebToEntityForm {text-align: left;
          }
          #crmWebToEntityForm *{
          direction: ltr;
          }
          .zcwf_lblLeft .zcwf_title{
          word-wrap: break-word;
          padding: 0px 6px 10px;
          font-weight: bold;
          font-size: 20px;
           }
          .zcwf_lblLeft.cpT_primaryBtn:hover{
          background: linear-gradient(#02acff 0,#006be4 100%)no-repeat padding-box !important;
          box-shadow: 0 -2px 0 0  #0159b9 inset !important;
          border: 0 !important;
          color:  #fff !important;
          outline: 0 !important;
          }
          .zcwf_lblLeft .zcwf_col_fld input[ type  = text], input[ type  = password], .zcwf_lblLeft .zcwf_col_fld textarea {
    width: 60%;
    border: 1px solid  #c0c6cc !important;
    resize: vertical;
    border-radius: 2px;
    float: left;
    font-size: 18px;
    font-weight: 500;
    padding: 5px;
}
          .zcwf_lblLeft .zcwf_col_lab {
    width: 30%;
    word-break: break-word;
    padding: 0px 6px 0px;
    margin-right: 10px;
    margin-top: 5px;
    float: left;
    min-height: 1px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
          .zcwf_lblLeft .zcwf_col_fld{
          float: left;
          width: 68%;
          padding: 0px 6px 0px;
          position: relative;
          margin-top: 5px;
          }
          .zcwf_lblLeft .zcwf_privacy {padding: 6px;
          }
          .zcwf_lblLeft .wfrm_fld_dpNn {display: none;
          }
          .dIB {display: inline-block;
          }
          .zcwf_lblLeft .zcwf_col_fld_slt{
          width: 60%;
          border: 1px solid  #ccc;
          background:  #fff;
          border-radius: 4px;
          font-size: 12px;
          float: left;
          resize: vertical;
          padding: 2px 5px;
          }
          .zcwf_lblLeft .zcwf_row:after, .zcwf_lblLeft .zcwf_col_fld:after{
          content: '';
          display: table;
          clear: both;
          }
          .zcwf_lblLeft .zcwf_col_help{
          float: left;
          margin-left: 7px;
          font-size: 12px;
          max-width: 35%;
          word-break: break-word;
          }
          .zcwf_lblLeft .zcwf_help_icon{
          cursor: pointer;
          width: 16px;
          height: 16px;
          display: inline-block;
          background:  #fff;
          border: 1px solid  #c0c6cc;
          color:  #c1c1c1;
          text-align: center;
          font-size: 11px;
          line-height: 16px;
          font-weight: bold;
          border-radius: 50%;
          }
          .zcwf_lblLeft .zcwf_row {margin: 15px 0px;
          }
          .zcwf_lblLeft .formsubmit{
          margin-right: 5px;
          cursor: pointer;
          color:  #313949;
          font-size: 12px;
          }
          .zcwf_lblLeft .zcwf_privacy_txt{
          width: 100%;
          font-size: 18px;
           font-family: Inter, sans-serif;
          display: inline-block;
          vertical-align: top;
          color:  #000;
          }
          .zcwf_lblLeft .zcwf_button{
          font-size: 18px;
          color:  #313949;
          border: 1px solid  #c0c6cc;
          padding: 3px 9px;
          border-radius: 4px;
          cursor: pointer;
          max-width: 120px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          }
          .zcwf_lblLeft .zcwf_tooltip_over{
          position: relative;
          }
          .zcwf_lblLeft .zcwf_tooltip_ctn{
          position: absolute;
          background:  #dedede;
          padding: 3px 6px;
          top: 3px;
          border-radius: 4px;
          word-break: break-word;
          min-width: 100px;
          max-width: 150px;
          color:  #313949;
          z-index: 100;
          }
          .zcwf_lblLeft .zcwf_ckbox{
          float: left;
          }
          .zcwf_lblLeft .zcwf_file{
          width: 55%;
          box-sizing: border-box;
          float: left;
          }
          .cBoth:after{
          content: '';
          display: block;
          clear: both;
          }
          @media all and  (max-width: 600px){
          .zcwf_lblLeft .zcwf_col_lab, .zcwf_lblLeft .zcwf_col_fld{
          width: auto;
          float: none !important;
          }
          .zcwf_lblLeft .zcwf_col_help {width: 40%;
          }
          }


/* Business outcome starts  */
          html,body{
            margin: 0px;
          }
          .formsubmit.zcwf_button{
            color: white !important;
            background: transparent linear-gradient(0deg, #0279FF 0%, #00A3F3 100%);
          }
          #crmWebToEntityForm.zcwf_lblLeft{
            width: 100%;
            padding: 25px;
            margin: 0 auto;
            box-sizing: border-box;
          }
          #crmWebToEntityForm.zcwf_lblLeft *{
            box-sizing: border-box;
          }
          #crmWebToEntityForm {text-align: left;
          }
          #crmWebToEntityForm *{
          direction: ltr;
          }
          .zcwf_lblLeft .zcwf_title{
          word-wrap: break-word;
          padding: 0px 6px 10px;
          font-weight: bold }
          .zcwf_lblLeft.cpT_primaryBtn:hover{
          background: linear-gradient(#02acff 0,#006be4 100%)no-repeat padding-box !important;
          box-shadow: 0 -2px 0 0  #0159b9 inset !important;
          border: 0 !important;
          color:  #fff !important;
          outline: 0 !important;
          }
          .zcwf_lblLeft .zcwf_col_fld input[ type  = text], input[ type  = password], .zcwf_lblLeft .zcwf_col_fld textarea{
          width: 60%;
          border: 1px solid  #c0c6cc !important;
          resize: vertical;
          border-radius: 2px;
          float: left;
          }
          .zcwf_lblLeft .zcwf_col_lab{
          width: 30%;
          word-break: break-word;
          padding: 0px 6px 0px;
          margin-right: 10px;
          margin-top: 5px;
          float: left;
          min-height: 1px;
          }
          .zcwf_lblLeft .zcwf_col_fld{
          float: left;
          width: 68%;
          padding: 0px 6px 0px;
          position: relative;
          margin-top: 5px;
          }
          .zcwf_lblLeft .zcwf_privacy {padding: 6px;
          }
          .zcwf_lblLeft .wfrm_fld_dpNn {display: none;
          }
          .dIB {display: inline-block;
          }
          .zcwf_lblLeft .zcwf_col_fld_slt{
          width: 60%;
          border: 1px solid  #ccc;
          background:  #fff;
          border-radius: 4px;
          font-size: 12px;
          float: left;
          resize: vertical;
          padding: 2px 5px;
          }
          .zcwf_lblLeft .zcwf_row:after, .zcwf_lblLeft .zcwf_col_fld:after{
          content: '';
          display: table;
          clear: both;
          }
          .zcwf_lblLeft .zcwf_col_help{
          float: left;
          margin-left: 7px;
          font-size: 12px;
          max-width: 35%;
          word-break: break-word;
          }
          .zcwf_lblLeft .zcwf_help_icon{
          cursor: pointer;
          width: 16px;
          height: 16px;
          display: inline-block;
          background:  #fff;
          border: 1px solid  #c0c6cc;
          color:  #c1c1c1;
          text-align: center;
          font-size: 11px;
          line-height: 16px;
          font-weight: bold;
          border-radius: 50%;
          }
          .zcwf_lblLeft .zcwf_row {margin: 15px 0px;
          }
          .zcwf_lblLeft .formsubmit{
          margin-right: 5px;
          cursor: pointer;
          color:  #313949;
          font-size: 12px;
          }
          .zcwf_lblLeft .zcwf_privacy_txt {
    width: 100%;
    font-size: 18px;
    font-family: Inter, sans-serif;
    display: inline-block;
    vertical-align: top;
    color: #000;
    margin-top: -22px;
    margin-left: 20px;
}
          .zcwf_lblLeft .zcwf_button{
          font-size: 18px;
          color:  #313949;
          border: 1px solid  #c0c6cc;
          padding: 3px 9px;
          border-radius: 4px;
          cursor: pointer;
          max-width: 120px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          }
          .zcwf_lblLeft .zcwf_tooltip_over{
          position: relative;
          }
          .zcwf_lblLeft .zcwf_tooltip_ctn{
          position: absolute;
          background:  #dedede;
          padding: 3px 6px;
          top: 3px;
          border-radius: 4px;
          word-break: break-word;
          min-width: 100px;
          max-width: 150px;
          color:  #313949;
          z-index: 100;
          }
          .zcwf_lblLeft .zcwf_ckbox{
          float: left;
          }
          .zcwf_lblLeft .zcwf_file{
          width: 55%;
          box-sizing: border-box;
          float: left;
          }
          .cBoth:after{
          content: '';
          display: block;
          clear: both;
          }
          @media all and  (max-width: 600px){
          .zcwf_lblLeft .zcwf_col_lab, .zcwf_lblLeft .zcwf_col_fld{
          width: auto;
          float: none !important;
          }
          .zcwf_lblLeft .zcwf_col_help {width: 40%;
          }
          }


/* Communication outcome starts */ 

          html,body{
            margin: 0px;
          }
          .formsubmit.zcwf_button{
            color: white !important;
            background: transparent linear-gradient(0deg, #0279FF 0%, #00A3F3 100%);
          }
          #crmWebToEntityForm.zcwf_lblLeft{
            width: 100%;
            padding: 25px;
            margin: 0 auto;
            box-sizing: border-box;
          }
          #crmWebToEntityForm.zcwf_lblLeft *{
            box-sizing: border-box;
          }
          #crmWebToEntityForm {text-align: left;
          }
          #crmWebToEntityForm *{
          direction: ltr;
          }
          .zcwf_lblLeft .zcwf_title{
          word-wrap: break-word;
          padding: 0px 6px 10px;
          font-weight: bold }
          .zcwf_lblLeft.cpT_primaryBtn:hover{
          background: linear-gradient(#02acff 0,#006be4 100%)no-repeat padding-box !important;
          box-shadow: 0 -2px 0 0  #0159b9 inset !important;
          border: 0 !important;
          color:  #fff !important;
          outline: 0 !important;
          }
          .zcwf_lblLeft .zcwf_col_fld input[ type  = text], input[ type  = password], .zcwf_lblLeft .zcwf_col_fld textarea{
          width: 60%;
          border: 1px solid  #c0c6cc !important;
          resize: vertical;
          border-radius: 2px;
          float: left;
           font-family: Inter, sans-serif !important;
          }
          .zcwf_lblLeft .zcwf_col_lab{
          width: 30%;
          word-break: break-word;
          padding: 0px 6px 0px;
          margin-right: 10px;
          margin-top: 5px;
          float: left;
          min-height: 1px;
          }
          .zcwf_lblLeft .zcwf_col_fld{
          float: left;
          width: 68%;
          padding: 0px 6px 0px;
          position: relative;
          margin-top: 5px;
          }
          .zcwf_lblLeft .zcwf_privacy {padding: 6px;
          }
          .zcwf_lblLeft .wfrm_fld_dpNn {display: none;
          }
          .dIB {display: inline-block;
          }
          .zcwf_lblLeft .zcwf_col_fld_slt{
          width: 60%;
          border: 1px solid  #ccc;
          background:  #fff;
          border-radius: 4px;
          font-size: 12px;
          float: left;
          resize: vertical;
          padding: 2px 5px;
          }
          .zcwf_lblLeft .zcwf_row:after, .zcwf_lblLeft .zcwf_col_fld:after{
          content: '';
          display: table;
          clear: both;
          }
          .zcwf_lblLeft .zcwf_col_help{
          float: left;
          margin-left: 7px;
          font-size: 12px;
          max-width: 35%;
          word-break: break-word;
          }
          .zcwf_lblLeft .zcwf_help_icon{
          cursor: pointer;
          width: 16px;
          height: 16px;
          display: inline-block;
          background:  #fff;
          border: 1px solid  #c0c6cc;
          color:  #c1c1c1;
          text-align: center;
          font-size: 11px;
          line-height: 16px;
          font-weight: bold;
          border-radius: 50%;
          }
          .zcwf_lblLeft .zcwf_row {margin: 15px 0px;
          }
          .zcwf_lblLeft .formsubmit{
          margin-right: 5px;
          cursor: pointer;
          color:  #313949;
          font-size: 12px;
          }
          .zcwf_lblLeft .zcwf_privacy_txt{
          width: 100%;
          font-size: 18px;
           font-family: Inter, sans-serif;
          display: inline-block;
          vertical-align: top;
          color:  #000;
          }
          .zcwf_lblLeft .zcwf_button{
          font-size: 18px;
          color:  #313949;
          border: 1px solid  #c0c6cc;
          padding: 3px 9px;
          border-radius: 4px;
          cursor: pointer;
          max-width: 120px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          }
          .zcwf_lblLeft .zcwf_tooltip_over{
          position: relative;
          }
          .zcwf_lblLeft .zcwf_tooltip_ctn{
          position: absolute;
          background:  #dedede;
          padding: 3px 6px;
          top: 3px;
          border-radius: 4px;
          word-break: break-word;
          min-width: 100px;
          max-width: 150px;
          color:  #313949;
          z-index: 100;
          }
          .zcwf_lblLeft .zcwf_ckbox{
          float: left;
          }
          .zcwf_lblLeft .zcwf_file{
          width: 55%;
          box-sizing: border-box;
          float: left;
          }
          .cBoth:after{
          content: '';
          display: block;
          clear: both;
          }
          @media all and  (max-width: 600px){
          .zcwf_lblLeft .zcwf_col_lab, .zcwf_lblLeft .zcwf_col_fld{
          width: auto;
          float: none !important;
          }
          .zcwf_lblLeft .zcwf_col_help {width: 40%;
          }
          }

/* Process outcome starts */

          html,body{
            margin: 0px;
          }
          .formsubmit.zcwf_button{
            color: white !important;
            background: transparent linear-gradient(0deg, #0279FF 0%, #00A3F3 100%);
          }
          #crmWebToEntityForm.zcwf_lblLeft{
            width: 100%;
            padding: 25px;
            margin: 0 auto;
            box-sizing: border-box;
          }
          #crmWebToEntityForm.zcwf_lblLeft *{
            box-sizing: border-box;
          }
          #crmWebToEntityForm {text-align: left;
          }
          #crmWebToEntityForm *{
          direction: ltr;
          }
          .zcwf_lblLeft .zcwf_title{
          word-wrap: break-word;
          padding: 0px 6px 10px;
          font-weight: bold }
          .zcwf_lblLeft.cpT_primaryBtn:hover{
          background: linear-gradient(#02acff 0,#006be4 100%)no-repeat padding-box !important;
          box-shadow: 0 -2px 0 0  #0159b9 inset !important;
          border: 0 !important;
          color:  #fff !important;
          outline: 0 !important;
          }
          .zcwf_lblLeft .zcwf_col_fld input[ type  = text], input[ type  = password], .zcwf_lblLeft .zcwf_col_fld textarea{
          width: 60%;
          border: 1px solid  #c0c6cc !important;
          resize: vertical;
          border-radius: 2px;
          float: left;
          }
          .zcwf_lblLeft .zcwf_col_lab{
          width: 30%;
          word-break: break-word;
          padding: 0px 6px 0px;
          margin-right: 10px;
          margin-top: 5px;
          float: left;
          min-height: 1px;
          }
          .zcwf_lblLeft .zcwf_col_fld{
          float: left;
          width: 68%;
          padding: 0px 6px 0px;
          position: relative;
          margin-top: 5px;
          }
          .zcwf_lblLeft .zcwf_privacy {padding: 6px;
          }
          .zcwf_lblLeft .wfrm_fld_dpNn {display: none;
          }
          .dIB {display: inline-block;
          }
          .zcwf_lblLeft .zcwf_col_fld_slt{
          width: 60%;
          border: 1px solid  #ccc;
          background:  #fff;
          border-radius: 4px;
          font-size: 18px;
          float: left;
          resize: vertical;
           font-family: Inter, sans-serif;
          padding: 2px 5px;
          }
          .zcwf_lblLeft .zcwf_row:after, .zcwf_lblLeft .zcwf_col_fld:after{
          content: '';
          display: table;
          clear: both;
          }
          .zcwf_lblLeft .zcwf_col_help{
          float: left;
          margin-left: 7px;
          font-size: 12px;
          max-width: 35%;
          word-break: break-word;
          }
          .zcwf_lblLeft .zcwf_help_icon{
          cursor: pointer;
          width: 16px;
          height: 16px;
          display: inline-block;
          background:  #fff;
          border: 1px solid  #c0c6cc;
          color:  #c1c1c1;
          text-align: center;
          font-size: 11px;
          line-height: 16px;
          font-weight: bold;
          border-radius: 50%;
          }
          .zcwf_lblLeft .zcwf_row {margin: 15px 0px;
          }
          .zcwf_lblLeft .formsubmit{
          margin-right: 5px;
          cursor: pointer;
          color:  #313949;
          font-size: 12px;
          }
          .zcwf_lblLeft .zcwf_privacy_txt{
          width: 100%;
          font-size: 18px;
           font-family: Inter, sans-serif;
          display: inline-block;
          vertical-align: top;
          color:  #000;
          }
          .zcwf_lblLeft .zcwf_button{
          font-size: 18px;
          color:  #313949;
          border: 1px solid  #c0c6cc;
          padding: 3px 9px;
          border-radius: 4px;
          cursor: pointer;
          max-width: 120px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          }
          .zcwf_lblLeft .zcwf_tooltip_over{
          position: relative;
          }
          .zcwf_lblLeft .zcwf_tooltip_ctn{
          position: absolute;
          background:  #dedede;
          padding: 3px 6px;
          top: 3px;
          border-radius: 4px;
          word-break: break-word;
          min-width: 100px;
          max-width: 150px;
          color:  #313949;
          z-index: 100;
          }
          .zcwf_lblLeft .zcwf_ckbox{
          float: left;
          }
          .zcwf_lblLeft .zcwf_file{
          width: 55%;
          box-sizing: border-box;
          float: left;
          }
          .cBoth:after{
          content: '';
          display: block;
          clear: both;
          }
          @media all and  (max-width: 600px){
          .zcwf_lblLeft .zcwf_col_lab, .zcwf_lblLeft .zcwf_col_fld{
          width: auto;
          float: none !important;
          }
          .zcwf_lblLeft .zcwf_col_help {width: 40%;
          }
          }


/* Logistices outcome starts */ 

          html,body{
            margin: 0px;
          }
          .formsubmit.zcwf_button{
            color: white !important;
            background: transparent linear-gradient(0deg, #0279FF 0%, #00A3F3 100%);
          }
          #crmWebToEntityForm.zcwf_lblLeft{
            width: 100%;
            padding: 25px;
            margin: 0 auto;
            box-sizing: border-box;
          }
          #crmWebToEntityForm.zcwf_lblLeft *{
            box-sizing: border-box;
          }
          #crmWebToEntityForm {text-align: left;
          }
          #crmWebToEntityForm *{
          direction: ltr;
          }
          .zcwf_lblLeft .zcwf_title{
          word-wrap: break-word;
          padding: 0px 6px 10px;
          font-weight: bold }
          .zcwf_lblLeft.cpT_primaryBtn:hover{
          background: linear-gradient(#02acff 0,#006be4 100%)no-repeat padding-box !important;
          box-shadow: 0 -2px 0 0  #0159b9 inset !important;
          border: 0 !important;
          color:  #fff !important;
          outline: 0 !important;
          }
          .zcwf_lblLeft .zcwf_col_fld input[ type  = text], input[ type  = password], .zcwf_lblLeft .zcwf_col_fld textarea{
          width: 60%;
          border: 1px solid  #c0c6cc !important;
          resize: vertical;
          border-radius: 2px;
          float: left;
          }
          .zcwf_lblLeft .zcwf_col_lab{
          width: 30%;
          word-break: break-word;
          padding: 0px 6px 0px;
          margin-right: 10px;
          margin-top: 5px;
          float: left;
          min-height: 1px;
          }
          .zcwf_lblLeft .zcwf_col_fld{
          float: left;
          width: 68%;
          padding: 0px 6px 0px;
          position: relative;
          margin-top: 5px;
          }
          .zcwf_lblLeft .zcwf_privacy {padding: 6px;
          }
          .zcwf_lblLeft .wfrm_fld_dpNn {display: none;
          }
          .dIB {display: inline-block;
          }
          .zcwf_lblLeft .zcwf_col_fld_slt{
          width: 60%;
          border: 1px solid  #ccc;
          background:  #fff;
          border-radius: 4px;
          font-size: 12px;
          float: left;
          resize: vertical;
          padding: 2px 5px;
          }
          .zcwf_lblLeft .zcwf_row:after, .zcwf_lblLeft .zcwf_col_fld:after{
          content: '';
          display: table;
          clear: both;
          }
          .zcwf_lblLeft .zcwf_col_help{
          float: left;
          margin-left: 7px;
          font-size: 12px;
          max-width: 35%;
          word-break: break-word;
          }
          .zcwf_lblLeft .zcwf_help_icon{
          cursor: pointer;
          width: 16px;
          height: 16px;
          display: inline-block;
          background:  #fff;
          border: 1px solid  #c0c6cc;
          color:  #c1c1c1;
          text-align: center;
          font-size: 11px;
          line-height: 16px;
          font-weight: bold;
          border-radius: 50%;
          }
          .zcwf_lblLeft .zcwf_row {margin: 15px 0px;
          }
          .zcwf_lblLeft .formsubmit{
          margin-right: 5px;
          cursor: pointer;
          color:  #313949;
          font-size: 12px;
          }
          .zcwf_lblLeft .zcwf_privacy_txt{
          width: 100%;
          font-size: 18px;
         font-family: Inter, sans-serif;
          display: inline-block;
          vertical-align: top;
          color:  #000;
          }
          .zcwf_lblLeft .zcwf_button{
          font-size: 18px;
          color:  #313949;
          border: 1px solid  #c0c6cc;
          padding: 3px 9px;
          border-radius: 4px;
          cursor: pointer;
          max-width: 120px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          }
          .zcwf_lblLeft .zcwf_tooltip_over{
          position: relative;
          }
          .zcwf_lblLeft .zcwf_tooltip_ctn{
          position: absolute;
          background:  #dedede;
          padding: 3px 6px;
          top: 3px;
          border-radius: 4px;
          word-break: break-word;
          min-width: 100px;
          max-width: 150px;
          color:  #313949;
          z-index: 100;
          }
          .zcwf_lblLeft .zcwf_ckbox{
          float: left;
          }
          .zcwf_lblLeft .zcwf_file{
          width: 55%;
          box-sizing: border-box;
          float: left;
          }
          .cBoth:after{
          content: '';
          display: block;
          clear: both;
          }
          @media all and  (max-width: 600px){
          .zcwf_lblLeft .zcwf_col_lab, .zcwf_lblLeft .zcwf_col_fld{
          width: auto;
          float: none !important;
          }
          .zcwf_lblLeft .zcwf_col_help {width: 40%;
          }
          }

/* Invest outcome starts */


          html,body{
            margin: 0px;
          }
          .formsubmit.zcwf_button{
            color: white !important;
            background: transparent linear-gradient(0deg, #0279FF 0%, #00A3F3 100%);
          }
          #crmWebToEntityForm.zcwf_lblLeft{
            width: 100%;
            padding: 25px;
            margin: 0 auto;
            box-sizing: border-box;
          }
          #crmWebToEntityForm.zcwf_lblLeft *{
            box-sizing: border-box;
          }
          #crmWebToEntityForm {text-align: left;
          }
          #crmWebToEntityForm *{
          direction: ltr;
          }
          .zcwf_lblLeft .zcwf_title{
          word-wrap: break-word;
          padding: 0px 6px 10px;
          font-weight: bold }
          .zcwf_lblLeft.cpT_primaryBtn:hover{
          background: linear-gradient(#02acff 0,#006be4 100%)no-repeat padding-box !important;
          box-shadow: 0 -2px 0 0  #0159b9 inset !important;
          border: 0 !important;
          color:  #fff !important;
          outline: 0 !important;
          }
          .zcwf_lblLeft .zcwf_col_fld input[ type  = text], input[ type  = password], .zcwf_lblLeft .zcwf_col_fld textarea{
          width: 60%;
          border: 1px solid  #c0c6cc !important;
          resize: vertical;
          border-radius: 2px;
          float: left;
          }
          .zcwf_lblLeft .zcwf_col_lab{
          width: 30%;
          word-break: break-word;
          padding: 0px 6px 0px;
          margin-right: 10px;
          margin-top: 5px;
          float: left;
          min-height: 1px;
          }
          .zcwf_lblLeft .zcwf_col_fld{
          float: left;
          width: 68%;
          padding: 0px 6px 0px;
          position: relative;
          margin-top: 5px;
          }
          .zcwf_lblLeft .zcwf_privacy {padding: 6px;
          }
          .zcwf_lblLeft .wfrm_fld_dpNn {display: none;
          }
          .dIB {display: inline-block;
          }
          .zcwf_lblLeft .zcwf_col_fld_slt{
          width: 60%;
          border: 1px solid  #ccc;
          background:  #fff;
          border-radius: 4px;
          font-size: 12px;
          float: left;
          resize: vertical;
          padding: 2px 5px;
          }
          .zcwf_lblLeft .zcwf_row:after, .zcwf_lblLeft .zcwf_col_fld:after{
          content: '';
          display: table;
          clear: both;
          }
          .zcwf_lblLeft .zcwf_col_help{
          float: left;
          margin-left: 7px;
          font-size: 12px;
          max-width: 35%;
          word-break: break-word;
          }
          .zcwf_lblLeft .zcwf_help_icon{
          cursor: pointer;
          width: 16px;
          height: 16px;
          display: inline-block;
          background:  #fff;
          border: 1px solid  #c0c6cc;
          color:  #c1c1c1;
          text-align: center;
          font-size: 11px;
          line-height: 16px;
          font-weight: bold;
          border-radius: 50%;
          }
          .zcwf_lblLeft .zcwf_row {margin: 15px 0px;
          }
          .zcwf_lblLeft .formsubmit{
          margin-right: 5px;
          cursor: pointer;
          color:  #313949;
          font-size: 12px;
          }
          .zcwf_lblLeft .zcwf_privacy_txt{
          width: 100%;
          font-size: 18px;
           font-family: Inter, sans-serif;
          display: inline-block;
          vertical-align: top;
          color:  #000;
          }
          .zcwf_lblLeft .zcwf_button{
          font-size: 18px;
          color:  #313949;
          border: 1px solid  #c0c6cc;
          padding: 3px 9px;
          border-radius: 4px;
          cursor: pointer;
          max-width: 120px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          }
          .zcwf_lblLeft .zcwf_tooltip_over{
          position: relative;
          }
          .zcwf_lblLeft .zcwf_tooltip_ctn{
          position: absolute;
          background:  #dedede;
          padding: 3px 6px;
          top: 3px;
          border-radius: 4px;
          word-break: break-word;
          min-width: 100px;
          max-width: 150px;
          color:  #313949;
          z-index: 100;
          }
          .zcwf_lblLeft .zcwf_ckbox{
          float: left;
          }
          .zcwf_lblLeft .zcwf_file{
          width: 55%;
          box-sizing: border-box;
          float: left;
          }
          .cBoth:after{
          content: '';
          display: block;
          clear: both;
          }
          @media all and  (max-width: 600px){
          .zcwf_lblLeft .zcwf_col_lab, .zcwf_lblLeft .zcwf_col_fld{
          width: auto;
          float: none !important;
          }
          .zcwf_lblLeft .zcwf_col_help {width: 40%;
          }
          }

/* Contact us page new on 12.01.26 */

          html,body{
            margin: 0px;
          }
          .formsubmit.zcwf_button{
            color: white !important;
            background: transparent linear-gradient(0deg, #0279FF 0%, #00A3F3 100%);
          }
          #crmWebToEntityForm.zcwf_lblLeft{
            width: 100%;
            padding: 25px;
            margin: 0 auto;
            box-sizing: border-box;
            border: 2px solid #16273F;
            border-radius: 20px;
          }
          #crmWebToEntityForm.zcwf_lblLeft *{
            box-sizing: border-box;
          }
          #crmWebToEntityForm {text-align: left;
          }
          #crmWebToEntityForm *{
          direction: ltr;
          }
          .zcwf_lblLeft .zcwf_title{
          word-wrap: break-word;
          padding: 0px 6px 10px;
          font-weight: bold }
          .zcwf_lblLeft.cpT_primaryBtn:hover{
          background: linear-gradient(#02acff 0,#006be4 100%)no-repeat padding-box !important;
          box-shadow: 0 -2px 0 0  #0159b9 inset !important;
          border: 0 !important;
          color:  #fff !important;
          outline: 0 !important;
          }
          .zcwf_lblLeft .zcwf_col_fld input[ type  = text], input[ type  = password], .zcwf_lblLeft .zcwf_col_fld textarea{
          width: 100%;
          border: 1px solid  #16273F !important;
          resize: vertical;
          border-radius: 5px;
          float: left;
          }
          .zcwf_lblLeft .zcwf_col_lab{
          width: 30%;
          word-break: break-word;
          padding: 0px 6px 0px;
          margin-right: 10px;
          margin-top: 5px;
          float: left;
          min-height: 1px;
          }
          .zcwf_lblLeft .zcwf_col_fld{
          float: left;
          width: 68%;
          padding: 0px 6px 0px;
          position: relative;
          margin-top: 5px;
          }
          .zcwf_lblLeft .zcwf_privacy {padding: 6px;
          }
          .zcwf_lblLeft .wfrm_fld_dpNn {display: none;
          }
          .dIB {display: inline-block;
          }
          .zcwf_lblLeft .zcwf_col_fld_slt{
          width: 60%;
          border: 1px solid  #ccc;
          background:  #fff;
          border-radius: 4px;
          font-size: 12px;
          float: left;
          resize: vertical;
          padding: 2px 5px;
          }
          .zcwf_lblLeft .zcwf_row:after, .zcwf_lblLeft .zcwf_col_fld:after{
          content: '';
          display: table;
          clear: both;
          }
          .zcwf_lblLeft .zcwf_col_help{
          float: left;
          margin-left: 7px;
          font-size: 12px;
          max-width: 35%;
          word-break: break-word;
          }
          .zcwf_lblLeft .zcwf_help_icon{
          cursor: pointer;
          width: 16px;
          height: 16px;
          display: inline-block;
          background:  #fff;
          border: 1px solid  #c0c6cc;
          color:  #c1c1c1;
          text-align: center;
          font-size: 11px;
          line-height: 16px;
          font-weight: bold;
          border-radius: 50%;
          }
          .zcwf_lblLeft .zcwf_row {margin: 15px 0px;
          }
          .zcwf_lblLeft .formsubmit{
          margin-right: 5px;
          cursor: pointer;
          color:  #313949;
          font-size: 12px;
          }
          .zcwf_lblLeft .zcwf_privacy_txt{
          width: 100%;
          font-size: 18px;
          font-family: Inter, sans-serif;
          display: inline-block;
          vertical-align: top;
          color:  #000;
          }
          .zcwf_lblLeft .zcwf_button{
          font-size: 18px;
          color:  #313949;
          border: 1px solid  #c0c6cc;
          padding: 3px 9px;
          border-radius: 4px;
          cursor: pointer;
          max-width: 120px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          }
          .zcwf_lblLeft .zcwf_tooltip_over{
          position: relative;
          }
          .zcwf_lblLeft .zcwf_tooltip_ctn{
          position: absolute;
          background:  #dedede;
          padding: 3px 6px;
          top: 3px;
          border-radius: 4px;
          word-break: break-word;
          min-width: 100px;
          max-width: 150px;
          color:  #313949;
          z-index: 100;
          }
          .zcwf_lblLeft .zcwf_ckbox{
          float: left;
          }
          .zcwf_lblLeft .zcwf_file{
          width: 55%;
          box-sizing: border-box;
          float: left;
          }
          .cBoth:after{
          content: '';
          display: block;
          clear: both;
          }
          @media all and  (max-width: 600px){
          .zcwf_lblLeft .zcwf_col_lab, .zcwf_lblLeft .zcwf_col_fld{
          width: auto;
          float: none !important;
          }
          .zcwf_lblLeft .zcwf_col_help {width: 40%;
          }
          }

/* New css on 23.01.26 */ 

.visitlink a{
  text-decoration: underline !important;
}
