@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&display=swap');

:root {
  --font-Baloo-Bhai: "Baloo Bhai 2", sans-serif;
  --color-0355ac: #0355ac;
  --color-e9f0fa: #e9f0fa;
  --color-f0f0f0: #f0f0f0;
  --color-848484: #848484;
  --color-333233: #333233;
  --color-000000: #000000;
  --color-ffffff: #ffffff;
  --font-style-normal: normal;
  --font-size-14: 14px;
  --font-size-17: 17px;
  --font-size-19: 19px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-28: 28px;
  --font-size-33: 33px;
  --font-size-42: 42px;
  --font-size-46: 46px;
  --font-size-50: 50px;
  --font-size-60: 60px;
  --font-size-100: 100px;
  --character-spacing-0: 0px;
  --line-height-14: 20px;
  --line-height-17: 24px;
  --line-height-19: 26px;
  --line-height-20: 27px;
  --line-height-22: 28px;
  --line-height-28: 33px;
  --line-height-33: 38px;
  --line-height-42: 52px;
  --line-height-46: 56px;
  --line-height-50: 60px;
  --line-height-60: 70px;
  --line-height-100: 110px;
  --line-height-inherit: inherit;
  --font-weight-Thin: 100;
  --font-weight-ExtraLight: 200;
  --font-weight-Light: 300;
  --font-weight-Regular: 400;
  --font-weight-Medium: 500;
  --font-weight-SemiBold: 600;
  --font-weight-Bold: 700;
  --font-weight-ExtraBold: 800;
  --font-weight-Black: 900;
  --font-weight-normal: normal;
}

/* Hide default cursor */

body {
  /* cursor: none; */
}
/* loader css*/
#loader {
  position: fixed;
  inset: 0;
  background: var(--color-e9f0fa);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.logo {
  width: 200px;
}
.progress-container {
  width: 200px;
  height: 6px;
  background: var(--color-000000);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 25px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1e58b4, #ff3b30, #f1c40f, #2ecc71);
  background-size: 300% 100%;
  animation: gradientMove 2s linear infinite;
  transition: width 0.3s ease;
}
.loading-text {
  margin-top: 15px;
  font-family: Arial, sans-serif;
  color: var(--color-0355ac);
  letter-spacing: 2px;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
/* loader css */


section {
  overflow: hidden;
}

/* Outer ring */
.cursor-ring {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--color-0355ac);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* Inner fill */
.cursor-fill {
  width: 6px;
  height: 6px;
  background: var(--color-0355ac);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s ease,
    height 0.25s ease,
    opacity 0.25s ease;
}

/* Hover effect */
.cursor-hover .cursor-ring {
  transform: translate(-50%, -50%) scale(1.4);
  opacity: 0.8;
}

.cursor-hover .cursor-fill {
  width: 18px;
  height: 18px;
  opacity: 0.15;
}

/* Disable on mobile */
@media (max-width: 991px) {


  .cursor-ring,
  .cursor-fill {
    display: none;
  }

  body {
    cursor: auto;
  }
  
}



* {
  outline: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

body {
  font-family: var(--font-Baloo-Bhai);
  font-style: var(--font-style-normal);
  font-size: var(--font-size-17);
  line-height: var(--line-height-17);
  color: var(--color-000000);
  font-weight: var(--font-weight-Regular);
  margin: 0;
  padding: 0;
  /* overflow-x: hidden; */
}

.clr {
  width: 100%;
  float: left;
}

.img {
  width: 100%;
}

.svg {
  object-fit: contain;
  object-position: center center;
}

a,
.btn,
button {
  color: var(--color-000000);
  outline: none;
  cursor: pointer;
  outline: 0;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

a:focus,
.btn:focus,
button:focus,
.custom-select:focus,
.form-control:focus {
  outline: none;
  box-shadow: none;
}

.btn:hover,
a:hover,
button:hover {
  color: var(--color-0355ac);
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-000000);
  text-transform: normal;
  margin-bottom: 10px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--color-0355ac);
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--color-ffffff)!important;
  text-decoration: none;
  background-color: var(--color-0355ac);
}

li {
  list-style: none;
}

header,
footer,
section {
  width: 100%;
  float: left;
}

hr {
  border-bottom: 2px solid var(--color-0355ac);
  border-top: 0 none;
  margin: 50px 0;
  padding: 0;
  opacity: 1;
}

p {
  font-size: var(--font-size-17);
  line-height: var(--line-height-17);
  color: var(--color-000000);
  margin-bottom: 15px;
}

.p-content {
  font-size: var(--font-size-19);
  line-height: var(--line-height-19);
  color: var(--color-333233);
  margin-bottom: 10px;
}

.small-text {
  font-size: var(--font-size-14);
  line-height: var(--line-height-14);
  color: var(--color-333233);
  margin-bottom: 15px;
}

.section-title {
  font-size: var(--font-size-19);
  line-height: var(--line-height-19);
  color: var(--color-0355ac);
  font-weight: var(--font-weight-SemiBold);
  margin-bottom: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.main-title {
  font-size: var(--font-size-42);
  line-height: var(--line-height-42);
  color: var(--color-000000);
  font-weight: var(--font-weight-Bold);
  margin-bottom: 20px;
  position: relative;
}

.title {
  font-size: var(--font-size-50);
  line-height: var(--line-height-50);
  color: var(--color-000000);
  margin-bottom: 20px;
  position: relative;
}

.div-title {
  font-size: var(--font-size-46);
  line-height: var(--line-height-46);
  color: var(--color-000000);
  font-weight: var(--font-weight-Bold);
  margin-bottom: 20px;
  position: relative;
}

.div-sub-title {
  font-size: var(--font-size-28);
  line-height: var(--line-height-28);
  color: var(--color-000000);
  font-weight: var(--font-weight-Bold);
  margin-bottom: 15px;
}

.div-text {
  font-size: var(--font-size-22);
  line-height: var(--line-height-22);
  color: var(--color-000000);
  font-weight: var(--font-weight-Bold);
  margin-bottom: 15px;
}

.weight-Light {
  font-weight: var(--font-weight-Light);
}

.weight-Regular {
  font-weight: var(--font-weight-Regular);
}

.weight-Medium {
  font-weight: var(--font-weight-Medium);
}

.weight-SemiBold {
  font-weight: var(--font-weight-SemiBold);
}

.weight-Bold {
  font-weight: var(--font-weight-Bold);
}

.weight-ExtraBold {
  font-weight: var(--font-weight-ExtraBold);
}

.weight-Black {
  font-weight: var(--font-weight-Black);
}

.height-100 {
  height: 100vh;
}

.color-0355ac {
  color: var(--color-0355ac) !important;
}

.color-e9f0fa {
  color: var(--color-e9f0fa) !important;
}

.color-333233 {
  color: var(--color-333233) !important;
}

.color-000000 {
  color: var(--color-000000) !important;
}

.view-more-text {
  display: inline-block;
}

.view-more-text-btn {
  font-size: var(--font-size-17);
  line-height: var(--line-height-inherit);
  color: var(--color-0355ac);
  font-weight: var(--font-weight-Medium);
  display: inline-block;
  background: transparent;
  border-radius: 0;
  position: relative;
  z-index: 2;
  padding: 0;
  outline: none;
  border: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.view-more-text-btn img {
  width: 15px;
  margin-left: 5px;
}

.view-more-text-btn:hover {
  color: var(--color-dfa194);
  letter-spacing: 1.2px;
}

/* view-more-btn */
.view-more {
  display: inline-block;
}

.view-more-btn {
  display: inline-block;
  color: var(--color-ffffff);
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-SemiBold);
  background: var(--color-0355ac);
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 30px 0 30px 30px;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: color 0.35s ease;
}

/* Ripple circle */
.view-more-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}

/* Hover animation */
.view-more-btn:hover::after {
  animation: ripple-wave 0.7s ease-out forwards;
}

@keyframes ripple-wave {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(12);
    opacity: 0;
  }
}

/* Text color on hover */
.view-more-btn:hover {
  color: var(--color-ffffff);
}

/* view-more-btn */
.img-zoom {
  overflow: hidden;
  border-radius: 30px;
}

.img-zoom .zoom {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.img-zoom:hover .zoom {
  transform: scale(1.12);
}

/* @import url(../css/root.css); */
/* main-header */
.g_header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  transition: transform 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

/* shrink (after scroll down a bit) */
.g_header.g_shrink {
  padding: 8px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* hide when scrolling down */
.g_header.hide-header {
  transform: translateY(-100%);
}

/* visible when scrolling up */
.g_header:not(.hide-header) {
  transform: translateY(0);
}


.g_header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: var(--color-ffffff);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.main-header.g_shrink {
  position: fixed;
  background: var(--color-ffffff);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  z-index: 999;
  box-shadow: rgb(99 99 99 / 11%) 0px 2px 8px 0px;
}

/* loader css*/
/* loader css */
.navbar {
  padding: 0;
}

.main-nav {
  width: 100%;
  position: relative;
}

.logo-img {
  flex-shrink: 0;
}

.logo-img .main-logo {
  width: 250px;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.mobile-logo {
  display: none;
}

.mobile-logo .main-logo {
  width: 180px;
  max-width: 100%;
  height: auto;
}

.main-nav .nav-item {
  margin-right: 20px;
}

.main-nav .nav-item:last-child {
  margin-right: 0px;
}

.main-nav .nav-item .nav-link {
  position: relative;
  display: block;
  font-size: var(--font-size-20);
  color: var(--color-333233);
  font-weight: var(--font-weight-Medium);
  line-height: initial;
  padding: 40px 18px;
      -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.main-nav .nav-item .nav-link:focus,
.main-nav .nav-item.active .nav-link,
.main-nav .nav-item .nav-link:hover {
  color: var(--color-0355ac);
}

.main-nav .nav-item .nav-link.show,
.main-nav .nav-item .show>.nav-link {
  color: var(--color-0355ac);
}

.main-nav .nav-item .nav-link.view-more-btn {
  color: var(--color-ffffff);
  padding: 10px 25px!important;
  margin-left: 50px;
}
header.main-header.g_header.g_shrink .main-nav .nav-item .nav-link {
    padding: 30px 18px;
}

.dropdown-toggle::after {
  margin-left: 10px;
  position: relative;
  top: 9px;
  background-image: url(../images/icons/dropdown-arrow.png);
  border: none;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
}
.mobile-view{
  display: none;
}
/* dropdown-menu */
.main-nav .navbar-nav .nav-item.dropdown .dropdown-item:focus,
.main-nav .navbar-nav .nav-item.dropdown .dropdown-item:hover {
  background-color: transparent;
}

.main-nav .navbar-nav .dropdown .dropdown-menu {
  min-width: 250px;
  margin: 0;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0px;
  border: none;
  border-radius: 0;
  box-shadow: 0px 0px 10px -4px #0000009d;
  z-index: 1000;
  background: var(--color-ffffff);
}

.main-nav .navbar-nav .dropdown .dropdown-menu {
  /* keep block for transform animation */
  opacity: 0;
  visibility: hidden;
      -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

/* When dropdown is open */
.navbar .dropdown.show>.dropdown-menu,
.navbar .dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
    -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

/* Rotate arrow on hover for dropdowns without data-bs-toggle */
.navbar .dropdown:hover>.advisory-toggle .arrow-icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.main-nav .navbar-nav .dropdown .dropdown-menu li {
  border-bottom: solid 1px #efefef;
  border-left: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.main-nav .navbar-nav .dropdown .dropdown-menu li a {
  font-size: var(--font-size-17);
  color: var(--color-000000);
  font-weight: var(--font-weight-Regular);
  display: inline-block;
  padding: 12px 12px;
}

.main-nav .navbar-nav .dropdown .dropdown-menu li:hover {
  background: var(--color-0355ac);
}

.main-nav .navbar-nav .dropdown .dropdown-menu li:hover a {
  color: var(--color-ffffff);
}

ul.navbar-nav.ms-auto {
  display: flex;
  align-items: center;
}

/* dropdown-menu */
.offcanvas-body {
  overflow-y: unset;
  padding: 0;
}

.offcanvas.offcanvas-start {
  transform: unset;
  border-right: unset;
  background: transparent;
  width: 100%;
}

.offcanvas {
  position: relative;
  visibility: visible;
}
@media (min-width: 992px) {

  .navbar .dropdown-menu {
    display: block; /* important for animation */
    max-height: 0;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;

transition:
  max-height 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
  opacity 0.4s ease;
  }

  .navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown.show > .dropdown-menu {
    max-height: 500px; /* adjust if menu is big */
    opacity: 1;
    visibility: visible;
  }
}


/* Premium Navbar Toggler */
.navbar-toggler {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Remove default outline */
.navbar-toggler:focus {
  box-shadow: none;
}

/* Hover effect */
.navbar-toggler:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Hamburger icon style */
.navbar-toggler-icon {
  width: 22px;
  height: 2px;
  background-image: none;
  background-color: #1a1a1a;
  position: relative;
}

/* Top & bottom bars */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -6px;
}

.navbar-toggler-icon::after {
  top: 6px;
}

/* Optional: animate on hover */
.navbar-toggler:hover .navbar-toggler-icon::before {
  transform: translateY(1px);
}

.navbar-toggler:hover .navbar-toggler-icon::after {
  transform: translateY(-1px);
}

/* Hide on desktop */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}

.advisory-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arrow-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  position: relative;
  pointer-events: none;
}

.arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/icons/dropdown-arrow.png);
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: transform 0.3s ease;
}

/* When active/open */
.nav-item.dropdown.show .arrow-icon::after,
.advisory-toggle.active .arrow-icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

/* main-header */
/* main-banenr */
/* Ensure images fill container */
/* Make sure the image fills the container */
.banner_slider img.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease;
  /* Smooth zoom */
}

/* Zoom only on active slide */
.swiper-slide-active .banner_slider img.banner-img {
  transform: scale(1.1);
  /* Zoom-in effect */
}


.banner-text-box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 1;
  transform: translateY(-50%);
}

.banner_slider .banner-img {
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}

.banner-text {
  width: 50%;
}

.service-btn-box .service-btn {
  background: transparent;
  color: var(--color-0355ac);
  border: solid 1.5px var(--color-0355ac);
}

.service-btn-box .service-btn:hover {
  background: var(--color-0355ac);
  color: var(--color-ffffff);
  border: solid 1.5px var(--color-0355ac);
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin-top: 0px;
  z-index: 10;
  cursor: pointer;
  background-color: var(--color-0355ac);
  background-image: unset;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100%;
}

.swiper-button-next img,
.swiper-button-prev img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.swiper-button-next {
  right: 40px;
  left: auto;
}

.swiper-button-prev {
  right: auto;
  left: 40px;
}

/* main-banenr */
/* home-about-section */
img.mascot-03 {
    width: 15%;
    position: absolute;
    right: 30px;
    bottom: 0;
}

.about-pg-section {
    position: relative;
    background: linear-gradient(to top, #e9f0fa, #f5fcff, #ffffff00);
}
.about-box {
  border: solid 2px var(--color-0355ac);
  border-radius: 70px 0 70px 70px;
  position: relative;
}

.about-box-before::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  height: 100%;
  background: var(--color-e9f0fa);
  border-radius: 70px 0 0 70px;
}

.home-about-left img {
  width: 40%;
  height: 115%;
  position: absolute;
  bottom: 0;
  left: 10px;
  object-fit: contain;
  object-position: bottom center;
}

.about-right {
  padding: 80px 0px;
  width: 95%;
  text-align: right;
  float: right;
}

.blue-box {
  background-color: var(--color-0355ac);
  padding: 30px;
  border-radius: 0 0 30px 0;
}

.about-text p {
  color: var(--color-ffffff);
}

.about-text p,
.about-text .div-title {
  padding-left: 33%;
}

.home-about-left .class-icon {
  width: 150px;
  height: 150px;
  left: 500px;
  bottom: 300px;
}

.home-about-left .class-icon {
  display: inline-block;
  /* Ensure transform works */
  animation: rotateClockwise 10s linear infinite;
  /* 4s full rotation, smooth, infinite */
}

/* Keyframes for clockwise rotation */
@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
.discover-section {
    background: linear-gradient(to top, #e9f0fa, #f5fcff, #ffffff00);
        position: relative;
    overflow: visible;
}
img.discover-mascot {
    top: -20%;
    width: 14%;
    position: absolute;
    right: 15px;
}
/* HERO */
.tizzy-hero-section {
  padding: 120px 0;
}

.tizzy-hero-section h1 span {
  color: var(--color-0355ac);
}

.hero-desc {
  margin: 20px auto 0;
  color: var(--color-333233);
}

/* ABOUT */
.about-tizzy-group {
  background: var(--color-e9f0fa);
  padding: 100px 0;
}


/* COMPANIES */
.our-companies-inner {
  background: var(--color-ffffff);
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease;
}

.our-companies-inner:hover {
  transform: translateY(-8px);
}

.companies-content p {
  font-size: var(--font-size-14);
  color: var(--color-848484);
}
.read-more-content {
  max-height: 260px;
  overflow: hidden;
  transition: max-height 0.6s ease;
    -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  position: relative;
}

.read-more-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
}

.read-more-wrap.active .read-more-content {
  max-height: 2000px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.read-more-wrap.active .read-more-content::after {
  display: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.read-more-btn {
  background: none;
  border: none;
  color: #1a73e8;
  font-weight: 600;
  margin-top: 15px;
  cursor: pointer;
  padding: 0;
}

.read-more-btn:hover {
  text-decoration: underline;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}


/* CTA */
.tizzy-cta-section {
  background: var(--color-0355ac);
  padding: 100px 0;
  color: var(--color-ffffff);
}

.tizzy-cta-section h2,
.tizzy-cta-section p {
  color: var(--color-ffffff);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}


.btn-outline {
  border: 2px solid var(--color-ffffff);
  color: var(--color-ffffff);
  padding: 14px 30px;
  border-radius: 50px;
}

/* ============================= */
/* TIZZY ORG CHART – FINAL UI */
/* ============================= */
.tizzy-org-chart {
  position: relative;
  background: radial-gradient(circle at center, #f2f6ff, #ffffff);
}
img.mascot-01 {
    position: absolute;
    left: 10%;
    top: 4%;
    width: 13%;
}

/* ============================= */
/* PARENT CARD */
/* ============================= */

.org-parent {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 25px 60px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(3, 85, 172, 0.18);
  position: relative;
}

.org-parent img {
  max-height: 60px;
}

.org-parent h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
}

.org-parent a {
  color: #0355ac;
  font-weight: 600;
  text-decoration: none;
}

/* ============================= */
/* CONNECTOR */
/* ============================= */

.org-connector {
  width: 2px;
  height: 60px;
  margin: 44px auto;
  background: var(--color-0355ac);
  position: relative;
}

.org-connector::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #0355ac;
  border-radius: 50%;
}

/* ============================= */
/* CHILD WRAPPER */
/* ============================= */

.org-children {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
}

/* Horizontal connector */
.org-children::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 76.5%;
  height: 2px;
  background: linear-gradient(to right,
      rgba(3, 85, 172, 0.15),
      #0355ac,
      rgba(3, 85, 172, 0.15));
}

/* ============================= */
/* CHILD CARD */
/* ============================= */

.org-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid #ffffff;
}

.org-card::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 45px;
  background: #0355ac;
}

.org-card:hover {
  box-shadow: 0 30px 70px rgba(3, 85, 172, 0.25);
  border: 2px solid #0355ac;
}

/* ============================= */
/* FEATURED (CENTER CARD) */
/* ============================= */

.org-card.featured {
  border: 2px solid #0355ac;
}



/* ============================= */
/* CARD CONTENT */
/* ============================= */

.org-card img {
  max-height: 48px;
  margin-bottom: 18px;
}

.org-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.org-card p {
  font-size: 18px;
  color: #6f6f6f;
  margin-bottom: 16px;
  display: none;
}

.org-card a {
  color: #0355ac;
  font-weight: 600;
  text-decoration: none;
}


@keyframes bgGradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}



/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 991px) {
	.dropdown-item.active, .dropdown-item:active {
		color: #0355ac !important;}
      .org-children {
        grid-template-columns: repeat(2, 1fr);
    }

  .org-children::before,
  .org-card::before {
    display: none;
  }

  .org-connector {
    height: 50px;
  }
}


/* home-about-section */
/* discover-section */
.offer-list::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.25) 25%,
      rgba(255, 255, 255, 0.12) 45%,
      transparent 60%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
  pointer-events: none;
  z-index: 0;
}

.offer-list:hover::before {
  transform: scale(2.8);
  opacity: 1;
}

.offer-list>* {
  position: relative;
  z-index: 1;
}

.offer-list-text .div-sub-title {
  color: var(--color-000000);
}

.offer-list-text p {
  color: var(--color-000000);
    -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.offer-list-text {
  /* background: var(--color-e9f0fa); */
  padding: 25px 30px;
  border-radius: 30px 30px 0 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.offer-list-img {
  height: 300px;
  background: var(--color-e9f0fa);
  border-radius: 0 0 30px 30px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.offer-list {
  background: var(--color-e9f0fa);
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

/* shared overlay */
.offer-list::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--color-0355ac);
  transform: scaleY(0);
  transform-origin: bottom;
    -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  z-index: 9;
}

/* hover animation */
.offer-list:hover::before {
  transform: scaleY(1);
}

/* keep content above overlay */
.offer-list-text,
.offer-list-img {
  position: relative;
  z-index: 9;
}

/* text color change on hover */
.offer-list:hover .div-sub-title,
.offer-list:hover p {
  color: var(--color-ffffff);
    -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

/* image styling */
.offer-list-img img {
  border-radius: 0 0 30px 30px;
}

/* top section rounding */
.offer-list-text {
  border-radius: 30px 30px 0 0;
  z-index: 99;
}


.swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background: var(--color-e9f0fa);
  border: 1px solid #a0a0a000;
}

.swiper-pagination-bullet-active {
  background: var(--color-0355ac);
}

.offer-list-slider {
  padding-bottom: 70px;
}

.discover-slider-left {
  padding-left: 10%;
  margin-top: 50px !important;
}

.services-btn {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.offer-list {
  position: relative;
}

.services-btn .service-btn-box .service-btn {
  background: #fff;
}

.services-btn .service-btn-box .service-btn:hover {
  background: var(--color-0355ac);
}

/* discover-section */
/* growth-focused-section */
.logo-slider {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  height: 350px;
  align-items: center;
}

.logoSwiper {
  height: 100%;
  overflow: hidden;
  padding: 20px;
}

.slider-col-1 {
  height: 120px;
}

.slider-col-2 {
  height: 260px;
}

.logoSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.logoSwiper .swiper-slide img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  box-shadow: 0 2px 12px #e9f0fa;
  border-radius: 10px;
  padding: 20px;
}

/* growth-focused-section */
/* blog-section */
.blog-box {
  padding: 80px 0;
}

.blog-content {
  padding: 20px 0;
}

.blog-img h5 {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 48px;
  z-index: 1;
  background: var(--color-0355ac);
  border-radius: 0 0 0 15px;
  text-align: center;
  line-height: 18px;
  font-size: var(--font-size-17);
  color: var(--color-ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-list .blog-img {
  border-top-right-radius: 0;
}

.blog-list {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Text initial state */
.blog-content h3,
.blog-content p,
.blog-content .view-more-text {
  transform: translateY(12px);
  opacity: 0.85;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

/* Smooth stagger (luxury feel) */
.blog-content h3 {
  transition-delay: 0.04s;
}

.blog-content p {
  transition-delay: 0.08s;
}

.blog-content .view-more-text {
  transition-delay: 0.12s;
}

/* Hover state */
.blog-list:hover {
  transform: translateY(-4px);
}

.blog-list:hover .blog-content h3,
.blog-list:hover .blog-content p,
.blog-list:hover .view-more-text {
  transform: translateY(0);
  opacity: 1;
}

/* Read More micro interaction */
.view-more-text-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.view-more-text-btn img {
  transition: transform 0.35s ease;
}

.blog-list:hover .view-more-text-btn img {
  transform: translateX(6px);
}

/* blog-section */
/* main-footer */
.policy h4{
  color: #282828;
}
nav.footer-social {
    display: none;
}
.main-footer {
  padding-top: 50px;
  padding-bottom: 20px;
}

.footer-title .main-title {
  font-size: var(--font-size-100);
  color: var(--color-f0f0f0);
}

.footer-contact li {
  font-size: var(--font-size-17);
  color: var(--color-848484);
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.footer-contact li:hover {
  color: var(--color-0355ac);
}

.footer-contact li img {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
}

.footer-social ul li {
  float: left;
  margin: 0 8px;
}

.footer-social ul li img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer-menu {
  margin-top: 100px;
}

.footer-menu ul li a {
  padding: 2px 0;
  display: block;
  font-size: var(--font-size-17);
  color: var(--color-848484);
}

.footer-menu ul li:hover a {
  color: var(--color-0355ac);
}

.footer-box {
  padding-right: 180px;
}

.copyright-text {
  padding-top: 30px;
  margin-top: 50px;
  border-top: solid 2px var(--color-0355ac);
}

.copyright {
  color: var(--color-848484);
}

.footer-menu .divider-line {
  margin: 0 10px;
  font-size: var(--font-size-17);
  color: var(--color-848484);
}

/* main-footer */

/* About-Us-page */
.breadcrumb-section {
  background: url(../images/bg/inner-banner-bg.png)center/cover no-repeat;
  background-color: var(--color-e9f0fa);
  padding: 50px 0;
}

.breadcrumb-container {
  margin: 0 auto;
  padding: 0 15px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.breadcrumb-list li {
  font-size: var(--font-size-20);
  line-height: var(--line-height-14);
  color: var(--color-848484);
  font-weight: var(--font-weight-Regular);
}

.breadcrumb-list li+li::before {
  content: "›";
  margin: 0 12px;
  color: var(--color-848484);
  font-size: 16px;
}

.breadcrumb-list a {
  color: var(--color-0355ac);
  font-weight: var(--font-weight-Medium);
}

.breadcrumb-list a:hover {
  color: var(--color-000000);
}

.breadcrumb-list .active {
  color: var(--color-000000);
  font-weight: var(--font-weight-SemiBold);
}

/* About-Us-page */

.blue-box p {
  color: #fff;
}

.mission-vision-section {
  background: #f7f9fc;
}

.mission-vision-box {
  display: flex;
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 0 0 26px;
  text-align: left;
  height: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  align-items: center;
  gap: 20px;
}

.mission-vision-box h3 {
  color: var(--color-0355ac);
  margin-bottom: 10px;
}

.mission-vision-box p {
  margin: 0;
}


.mission-vision-box img {
  width: 100px;
}


.about-pg-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.about-pg-left .class-icon {
  position: absolute;
  object-fit: contain;
  object-position: bottom center;
  width: 150px;
  height: 150px;
  right: 10px;
  bottom: 10px;
  display: inline-block;
  animation: rotateClockwise 10s linear infinite;
}

.about-pg-image img {
  width: 100%;
  border-radius: 22px;
}

.about-content-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 22px;
  /* background-color: var(--color-0355ac); */
  padding: 30px;
  border-radius: 0 0 30px 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}



/* contact-page */
.padding-left {
  padding-left: 50px;
}

.padding-right {
  padding-right: 50px;
}
.contact-social ul {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 15px;
}
.contact-social ul li img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

/* Hero Section */

.contact-hero-section .hero-subtitle {
  font-size: var(--font-size-17);
  line-height: var(--line-height-24);
  color: var(--color-848484);
  max-width: 620px;
  margin-top: 12px;
}

.contact-hero-img {
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Form Section */
.contact-form-section {
  background: var(--color-e9f0fa);
}

.contact-form-wrapper {
  background: var(--color-ffffff);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.form-intro {
  font-size: var(--font-size-16);
  line-height: var(--line-height-20);
}

/* Inputs */
.contact-form .form-control {
  cursor: pointer;
  height: 52px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--color-f0f0f0);
  font-size: var(--font-size-14);
  color: var(--color-333233);
}

.contact-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.contact-form .form-control:focus {
  border-color: var(--color-0355ac);
  box-shadow: none;
}

/* Info Card */
.contact-info-card {
  background: var(--color-ffffff);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  font-size: var(--font-size-19);
  line-height: var(--line-height-20);
  margin-bottom: 16px;
}

.contact-info-list strong {
  display: block;
  font-weight: var(--font-weight-SemiBold);
  color: var(--color-0355ac);
}

/* Closing CTA Section */
.contact-cta-section {
  background:var(--color-e9f0fa)
}

.contact-cta-section .cta-title {
  font-family: var(--font-Baloo-Bhai);
  font-size: var(--font-size-42);
  line-height: var(--line-height-52);
  font-weight: var(--font-weight-ExtraBold);
  color: var(--color-ffffff);
}

.contact-cta-section .cta-subtitle {
  font-size: var(--font-size-17);
  line-height: var(--line-height-24);
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}


/* services-page */
/* ===== Services Section Intro ===== */
.services-grid-intro {
  font-size: 16px;
  line-height: 26px;
  color: #6b7280;
  max-width: 720px;
}

/* ===== Card Wrapper ===== */
.services-box {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #eef0f3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  position: relative;
}

/* Top Accent Line */
.services-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

/* Hover Effect */
.services-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border-color: #dbeafe;
}

/* ===== Image Section ===== */
.services-box-img {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.services-box-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
  object-position: center;
}

.services-box:hover .services-box-img img {
  transform: scale(1.05);
  opacity: 0.95;
}

/* ===== Card Body ===== */
.services-box-body {
  padding: 20px;
}

/* Title */
.services-box-body h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

/* Description */
.services-box-body p {
  font-size: 15px;
  line-height: 24px;
  color: #6b7280;
  margin-bottom: 0;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Team Page Styles */

/* Team Hero Section */
.team-hero-section {
  background: transparent;
}

.team-hero-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.team-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  transition: transform 0.3s ease;
}

.team-hero-image:hover img {
  transform: scale(1.02);
}

.team-hero-content h3.h4 {
  font-size: var(--font-size-28);
  line-height: var(--line-height-33);
  color: var(--color-0355ac);
  font-weight: var(--font-weight-SemiBold);
}

/* ============================= */
/* LEADERSHIP SECTION */
/* ============================= */

.leadership-section {
  /* position: relative; */
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

/* ============================= */
/* IMAGE WITH GRADIENT RING */
/* ============================= */

.leadership-image {
  position: relative;
  width: 80%;
  height: 80%;
  margin: auto;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg,
      #0355ac,
      #6aa9ff,
      #0355ac);
  animation: rotateBorder 6s linear infinite;
}

@keyframes rotateBorder {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.leadership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.5s ease;
}

.leadership-image:hover img {
  transform: scale(1.05);
}

/* ============================= */
/* CONTENT CARD */
/* ============================= */

.leadership-content-wrapper {
  padding: 50px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(3, 85, 172, 0.12);
  position: relative;
}

/* Floating quote icon */
.leadership-content-wrapper::before {
  content: "“";
  position: absolute;
  top: -70px;
  right: 30px;
  font-size: 250px;
  font-weight: 700;
  color: rgb(0 124 255 / 14%);
  line-height: 1;
}

/* ============================= */
/* HEADER */
/* ============================= */

.leadership-header .div-title {
  font-size: var(--font-size-42);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-000000);
}

.leadership-role {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-SemiBold);
  color: var(--color-0355ac);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 14px;
}

/* Gradient divider */
.leadership-role::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #0355ac, #6aa9ff);
  border-radius: 10px;
}

/* ============================= */
/* CONTENT TEXT */
/* ============================= */

.leadership-content p {
  color: var(--color-333233);
}
.leadership-content p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.leadership-content i {
  color: #0355ac;
  margin-top: 4px; /* aligns nicely with multi-line text */
}


/* Highlight last paragraph */

/* Leadership Section */


/* Team Capabilities Section */
.team-capabilities-section {
  background: transparent;
}

.capabilities-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.capabilities-image img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  transition: transform 0.3s ease;
}

.capabilities-image:hover img {
  transform: scale(1.02);
}

.capabilities-content-wrapper {
  padding: 20px 0;
}

.capabilities-content-wrapper .div-title {
  color: var(--color-000000);
  margin-bottom: 20px;
}

.capabilities-content-wrapper .lead {
  font-size: var(--font-size-19);
  line-height: var(--line-height-28);
  color: var(--color-333233);
  font-weight: var(--font-weight-Regular);
}

/* Responsive Styles for Team Sections */
@media (max-width: 991.98px) {
   
  .team-hero-content h3.h4 {
    font-size: var(--font-size-22);
    line-height: var(--line-height-28);
  }

  .team-hero-content .lead {
    font-size: var(--font-size-17);
    line-height: var(--line-height-24);
  }

  .leadership-content p {
    font-size: var(--font-size-16);
    line-height: var(--line-height-22);
  }

  .capabilities-content-wrapper .lead {
    font-size: var(--font-size-17);
    line-height: var(--line-height-24);
  }

  .leadership-content-wrapper,
  .capabilities-content-wrapper {
    padding: 25px;
  }
  .gap-3 {
    gap: 0.5rem !important;
}
}

@media (max-width: 767.98px) {

  .team-hero-image,
  .leadership-image,
  .capabilities-image {
    margin-bottom: 30px;
  }

  .leadership-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .team-capabilities-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}

/* Corporate Finance Debt Page Styles */

/* Hero Section */
.inner-service-hero-section {
  position: relative;
  background: transparent;
}

img.service-icon {
    display: none;
  position: absolute;
  bottom: 100px;
  width: 200px;
  right: 100px;
}

.inner-service-hero-intro {
  font-size: var(--font-size-19);
  line-height: var(--line-height-28);
  color: var(--color-333233);
  margin-bottom: 20px;
  font-weight: var(--font-weight-Regular);
}

.inner-service-hero-content {
  font-size: var(--font-size-17);
  line-height: var(--line-height-24);
  color: var(--color-333233);
  margin-bottom: 20px;
  font-weight: var(--font-weight-Regular);
}


/* Services Section */
.inner-service-services-section {
  background: var(--color-e9f0fa);
}

.inner-service-services-subtitle {
  font-size: var(--font-size-22);
  line-height: var(--line-height-28);
  color: var(--color-0355ac);
  font-weight: var(--font-weight-SemiBold);
  margin-bottom: 20px;
}

.inner-service-services-intro {
  font-size: var(--font-size-17);
  line-height: var(--line-height-24);
  color: var(--color-333233);
  font-weight: var(--font-weight-Regular);
}

.inner-service-service-card {
  display: flex;
  background: var(--color-ffffff);
  padding: 25px;
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid transparent;
  align-items: center;
  gap: 16px;
}

.inner-service-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  border-color: var(--color-0355ac);
}

.inner-service-service-title {
  font-size: var(--font-size-22);
  line-height: var(--line-height-28);
  color: var(--color-0355ac);
  font-weight: var(--font-weight-Bold);
  margin-bottom: 0px;
}

.inner-service-service-text {
  font-size: var(--font-size-17);
  color: var(--color-333233);
  margin-bottom: 0;
  font-weight: var(--font-weight-Regular);
}

/* Why Choose Section */
.inner-service-why-choose-section {
  background: transparent;
}

.why-choose {
  padding-right: 50px;
}

/* Feature Card – Simple */
.inner-service-feature-card {
  position: relative;
  height: 100%;
  padding-bottom: 10px;
  margin-bottom: 10px;
  background: #ffffff;
  border-radius: 0;
  border-bottom: 1px solid #eef0f3;
  transition: all 0.25s ease;
}

/* Small Check Icon */
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  gap: 15px;
}

.feature-icon i {
  font-size: 25px;
  color: var(--color-0355ac);
}

/* Text */
.inner-service-feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.4;
}

.inner-service-feature-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}


.inner-service-feature-title {
  font-size: var(--font-size-22);
  line-height: var(--line-height-28);
  color: var(--color-000000);
  font-weight: var(--font-weight-Bold);
  margin-bottom: 0;
}

.inner-service-feature-text {
  font-size: var(--font-size-17);
  line-height: var(--line-height-24);
  color: var(--color-333233);
  margin-bottom: 0;
  font-weight: var(--font-weight-Regular);
}

.inner-service-service-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* CTA Section */
.inner-service-cta-section {
  position: relative;
  background: var(--color-e9f0fa)
}
img.last-mascot {
    height: 95%;
    position: absolute;
    left: 10%;
    bottom: 0;
}
img.last-mascot-right {
    height: 95%;
    position: absolute;
    right: 10%;
    bottom: 0;
}

.inner-service-cta-title {
  font-size: var(--font-size-42);
  line-height: var(--line-height-52);
  color: var(--color-0355ac);
  font-weight: var(--font-weight-Bold);
  margin-bottom: 30px;
}

.inner-service-cta-content {
  font-size: var(--font-size-17);
  line-height: var(--line-height-24);
  color: var(--color-333233);
  width: 60%;
  margin: 0 auto 20px;
  font-weight: var(--font-weight-Regular);
}

.inner-service-cta-section .service-btn {
  background: var(--color-ffffff);
  color: var(--color-0355ac);
  border: solid 1.5px var(--color-ffffff);
}

.inner-service-cta-section .service-btn:hover {
  background: var(--color-0355ac);
  color: var(--color-ffffff);
  border: solid 1.5px var(--color-ffffff);
}

.inner-service-hero-image {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.inner-service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 0.3s ease;
}


.inner-service-hero-image:hover img {
  transform: scale(1.02);
}

/* Responsive Styles for Debt Page */
@media (max-width: 991.98px) {
  .inner-service-hero-intro {
    font-size: var(--font-size-17);
    line-height: var(--line-height-24);
  }

  .inner-service-cta-title {
    font-size: var(--font-size-33);
    line-height: var(--line-height-42);
  }

  .inner-service-service-card,
  .inner-service-feature-card {
    padding: 35px 30px;
  }

  .inner-service-service-title,
  .inner-service-feature-title {
    font-size: var(--font-size-20);
    line-height: var(--line-height-28);
  }
  .why-choose {
    padding-right: 00;
}
}

@media (max-width: 767.98px) {

  .inner-service-hero-section,
  .inner-service-services-section,
  .inner-service-why-choose-section,
  .inner-service-cta-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .inner-service-cta-title {
    font-size: var(--font-size-28);
    line-height: var(--line-height-38);
  }

  .inner-service-service-card,
  .inner-service-feature-card {
    padding: 30px 25px;
    margin-bottom: 20px;
  }

  .inner-service-services-intro,
  .inner-service-cta-content {
    font-size: var(--font-size-16);
    line-height: var(--line-height-22);
  }

  .inner-service-cta-section .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .inner-service-cta-section .view-more {
    width: 100%;
    max-width: 300px;
  }

  .inner-service-cta-section .view-more-btn {
    width: 100%;
    text-align: center;
  }
}


#return-to-top {
  position: fixed;
  right: 20px;
  bottom: 10px;
  width: 45px;
  height: 45px;
  border-radius: 10px 0 10px 10px;
  border: 2px solid #0355ac;
  background: var(--color-e9f0fa);
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 999;
}

/* THIS is the fill */
#return-to-top .fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #0355ac;
  transition: height 0.25s ease-out;
}

#return-to-top img {
  width: 20px;
  position: relative;
  z-index: 2;
  filter: invert(1);
  transition: filter 0.3s ease;
}

#return-to-top.active img {
  filter: brightness(0) invert(1);
}



.sidenav,
.mobile-toggle {
  display: none;
}

.mobile-md-none {
  display: block !important;
}

.desktop-md-none {
  display: none !important;
}

.mobile-none {
  display: block !important;
}

.desktop-none {
  display: none !important;
}

.container {
  max-width: 1557px;
}

.container-1760 {
  max-width: 1760px;
}

/* responsive css */
@media only screen and (min-width: 1921px) {}

@media only screen and (min-width: 2200px) {}

@media (max-width: 1880px) {
.container {
    max-width: 100%;
    padding: 0 7%;
}
}

@media (max-width: 1680px) {
  :root {
    --font-size-46: 36px;
    --line-height-46: 40px;
    --font-size-50: 40px;
    --line-height-50: 40px;
  }

  .container-1760 {
    max-width: 94%;
    margin: 0 3%;
  }

  .container {
    max-width: 100%;
    padding: 0 5%;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .div-title {
    margin-bottom: 10px;
  }

  .padding-right {
    padding-right: 25px;
  }

  .padding-left {
    padding-left: 25px;
  }

  .about-content-card {
    padding: 20px;
  }

  .mission-vision-box {
    padding: 35px 25px;
    gap: 15px;
  }

  .main-nav .nav-item .nav-link {
    padding: 30px 10px;
  }
  header.main-header.g_header.g_shrink .main-nav .nav-item .nav-link {
    padding: 25px 10px;
}

}

@media (max-width: 1560px) {

  :root {
    --font-size-17: 16px;
    --font-size-20: 18px;
    --font-size-22: 18px;
    --font-size-42: 32px;
    --font-size-100: 80px;
    --line-height-22: 26px;
    --line-height-17: 22px;
    --line-height-42: 38px;
  }
      .container {
        max-width: 100%;
        padding: 0 6%;
    }
  .swiper-button-next, .swiper-button-prev {
    top: 45%;
  }

  .pb-110 {
    padding-bottom: 80px;
  }

  .pt-110 {
    padding-top: 80px;
  }

  .view-more-btn {
    padding: 10px 30px;
  }

  img.service-icon {
    position: absolute;
    bottom: 50px;
    width: 180px;
    right: 50px;
  }

  .copyright-text {
    padding-top: 25px;
    margin-top: 25px;
  }

  .footer-box {
    padding-right: 120px;
  }

  .footer-menu {
    margin-top: 50px;
  }

  .mb-50 {
    margin-bottom: 30px;
  }

  .mt-50 {
    margin-top: 30px;
  }

  .org-parent {
    gap: 8px;
    padding: 30px 40px;
  }

  .org-parent h3 {
    font-size: 24px;
    margin-bottom: 0;
  }

  .org-card {
    border-radius: 16px;
    padding: 30px 20px;
  }

  .org-card p {
    margin-bottom: 5px;
  }

  .section-title {
    letter-spacing: 4px;
  }

  img.service-icon {
    width: 150px;
  }

  .inner-service-services-subtitle {
    margin-bottom: 0;
  }

  .main-title {
    margin-bottom: 10px;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }

  .inner-service-service-card {
    padding: 15px;
    border-radius: 16px;
  }

  .feature-icon {
    margin-bottom: 5;
    gap: 10px;
  }

  .feature-icon i {
    font-size: 22px;
  }

  .contact-form-wrapper {
    padding: 30px;
    border-radius: 16px;
  }

  .mt-30 {
    margin-top: 15px;
  }

  .contact-form .form-control {
    height: 45px;
    padding: 10px 15px;
    border-radius: 8px;
  }

  .services-box-img img {
    width: 100%;
    height: 250px;
  }

  .contact-info-list strong {
    font-size: 16px;
  }
}

@media (max-width: 1480px) {
    .container {
        max-width: 100%;
        padding: 0 2.5%;
    }

    img.mascot-03 {
      width: 14%;
    right: 0px;
}
    
    .about-text p, .about-text .div-title {
    padding-left: 33%;
}
    .home-about-left img {
        width: 28%;
        height: 100%;
        left: 50px;
        bottom: 30px;
    }

  .container-1760 {
      max-width: 94%;
      padding: 0;
  }
  .inner-service-service-img img {
    width: 70px;
    height: 70px;
  }

  .swiper-button-prev {
    right: auto;
    left: 15px;
  }

  .swiper-button-next {
    right: 15px;
    left: auto;
  }

    .home-about-left .class-icon {
        width: 120px;
        height: 120px;
        left: 350px;
        bottom: 200px;
    }
    .discover-right {
    padding-right: 121px;
}
    img.discover-mascot {
        top: -15%;
    }

      .offer-list-text {
        padding: 30px 20px;
    }
    .banner-text-box {
    left: 40px;
  }

  .blog-box {
    padding: 50px 0;
  }
  .offer-list-img {
    height: 250px;
    border-radius: 0 0 16px 16px;}
    img.last-mascot {
    left: 5%;
    bottom: 5px;
}
img.last-mascot-right {
  
    right: 5%;
    bottom: 5px;
}
.leadership-content-wrapper {
    padding: 25px;
  }
  img.mascot-01 {
    position: absolute;
    left: 6%;
    top: 10%;
    width: 13%;
}
}

@media (max-width: 1366px) {
      :root {
        --font-size-46: 30px;
      }
      .services-box-img img {
        width: 100%;
        height: 200px;
    }
    .services-box-body {
    padding: 12px;
}
img.last-mascot {
    left: 3%;
}
img.last-mascot-right {
    right: 3%;
}
.inner-service-cta-title {
    line-height: 36px;
    margin-bottom: 15px;
  }
}



@media (max-width: 1199.98px) {}

@media (max-width: 1024px) {}

@media (max-width: 991.98px) {
.mobile-view{
  display: block;
}
   .banner-text-box {
        left: 0;
    }
  :root {
    --font-size-50: 24px;
    --line-height-50: 20px;
  }
.about-tizzy-group {
    padding: 60px 0;
}
    .padding-right {
        padding-right: 0;
        margin-top: 15px;
    }
        .padding-left {
        padding-left: 0;
        margin-top: 15px;

    }
    .mobile-container {
        width: auto;
        padding: 0 !important;
    }

  .desktop-view {
    display: none !important;
  }

  .main-nav .nav-item .nav-link.view-more-btn {
    display: none;
  }

  ul.navbar-nav.ms-auto {
    display: flex;
    align-items: start;
  }

  .main-nav .nav-item {
    width: 100%;
    margin-right: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #0005;
  }

  .arrow-icon {
    position: absolute;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-left: 8px;
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    right: 15px;
    background: var(--color-0355ac);
  }

  .arrow-icon::after {
    filter: invert(1);
  }

  /* Offcanvas Panel */
  .offcanvas.menu-right {
    width: 340px;
    background: var(--color-e9f0fa);
    box-shadow: 24px 0 48px rgba(3, 85, 172, 0.18);
  }

  /* Body */
  .offcanvas-body {
    padding: 22px 20px;
    overflow-y: auto;
    max-height: calc(100vh - 90px);
  }


  /* Main menu links */
  .offcanvas .nav-link {
    font-size: 16px;
    color: var(--color-0355ac);
    padding: 12px 18px;
    border-radius: 12px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .offcanvas .dropdown-item {
    font-size: 15px;
    color: var(--color-0355ac);
    padding: 10px 16px;
    border-radius: 10px;
  }

  .offcanvas .dropdown-item:hover {
    background: #ffffff;
  }

  /* CTA Button */
  .offcanvas .view-more-btn {
    margin-top: 16px;
    font-size: 15px;
    padding: 12px 20px;
    text-align: center;
    background: var(--color-0355ac);
    color: #ffffff !important;
    border-radius: 40px;
    width: 100%;
    display: block;
  }

  .offcanvas .view-more-btn:hover {
    background: var(--color-0355ac);
    color: #ffffff !important;
  }

  .sidenav,
  .mobile-toggle {
    display: block;
  }

  .mobile-md-none {
    display: none !important;
  }

  .desktop-md-none {
    display: block !important;
  }

  /* mob-sidenav */
  /* mob-sidenav */
  .order-md-div {
    order: 2;
  }

  /* mob-login */
  .offcanvas-body {
    overflow-y: auto;
  }

  .offcanvas.offcanvas-start {
    width: var(--bs-offcanvas-width);
    transform: translateX(-100%);
  }

  .offcanvas {
    position: fixed;
    visibility: hidden;
  }

  .mobile-offcanvas .toggle-img {
    width: 40px;
  }

  .offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--color-f0f0f0);
  }

  .mobile-logo {
    display: block;
    flex: 1;
  }

  .mobile-logo img {
    width: auto;
  }

  .offcanvas-header .btn-close {
    position: absolute;
    width: 14px;
    height: 14px;
    opacity: 1;
    padding: 10px 10px;
    margin: 0;
    flex-shrink: 0;
    right: 15px;
    top: 15px;
    opacity: 0.5;
  }


  /* Fix mobile dropdown menu functionality */
  .offcanvas .dropdown-menu {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      transform 0.25s ease;
    padding-left: 14px;
    border: none;
    background: transparent;
      -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  }

  .offcanvas .dropdown.show > .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 8px;
    padding-bottom: 8px;
      -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  }



  .offcanvas .advisory-toggle {
    position: relative;
  }

  .offcanvas .dropdown.show>.advisory-toggle .arrow-icon::after,
  .offcanvas .dropdown:focus-within>.advisory-toggle .arrow-icon::after {
    transform: translate(-50%, -50%) rotate(180deg);
  }
.offcanvas .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      transform 0.25s ease;
    padding: 0;
    border: none;
  }

    .offcanvas .dropdown.show > .dropdown-menu {
        max-height: 500px;
        opacity: 1;
        transform: translateY(8px);
        padding-top: 1px;
        box-shadow: none;
        padding-bottom: 0;
    }

  .logo-img .main-logo {
    width: 200px;
  }

  .main-header {
    padding: 15px 0;
  }

  .main-menu .container {
    padding: 0 20px;
  }

  .offcanvas.menu-right {
    max-width: 85vw;
  }

  .main-nav .nav-item .nav-link {
    padding: 0!important;
    font-size: 20px;
  }
  .main-nav .navbar-nav .dropdown .dropdown-menu li a{
    font-size: 18px;
  }

  /* Banner image height control */
  .banner_slider {
    height: 280px;
  }

  .banner_slider img.banner-img {
    height: 100%;
    object-position: right;
    transform: scale(1);
    /* disable heavy zoom on mobile */
  }

  .swiper-slide-active .banner_slider img.banner-img {
    transform: scale(1.05);
  }

  /* Text position reset */
  .banner-text-box {
    position: relative;
    top: auto;
    transform: none;
    padding: 25px 0px;
    background: #e9f0fa;
    text-align: center;
  }

  /* Full width text */
  .banner-text {
    width: 100%;
    margin: 0 auto;
  }

  .banner-text .div-title {
    font-size: 20px;
  }

  .banner-text p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 2 lines only */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
  }

  /* Buttons stacked */
  .service-btn-box {
    /* flex-direction: column; */
    align-items: center;
    gap: 12px;
    margin-top: 0;
    justify-content: center;
  }

  .view-more-btn {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }

  /* Slider arrows smaller */
  .swiper-button-next,
  .swiper-button-prev {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-box-before::before {
    z-index: -9;
  }

  .swiper-button-next img,
  .swiper-button-prev img {
    width: 15px;
    height: 15px;
  }

  .banner_slider {
    height: 200px;
  }
      .org-parent {
        border-radius: 12px;
    }
        .org-parent {
        gap: 8px;
        padding: 15px 20px;
    }
    .org-card {
        gap: 8px;
        padding: 15px 20px;
    }
    .org-parent img,.org-card img {
    max-height: 50px;
}
    .org-parent h3,.org-card h4 {
        font-size: 16px;
      }

    .inner-service-service-img img {
        width: 100%;
        height: 100%;
    }
}


@media (max-width: 800px) {}

@media (max-width: 767.98px) {
  .mobile-sm-none {
    display: none !important;
  }

  .desktop-sm-none {
    display: block !important;
  }

  .order-sm-div {
    order: 2;
  }

  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .logo-img .main-logo {
    width: 160px;
  }

  .main-header {
    padding: 12px 0;
  }
.g_header:not(.hide-header) {
    transform: unset;
}

  .main-menu .container {
    padding: 0 15px;
  }

  .offcanvas.menu-right {
    width: 320px;
    max-width: 90vw;
  }

  .offcanvas-header {
    padding: 15px 18px;
  }

  .offcanvas-body {
    padding: 18px 15px;
    max-height: calc(100vh - 80px);
  }

  .offcanvas .nav-link {
    font-size: 15px;
    padding: 10px 15px;
  }

  .offcanvas .dropdown-item {
    font-size: 14px;
    padding: 8px 14px;
  }

  /* Section spacing adjustments */
  .pb-110,
  .pt-110 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .mb-60 {
    margin-bottom: 40px !important;
  }

  .section-title {
    font-size: var(--font-size-17) !important;
    letter-spacing: 3px !important;
  }

  .inner-service-hero-section .main-title,
  .inner-service-services-section .main-title,
  .inner-service-why-choose-section .main-title {
    font-size: var(--font-size-28) !important;
    line-height: var(--line-height-38) !important;
  }

  .inner-service-cta-title {
    font-size: var(--font-size-28) !important;
    line-height: var(--line-height-38) !important;
  }

  .inner-service-service-card,
  .inner-service-feature-card {
    padding: 25px 20px;
    margin-bottom: 15px;
  }

  .inner-service-service-title,
  .inner-service-feature-title {
    font-size: var(--font-size-20) ;
    line-height: var(--line-height-28) !important;
  }

  .breadcrumb-section {
    padding: 30px 0;
  }

  .breadcrumb-list {
    font-size: var(--font-size-17) !important;
  }
}

@media (max-width: 575.98px) {
  :root {
    --font-size-50: 20px;
    --font-size-42: 22px;
    --font-size-46: 20px;
    --font-size-28: 20px;
    --font-size-20: 15px;
    --font-size-17: 15px;
    --font-size-100: 45px;
    --line-height-28: 24px;
    --line-height-42: 28px;
    --line-height-46: 28px;
  }
  img.last-mascot-right,img.last-mascot {
    height: auto;
    width: 60px;
  }
      .about-tizzy-group {
        padding: 30px 0;
    }
        .inner-service-hero-section img.mascot-03 {
        width: 22%;
        position: absolute;
        right: 5px;
        bottom: 0;
    }
    .inner-service-hero-section.pb-110 {
    padding-bottom: 50px !important;
  }
      
        img.last-mascot {
        left: 10px;
        bottom: 15px;
        width: 60px;
    }
      .banner_slider {
        height: 250px;
    }
  .leadership-header .div-title {
    margin-bottom: 0 !important;
  }

  .team-hero-image,
  .leadership-image,
  .capabilities-image {
    margin-bottom: 0;
  }

  .team-hero-image,.team-hero-image img {
    border-radius: 16px;
  }

  .team-hero-content .team-hero-image img {
    border-radius: 16px;
  }

  .team-hero-content .mb-4 {
    margin-bottom: 10px !important;
  }

  .about-pg-left .class-icon {
    width: 90px;
    height: 90px;
  }

  p {
    text-align: justify;
  }

  .pb-110,
  .pt-110 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .logo-img .main-logo {
    width: 140px;
  }

  .mobile-logo .main-logo {
    width: 120px;
  }

  .offcanvas.menu-right {
    width: 100%;
    max-width: 100vw;
  }

  .offcanvas-header {
    padding: 12px 15px;
  }

  .offcanvas-body {
    padding: 15px 12px;
  }

  .navbar-toggler {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    position: absolute;
    top: 50%;
  }

  .about-text p,
  .about-text .div-title {
    padding-left: 0;
  }

    .home-about-left img {
      position: relative;
        width: 90%;
        left: 5%;
        top: 0px;
    }
      img.discover-mascot {
        width: 25%;
        top: 0%;
        right: 5px;
    }
        .discover-right {
        padding-right: 100px;
    }

  .about-right {
    text-align: left;
    padding: 0;
    width: 100%;
    padding-bottom: 30px;
  }
  .home-about-left {
    width: 100%;
    height: 330px;
}

  .blue-box {
    padding: 15px;
    border-radius: 0 0 20px 0;
    text-align: justify;
    margin-bottom: 15px;
  }

  .about-box {
    border-radius: 26px 0 26px 26px;
  }

  .about-box-before::before {
    border-radius: 20px 0 0 20px;
  }

  .discover-slider-left {
    padding-right: 5%;
    padding-left: 5%;
    margin-top: 30px !important;
  }

  .discover-right {
    text-align: center;
  }

  .view-more {
    margin-top: 0 !important;
  }

  .offer-list-text {
    padding: 20px;
    border-radius: 16px 16px 0 0;
    height: auto;
  }
  .offer-list {
    border-radius: 12px;
}

  .offer-list-img {
    border-radius: 0 0 16px 16px;
  }

  .about-pg-section {
    overflow: visible;
}
img.mascot-03 {
    width: 22%;
    position: absolute;
    right: 5px;
    bottom: -40px;
}
  .offer-list-text p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 2 lines only */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .offer-list-text .div-sub-title {
    margin-bottom: 10px;
  }

  .offer-list-img img {
    border-radius: 16px;
  }

  .offer-list-slider {
    padding-bottom: 45px;
  }

  .logo-slider {
    height: 250px;
    grid-template-columns: repeat(1, 1fr);
  }

  .blog-box {
    padding: 30px 0 !important;
    padding-bottom: 0 !important;
    text-align: left;
  }

  .img-zoom {
    border-radius: 0 0 16px 16px;
  }

  .blog-content {
    padding-top: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #efefef;
  }

  .footer-box {
    padding-right: 0;
  }

  .main-footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .copyright {
    font-size: 14px;
    text-align: center;
  }

  .mobile-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-social ul li img {
    width: 20px;
    height: 20px;
  }

  .footer-menu .d-flex li a {
    font-size: 14px;
  }

  #return-to-top.footer-safe {
    bottom: 110px;
    /* footer se itna gap rahe */
  }

  #return-to-top {
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .copyright-text .justify-content-end {
    justify-content: center !important;
  }

  .mt-50 {
    margin-top: 15px;
  }

  .about-pg-image {
    border-radius: 16px;
  }

  .about-pg-image img {
    border-radius: 16px;
  }

  .padding-left {
    padding-left: 0;
  }

  .mb-40 {
    margin-bottom: 15px;
  }

  .about-content-card {
    padding: 15px;
  }

  .mission-vision-box {
    padding: 15px;
    gap: 10px;
  }

  .mission-vision-box img {
    width: 60px;
  }
  img.mascot-01 {
    display: none;
  }
    .leadership-role {
    margin-bottom: 10px;
    padding-bottom: 10px;
}
        .leadership-content-wrapper, .capabilities-content-wrapper {
        padding: 15px;
        border-radius: 16px;
        margin-top: 20px;
    }
        .leadership-content p {
        font-size: 15px;
        line-height: 18px;
    }

    .leadership-content-wrapper::before {
    top: -45px;
    right: 10px;
    font-size: 200px;
  }

  .contact-hero-img {
    border-radius: 12px;
  }
  .inner-service-cta-title {
    margin-bottom: 15px;
}
.org-card.featured {
    border: 2px solid #0355ac;
}
    .org-parent {
        gap: 0;
    }
    .org-connector {
    margin: 0px auto;
  }
    .org-parent img, .org-card img {
        width: 100%;
        max-height: 60px;
        height: 50px;
        object-fit: contain;
        margin-bottom: 0px;
    }
        .org-card {
        padding: 15px;
        border-radius: 8px;
    }
        .org-card p {
        display: none;
    }
        .org-children {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .org-parent h3, .org-card h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }
        img.service-icon {
        width: 110px;
        bottom: 2px;
        right: 15px;
    }
        .inner-service-service-card {
        padding: 20px 15px;
        position: relative;
        padding-top: 30px;
        margin-top: 2%;
        height: 90%;
    }
    .inner-service-feature-card {
        padding: 15px 0;
      }
      .inner-service-cta-content {
    width: 100%;
    line-height: 20px;
  }
      .inner-service-feature-text {
    line-height: 20px;
  }
    .inner-service-service-img {
        background: #fff;
        width: 65px;
        position: absolute;
        right: 15px;
        top: -30px;
        border-radius: 8px;
        padding: 6px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
    .inner-service-hero-image,.inner-service-hero-image img {
    border-radius: 12px;
  }
    .inner-service-text h4 {
        font-size: 18px;
        width: 80%;
        line-height: 20px !important;
        margin-bottom: 10px;
    }
    .contact-form-wrapper {
        padding: 15px;
      }
      .form-intro {
    line-height: 20px;
}
.contact-info-card {
    padding: 15px;
  }
  .contact-info-list li {
    font-size: 16px;
    margin-bottom: 10px;
}
br{
  display: none;
}
iframe {
    height: 300px;
}
}


@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo-img .main-logo {
    width: 120px;
  }



  .inner-service-hero-intro,
  .inner-service-hero-content {
    font-size: var(--font-size-16) !important;
    line-height: var(--line-height-22) !important;
  }

  .blog-img h5 {
    font-size: 12px;
    width: 50px;
    height: 40px;
  }

  .view-more-btn {
    width: 100%;
    max-width: max-content;
    text-align: center;
    padding: 8px 15px;
    font-size: 14px;
  }

  .padding-left {
    padding-left: 0;
    margin-top: 15px;
  }

  .div-text {
    margin-bottom: 10px;
  }
 
}

@media (max-width: 400px) {
  .logo-img .main-logo {
    width: 200px;
  }

  .mobile-logo .main-logo {
    width: 200px;
  }
}

@media (max-width: 375px) {
  .main-header {
    padding: 10px 0;
  }

  .container {
    padding: 0 12px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }

  .offcanvas-header {
    padding: 10px 12px;
  }

  .offcanvas-body {
    padding: 12px 10px;
  }
}

/* responsive css */