@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
  font-family: "Jost", sans-serif;

}


/* START: WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* WhatsApp icon styling */
.whatsapp-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  animation: bounceIn 1s ease;
}

.whatsapp-icon img {
  width: 28px;
  height: 28px;
}

.whatsapp-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

/* Floating popup above WhatsApp icon */
.whatsapp-popup {
  background: #ffffff;
  color: #128C7E;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: floatPopup 2.5s infinite ease-in-out;
}

/* Floating animation for popup */
@keyframes floatPopup {
  0%   { transform: translateY(0); opacity: 1; }
  50%  { transform: translateY(-6px); opacity: 0.85; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Bounce-in animation */
@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(0.3); }
  50%  { opacity: 1; transform: scale(1.05); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
/* END: WHATSAPP FLOAT  */


  /* === START: CHATBOT ICON === */
  #chatbot-icon {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #0397d6;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 28px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    z-index: 999;
  }


  #chatbot-tooltip {
    position: fixed;
    bottom: 95px;
    right: 30px;
    z-index: 1000;
    animation: fadeSlideUp 0.5s ease forwards;
  }
  
  @keyframes fadeSlideUp {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
/* === TOOLTIP === */
#chatbot-tooltip {
  position: fixed;
  bottom: 95px;
  right: 30px;
  background: #ffffff;
  color: #25D366;
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeSlideUp 0.5s ease forwards; /* Faster animation */
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

  .hidden {
    display: none !important;
  }
  
    /* === CHATBOT WINDOW === */
  #chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    overflow: hidden;
    z-index: 999;
    display: flex;
    flex-direction: column;
    max-height: 500px;
  }

  .chatbot-header {
    background: #007bff;
    color: white;
    padding: 12px 15px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .chatbot-header span {
    cursor: pointer;
  }

  .chatbot-body {
    padding: 10px;
    overflow-y: auto;
    height: 260px;
    font-size: 14px;
    background: #f9f9f9;
  }

  .chatbot-body .bot-message,
  .chatbot-body .user-message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    max-width: 90%;
    clear: both;
  }

  .bot-message {
    background: #e9f1ff;
    color: #333;
    align-self: flex-start;
  }

  .user-message {
    background: #d1ffd6;
    color: #333;
    text-align: right;
    align-self: flex-end;
    margin-left: auto;
  }

  .chatbot-input-area {
    display: flex;
    border-top: 1px solid #ccc;
    padding: 10px;
  }

  .chatbot-input-area input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-right: 10px;
  }

  .chatbot-input-area button {
    padding: 8px 14px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 6px;
    cursor: pointer;
  }


  /* END: CHATBOT  */

  
/* START: OFFCANVAS */
.custom-offcanvas {
  background-color: #FBFBFB;
  width: 260px;
  padding: 1rem;
  transition: transform 0.3s ease-in-out;
}
.custom-offcanvas .nav-link {
  font-size: 1rem;
  padding: 10px 0;
  color: #243642;
  font-weight: 500;
}
.custom-offcanvas .nav-link:hover {
  color: #007bff;
}
.custom-offcanvas .btn.liquid-btn {
  border: 2px solid #007bff;
  color: #000000 !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}
.custom-offcanvas .btn.liquid-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007bff;
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.custom-offcanvas .btn.liquid-btn:hover::before {
  transform: translateY(0);
}
.custom-offcanvas .btn.liquid-btn:hover {
  color: #fff;
}

.custom-offcanvas .social-icons img.top-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-left: 10px; /* small space between icons */
  margin-top: 50px;
}

.custom-offcanvas .social-icons img.top-img:first-child {
  margin-left: 20px; /* no margin before the first icon */
}

/* END:OFFCANVAS */

@media (max-width: 768px) {
  .navbar {
  margin-top: 57px;
    background: transparent;
  }

  .navbar-brand img {
    height: 80px; 
    margin-top: 20px;
  }

  .carousel-caption {
    top: 180px !important; 
  }

  .carousel-control-prev, 
  .carousel-control-next {
    top: 500px !important;

   
  }

  .custom-control {
    width: 35px !important;
    height: 35px !important;
  }



  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 50% 50% !important;
  }
}


@media (max-width: 336px) {
  .navbar {
    margin-top: 57px;
      background: transparent;
    }
  
    .navbar-brand img {
      height: 80px;
      margin-top: 40px;
    } 
  }


/* Scroll Down Animation for Navbar */
.navbar-scrolled {
  animation: slideDown 0.4s ease-in-out forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* START:TOP BAR  */
.top-bar {
  background: transparent;

  top: 0;
  z-index: 1042;
}

.top-bar span {
  font-weight: 500;
  color: #ffffff;
  font-size: 0.95rem;
}

.top-bar i {
  color: #4CC9FE;
  margin-right: 5px;
}

/* Top bar social icons spacing and hover effect */
.top-bar .top-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-left: 12px;
  transition: transform 0.3s ease;
}


.top-bar {
  background-color: transparent !important;
  font-size: 0.85rem;
}

.top-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.top-bar.scrolled .text-info {
  color: #0397d6 !important; /* Change to your desired color */
}

.top-bar.scrolled {
  background-color: white; /* optional */
  color: #333; /* text color */
}
.top-bar.scrolled i {
  color: #0397d6 !important;
}

.top-bar .top-img:first-child {
  margin-left: 0;
}
.top-bar .top-img:hover {
  transform: scale(1.2);
}

.top-bar-scrolled span {
  color: #000000 !important;
  
}

.top-bar-scrolled {
  background-color: #ffffff !important;
}
.top-bar-scrolled i {
  color: #0397d6 !important;
}


.nav-gap .nav-item {
  margin-right: 30px; 
}


.nav-gap .nav-item:last-child {
  margin-right: 0;
}


@media (max-width: 991.98px) {
  .nav-gap .nav-item {
    margin-right: 0;
  }
}



/* Custom blue border for navbar-toggler */
.custom-toggler {
  border: 2px solid #0397d6 !important;
  border-radius: 5px;
  padding: 5px 8px;
}

/* Make the navbar-toggler-icon blue */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(3,151,214, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* BASE NAVBAR */
.custom-navbar {
  position: fixed;
  width: 100%;
  top: 45px;
  z-index: 1041;
  transition: background-color 0.4s ease, padding 0.3s ease, transform 0.5s ease;
  background-color: transparent !important;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* BASE NAV LINKS - WHITE initially */
.custom-navbar .nav-link {
  font-weight: 600;
  font-size: 17px;
  color: #ffffff !important; /* White color before scroll */
  transition: color 0.3s ease;
}

/* BASE HOVER - light blue hover */
.custom-navbar .nav-link:hover {
  color: #4CC9FE !important;
}

/* SCROLL EFFECT - BACKGROUND YELLOW */
.navbar-scrolled {
  background-color: rgb(255, 255, 255) !important;
  padding-top: 0.7rem !important;
  padding-bottom: 0.7rem !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* SCROLL EFFECT - NAV LINKS RED */
.navbar-scrolled .nav-link {
  color: #102E50!important;
  font-weight: 700;
}


/* DROPDOWN HOVER - DESKTOP ONLY */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar-nav .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }

  .navbar-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}


/* START:GET YOUR CONSULT */

/* 1) Base styling for the liquid button */
.liquid-btn {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 17px !important;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #3D90D7;
  border-radius: 50px;
  overflow: hidden;
  z-index: 0;
  transition: color 0.4s ease;
}

/* 2) The “fill” layer */
.liquid-btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: #3D90D7;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(.19,1,.22,1);
  border-radius: 50px;
  z-index: -1;
}

/* 3) Hover state: slide in the fill & switch text color */
.liquid-btn:hover {
  color: #fff;
}
.liquid-btn:hover::before {
  transform: scaleX(1);
  animation: liquid-blob 0.6s ease;
}

/* 1. Base hover: Blue fill with white text (already there, keeping it) */
.liquid-btn:hover {
  color: #fff;
}
.liquid-btn:hover::before {
  transform: scaleX(1);
  animation: liquid-blob 0.6s ease;
}



/* 2. SCROLL MODE: Button hover = Red fill + Black text, same animation */
.navbar-scrolled .liquid-btn {
  color: black !important; /* Static text color before hover */
  border: 2px solid red !important;
  font-weight: 500;
}

.navbar-scrolled .liquid-btn:hover {
  color: black !important; /* Text stays black on hover too */
}

.navbar-scrolled .liquid-btn::before {
  background-color: red !important; /* Red fill */
}

.navbar-scrolled .liquid-btn:hover::before {
  transform: scaleX(1);
  animation: liquid-blob 0.6s ease;
}

/* 4) Optional blob-shape keyframe for extra “liquid” feel */
@keyframes liquid-blob {
  0%, 100% { border-radius: 50px; }
  50%      { border-radius: 25px 75px; }
}


/* Dropdown Hover */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar-nav .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }
  .navbar-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}


.animated-dropdown {
  animation: fadeInDown 0.3s ease-in-out;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 


/* DROPDOWN ANIMATION */
.animated-dropdown {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}

.custom-dropdown:hover .animated-dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

/* DROPDOWN ITEM HOVER */
.dropdown-menu .dropdown-item:hover {
  background-color: #4CC9FE !important;
  font-weight: 600 !important;
  color: black !important;
}


@media (max-width: 991.98px) {
  .navbar-collapse {
    text-align: center;
  }

  .navbar-collapse .btn {
    width: 100%;
    margin-top: 15px;
  }
}


/* Allow dropdowns to open on hover only for desktop */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

/* For mobile (disable hover effect explicitly) */
@media (max-width: 991.98px) {
  .dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .dropdown-menu.show {
    display: block;
    opacity: 1;
  }
  
}

@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 0 !important;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
  }

  .navbar-nav .dropdown-menu {
    margin-top: 0;
    width: 100%;
    border: none;
    box-shadow: none;
  }
}


@media (max-width: 768px) {
  .top-bar {
    height: 60px !important; /* Ensure top bar content defines height */
  }

  .custom-navbar {
    top: 2px !important; /* Same as top-bar height */
  }
}

@media (max-width: 744px){
  .top-bar{
    height: auto;
  }

  .custom-navbar{
    top: 3px !important;
  }
}

@media (max-width: 1000px) {
  .liquid-btn {
    font-size: 15px !important;
    padding: 6px 12px !important;
    white-space: nowrap;
  }

  .navbar-toggler {
    padding: 4px 6px;
  }
}


 /* START : CAROUSEL  */

  /* Carousel container adjustments */
  .carousel {
    margin-top: -120px;
    z-index: 0;
  }
  
  /* height fix to cover properly */
  .carousel-item video,
  .carousel-item img {
    height: 100vh !important;
    object-fit: cover;
  }

  /* Carousel caption styling */
  .carousel-caption {
    z-index: 2;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #fff;
    animation: fadeInUp 1.2s ease-in-out;
  }

  
  .carousel-item video,
.carousel-item img {
  height: 100vh;
  object-fit: cover;
}


@media (max-width: 768px) {
  .carousel-item video,
  .carousel-item img {
    height: 80vh !important; 
  }

  .carousel-caption {
    padding: 1.5rem !important;
  }

  .carousel-caption h2.main-title {
    font-size: 1.5rem !important;
  }

  .carousel-caption h6.small-title {
    font-size: 1rem !important;
  }

  .carousel-caption p.sub-title {
    font-size: 0.9rem !important;
  }
}


/* Mobile-specific  */
@media (max-width: 768px) {
  .custom-control {
    width: 30px !important;
    height: 30px !important;
    border-radius: 6px !important;
    top: 70% !important;
  }

  .carousel-control-prev {
    left: 5px !important;
  }

  .carousel-control-next {
    right: 5px !important;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 16px !important;
    height: 16px !important;
    background-size: 100% 100% !important;
  }
}

  /* Text inside carousel */
  .carousel-caption h6.small-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
  .carousel-caption h2.main-title {
    font-size: 3.7rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  }
  
  .carousel-caption p.sub-title {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }
  
  /* Button inside carousel */
  .carousel-caption .btn {
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
  }
  


  .zoom-img {
    animation: zoomInSlow 5s ease-in-out infinite;
    transform-origin: center center;
  }
  
  @keyframes zoomInSlow {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
  }


/* Carousel controls custom design */
.custom-control {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 187, 255, 0.6);
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
  filter: drop-shadow(0 0 5px black);
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #24283E7D !important;
  z-index: 1;
}


  /* Fade-in-up animation for captions */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* START: PORTFOLIO  */
  #portfolio-counters .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #102e55;
}
#portfolio-counters .highlight {
    color: #0397d6; 
}
#portfolio-counters .section-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.counter-card {
    background: #fff;
    cursor: pointer;
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.counter-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(61, 144, 215, 0.3);
}
.counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c80036;
    line-height: 1;
}
.counter-label {
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 1.3rem;
    color: #555;
}
.counter-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 80px;
    height: auto;
    opacity: 0.8;
}
.counter-value .suffix {
    color: #c80036 !important;
}

.counter-value .count {
  color: #3D90D7; /* blue number */
}

/* ---------- Responsive Styling ---------- */
@media (max-width: 768px) {
  #portfolio-counters .section-title {
    font-size: 1.8rem !important;
    line-height: 1.4 !important;
  }

  #portfolio-counters .section-subtitle {
    font-size: 0.95rem !important;
    padding: 0 1rem !important;
  }

  .counter-card {
    padding: 1.5rem 1rem !important;
    margin-bottom: 1rem !important;
  }

  .counter-value {
    font-size: 2rem !important  ;
  }

  .counter-label {
    font-size: 1.1rem !important;
    line-height: 1.3;
  }

  .counter-icon {
    width: 60px !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
  }
}

@media (max-width: 480px) {
  .counter-value {
    font-size: 1.7rem;
  }

  .counter-label {
    font-size: 1rem;
  }

  #portfolio-counters .section-title {
    font-size: 1.6rem;
  }
}

/* END: PORTFOLIO  */

/* START: MARQUEE  */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: none;
}

.marquee-content {
  font-size: 60px;
  font-weight: 700;
  color: #FAB12F;
  display: inline-block;
  padding-right: 100px;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1px #0397d6;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Marquee Styling */
@media (max-width: 768px) {
  .marquee-content {
    font-size: 28px !important;
    padding-right: 50px !important;
  }

  .outline-text {
    -webkit-text-stroke: 0.8px #0397d6 !important;
  }
}

@media (max-width: 480px) {
  .marquee-content {
    font-size: 22px !important;
    padding-right: 30px !important;
  }

  .outline-text {
    -webkit-text-stroke: 0.6px #0397d6 !important;
  }
}

/* END: MARQUEE  */


/* START: ABOUT US  */
.underline-animation {
  position: relative;
  display: inline-block;
}

.underline-animation::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px; 
  height: 3px;
  background-color: #3D90D7;
  width: 0;
  border-radius: 20px;
  transition: width 4s ease;
}

.underline-animation.active::after {
  width: 100%;
}

.animate {
  animation: marquee 10s linear infinite;
}

@media (max-width: 768px) {
  .about-section .position-relative img.position-absolute {
    width: 45% !important;
    height: auto !important;
    bottom: -10px !important;
    right: -10px !important;
    border-width: 3px !important;
  }

  .about-section .col-lg-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .about-section h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .about-section h5 {
    font-size: 16px;
  }

  .about-section p,
  .about-section ul {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-section .read-more-btn span {
    font-size: 14px;
    padding: 6px 12px;
  }

  .text-end {
    text-align: right !important;
  }
}

/* END: ABOUT US  */


/* START: OUR SERVICES  */
.services {
  padding: 60px 20px;
  background-color: #F7F7F7;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.services-header h2 {
  font-size: 36px;
  color: #333;
  font-weight: 700;
}

#darkModeToggle {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #333;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

#darkModeToggle:hover {
  background: #555;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  
}

/* Service Cards */
.service-card {
  background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);
 
  backdrop-filter: blur(10px);
  padding: 40px 25px;
  text-align: center;
  border-radius: 20px;
  transition: all 0.5s ease, transform 0.6s ease;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
  transform: translateY(0);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(.19,1,.22,1);
  border-radius: 20px;
  z-index: -1;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  color: #000000;
}

.icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FAB12F;
}

.service-card p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-card a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  border: 2PX solid orange !important;
 background: transparent;
  color: #0397d6;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Button hover animation */
.service-card a::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0397d6, #00c3ff);
  z-index: -1;
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 30px;
}

.service-card a:hover::before {
  transform: scaleX(1);
}

.service-card a:hover {
  color: #fff;
}


/* Dark mode only applied to the service cards */
body.dark .service-card {
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark #darkModeToggle {
  background: #eee;
  color: #333;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  #darkModeToggle {
    top: 35px;
    right: 0;
    padding: 6px 10px;
    font-size: 12px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-card a {
    padding: 10px 18px;
    font-size: 14px;
  }

  .icon img {
    width: 70px;
    height: 70px;
  }
}

/* END: OUR SERVICES  */



/* START: REASON TO COUNT ON  */

.hover-effect {
  background: #EAFAEA !important;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px !important;
  transition: all 0.6s ease-in-out;
}

.hover-effect:hover {
  animation: float 1.5s ease-in-out infinite alternate;
  background-color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Floating wavy keyframes */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px) rotate(-10deg) scale(1.1);
  }
  100% {
    transform: translateY(0px);
  }
}

.hover-effect h5{
  color: #FAB12F !important;
}

/* Change color of p inside left-side cards */
.left-card-text-p {
  color: #27445D !important; 
  font-weight: 500;
}


/* Base Styling for Cards */
.left-card, .book-card {
  background-color: #fff; /* Solid white background */
  border-radius: 12px; /* Soft rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

/* Hover Effect */
.left-card:hover, .book-card:hover {
  transform: translateY(-5px); /* Slight lift effect */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Slight increase in shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

/* Text Color for Paragraphs */
.left-card-text-p {
  color: #333; /* Darker text color for better readability */
  transition: color 0.3s ease; /* Smooth color change */
}

/* Hover Effect for Text Color */
.left-card:hover .left-card-text-p {
  color: #0397d6; /* Blue text color on hover */
}

/* Card Title Styling */
.left-card h5 {
  color: #102e55; /* Deep blue for title */
  font-weight: 600;
  transition: color 0.3s ease; /* Smooth color change for title */
}

/* Hover Effect for Card Title */
.left-card:hover h5 {
  color: #0397d6; /* Blue color on hover */
}

/* Image Styling inside Cards */
.left-card img {
  transition: transform 0.3s ease; /* Smooth zoom effect */
}

/* Hover Effect for Image */
.left-card:hover img {
  transform: scale(1.1); /* Slight zoom effect on image */
}

/* Right card image custom height */
.right-image {
  width: 100%;

  object-fit: cover !important; /* Ensures the image covers the area without stretching */
  border-radius: 10px !important; /* Optional: Rounded corners for aesthetic */
}

/* Ensuring the right card content fits well */
.book-card {
  min-height: 600px; /* Ensure the card adjusts to the height of the image */
  display: flex;
  flex-direction: column;

  gap: 20px !important;
  background-image: linear-gradient(to top, #dfe9f3 0%, white 100%) !important;
}

/* Custom style for the <p> tag in the right card */
.right-heading-subtext {
  color: #0397d6;  /* Blue color */
  font-weight: 700;
  font-size: 18px;  /* Adjusted font size */
  letter-spacing: 1px;  /* Added spacing between letters */
  text-transform: uppercase;  /* Optional: Make text uppercase */
  margin-bottom: 10px;  /* Bottom margin for better spacing */
}

/* Custom style for the <h4> tag in the right card */
.right-heading-title {
  font-size: 28px;  /* Adjusted font size */
  color: #FAB12F;  /* Dark color for the title */
  letter-spacing: 1px;  /* Optional: Add spacing between letters */
 
  text-transform: capitalize;  /* Capitalize the first letter of each word */
}
/* Common Button Styling */
.btn-call, .btn-whatsapp {
  position: relative;
  display: inline-block;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 25px;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  margin: 8px 5px;
  transition: all 0.4s ease;
  width: auto;
  cursor: pointer;
}

/* Book Call Button */
.btn-call {
  color: #000;
  border: 2px solid #0397d6;
}

.btn-call::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background-color: #00c3ff;
  transition: all 0.4s ease;
  border-radius: 40%;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0);
}

.btn-call:hover {
  color: white;
  border-color: transparent;
}

.btn-call:hover::before {
  transform: translate(-50%, -50%) scale(1);
  border-radius: 0%;
}

/* WhatsApp Button */
.btn-whatsapp {
  color: #289d5c;
  border: 2px solid #289d5c;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background-color: #128c7e;
  transition: all 0.4s ease;
  border-radius: 40%;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0);
}

.btn-whatsapp:hover {
  color: white;
  border-color: transparent;
}

.btn-whatsapp:hover::before {
  transform: translate(-50%, -50%) scale(1);
  border-radius: 0%;
}

/* Container Centering */
.book-card {
  text-align: center;
}

/* RESPONSIVE FIXES */
@media (max-width: 991.98px) {
  .section-heading {
    font-size: 30px !important;
  }

  .left-card h5 {
    font-size: 16px;
  }

  .left-card-text-p {
    font-size: 14px;
  }

  .right-heading-title {
    font-size: 22px;
  }

  .right-heading-subtext {
    font-size: 14px;
  }

  .btn-call, .btn-whatsapp {
    width: 100%;
    margin: 6px 0;
    font-size: 13px;
  }

  .right-image {
    height: auto;
    max-height: 200px;
  }

  .book-card {
    min-height: auto;
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .section-heading {
    font-size: 26px !important;
  }

  .left-card {
    padding: 15px;
  }

  .left-card h5 {
    font-size: 15px;
  }

  .left-card-text-p {
    font-size: 13px;
  }

  .right-heading-title {
    font-size: 20px;
  }

  .right-heading-subtext {
    font-size: 13px;
  }

  .btn-call, .btn-whatsapp {
    font-size: 12px;
  }

  .book-card {
    padding: 20px;
    gap: 15px;
  }

  .right-image {
    max-height: 180px;
  }
}

@media (max-width: 575.98px) {
  .section-heading {
    font-size: 20px !important;
    line-height: 1.3;
  }

  .left-card {
    padding: 12px !important;
  }

  .left-card h5 {
    font-size: 14px;
  }

  .left-card-text-p {
    font-size: 12px;
  }

  .right-heading-title {
    font-size: 18px;
  }

  .right-heading-subtext {
    font-size: 19px;
  }

  .right-image {
    max-height: 150px;
  }

  .btn-call, .btn-whatsapp {
    font-size: 11px;
    padding: 6px 14px;
  }

  .book-card {
    min-height: auto;
    padding: 16px;
    gap: 12px;
  }
}


/* START: FINANCIAL SERVICES  */

.card {
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #F8FAFC !important;
}

.card img {
  height: 200px !important;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-title {
  font-size: 20px;
  font-weight: 700 !important;
  margin-top: 10px;
  color: #0397d6;
}

.card-text {
  font-size: 15px;
  color: #000000;
}

.read-more-btn {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 17px !important;
  color: #c80036;
  background-color: transparent;
  border: 2px solid #3D90D7;
  border-radius: 50px;
  overflow: hidden;
  z-index: 0;
  transition: color 0.4s ease;
}

.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: #3D90D7;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(.19,1,.22,1);
  border-radius: 50px;
  z-index: -1;
}

.read-more-btn:hover {
  color: #fff;
}

.read-more-btn:hover::before {
  transform: scaleX(1);
  animation: liquid-blob 0.6s ease;
}

.carousel-control-prev, .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(61, 144, 215, 0.7);
  border-radius: 50%;
  transition: all 0.4s ease;
  opacity: 0.9;
  z-index: 5;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
  background-color: #3D90D7;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 10px #3D90D7;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  filter: invert(1);
  width: 30px;
  height: 30px;
}

@media (max-width: 767.98px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  .card-title {
    font-size: 18px;
  }
  .card-text {
    font-size: 14px;
  }
  .read-more-btn {
    padding: 0.4rem 1.2rem;
    font-size: 14px !important;
  }
}

/* START:FOOTER  */

.footer {
  background: #A2B9A7;
  color: #ffffff;
  font-weight: 700;
  padding: 50px 100px 10px;
  font-family: "Poppins", sans-serif; /* Pehle 30px tha neeche, ab 10px kar diya */

}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
}

.footer-col h3, .footer-col h4 {
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
 font-weight: 700;
 font-size: 22px;
  
}

.footer-col p {
  font-size: 14px;
  line-height: 2;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
  margin-left: 16px;
}

.footer-col ul li a {
  color: #1E0342;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #00c3ff;
}

.social-icons a {
  display: inline-block;
  margin-right: 1px;
  font-size: 18px;
  color: #ccc;
  
  padding: 1px;
  border-radius: 40%;
  transition: all 0.3s ease;
}


.social-icons img {
  width: 30px;  /* ya 25px agar aur chota chahiye */
  height: 30px;
  object-fit: contain;
  margin: 0 8px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2); /* Hover karte time halka zoom effect */
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: #FEFAF6;
  border: none;
  border-radius: 8px;
  color: #ccc;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #00c3ff, #0397d6);
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #0397d6, #00c3ff);
}


.footer-bottom {
  text-align: center;
  margin-top: 20px; /* Pehle 30px tha, ab 20px */
  font-size: 15px;
  color: #777;
  border-top: 1px solid #ffffff;
  padding-top: 10px; /* Pehle 20px tha, ab 10px */
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer {
    padding: 40px 50px 10px;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .footer-col p,
  .footer-col ul li a {
    font-size: 14px;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
  }
  .contact-form button {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* Center everything in its single column */
  .footer-container {
    text-align: center;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Shrink & center logo */
  .footer-col:first-child img {
    max-width: 120px;
    height: auto;
    margin-bottom: 10px;
  }
  .footer-col:first-child p {
    margin-bottom: 20px;
    line-height: 1.6;
  }

  /* Remove left‑margin from lists and center links */
  .footer-col ul {
    padding: 0;
    margin: 0 0 20px;
  }
  .footer-col ul li {
    margin: 8px 0;
    margin-left: 0;
  }
  .footer-col ul li a {
    display: inline-block;
  }

  /* Center social icons & tighten spacing */
  .social-icons {
    justify-content: center;
    margin-bottom: 20px;
  }
  .social-icons img {
    margin: 0 6px;
  }

  /* Narrow form inputs & button */
  .contact-form {
    width: 90%;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    margin: 6px 0;
  }

  /* Footer bottom text */
  .footer-bottom {
    font-size: 13px;
    padding-top: 8px;
  }
}
/* END:FOOTER  */



/* START: CONTACT US PAGE  */

/* ==== Hero Section with Parallax ===== */
.hero-section {
  height: 60vh;
  background-image: url('/assets/image/contact22.jpeg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ===== Green Underline for Headings ===== */
.green-line {
  width: 80px;
  height: 4px;
  background-color: #3d90d7;
  margin: 10px 0 30px;
  border-radius: 50px;
}


/* ===== Contact Form Styling ===== */
form .form-control {
  border-radius: 10px;
  border: 1px solid #5f6366;
  padding: 12px 15px;
  font-size: 1rem;
}

form .form-control:focus {
  border-color: #0397d6;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* ===== Transparent Water Wave Button Styling ===== */
.submit-btn {
  position: relative;
  overflow: hidden;
  background: transparent !important; /* Almost fully transparent */
  border: 2px solid #0397d6; /* Red border */
  padding: 15px 30px;
  color: #0397d6;
  font-size: 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1;
  backdrop-filter: blur(1px) !important; /* Glassy blur */
}

/* Red moving wave inside */
.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 120 28" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 Q 30 28 60 0 T 120 0 V28 H0 Z" fill="%23e63946" opacity="0.6"/></svg>') repeat-x;
  background-size: cover;
  animation: waveMove 4s linear infinite;
  z-index: 0;
  opacity: 0.8;
}

/* Button text above wave */
.submit-btn span {
  position: relative;
  z-index: 2;
}

/* Animation normal */
@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* On hover - wave moves faster */
.submit-btn:hover::before {
  animation: waveMoveFast 3s linear infinite;
}

@keyframes waveMoveFast {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ===== Right Side Contact Info ===== */
.contact-section-right {
  background-color: #F5F7F8;
  border-radius: 15px;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.contact-info {
  margin-bottom: 25px;
}

.contact-info i {
  font-size: 1.2rem;
  color: #28a745;
}

.contact-info p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

/* ===== Map Styling ===== */
.map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  margin-top: -5px;
}

/* Mobile specific font size for hero text */
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }

  .hero-overlay h1 {
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 0 10px;
    margin-top: 60px;
  }
}

@media (max-width: 480px) {
  .hero-overlay h1 {
    font-size: 1.8rem;
  }
}
/* END:CONTACT US PAGE  */


/* START: CAREER US  */

.parallax-hero {
  background-color: black; /* Initial black background */
  position: relative;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.parallax-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('/assets/image/austin-distel-wD1LRb9OeEo-unsplash.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
  opacity: 1;

  /* Default: enable parallax */
  background-attachment: fixed;
}

/* ✅ iOS fallback: disable parallax for image clarity */
@supports (-webkit-touch-callout: none) {
  .parallax-hero::after {
    background-attachment: scroll !important;
  }
}

/* Dark overlay above image */
.parallax-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Content on top of everything */
.parallax-hero .container {
  position: relative;
  z-index: 2;
}

/* Text styling */
.parallax-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #A2B9A7;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.parallax-hero p {
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  color: #F8F8E1;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Underline animation on h1 */
.parallax-hero h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background-color: #ffffff;
  opacity: 0;
  animation: underlineIn 1s ease-in-out 1.5s forwards;

}

/* Background image animation */
@keyframes fadeInBg {
  to {
    opacity: 1;
  }
}

/* Underline animation */
@keyframes underlineIn {
  to {
    opacity: 1;
    width: 60%;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .parallax-hero {
    background-attachment: scroll;
    height: 70vh;
  }

  .parallax-hero h1 {
    font-size: 2.2rem;
  }

  .parallax-hero p {
    font-size: 1rem;
  }
}



.join-team-section {
  background-color: #f5f5f5;
  font-family: 'Segoe UI', Roboto, sans-serif;
  color: #333;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #3674B5;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FAB12F;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #09122C;
  margin-bottom: 2rem;
  font-weight: 600;
}

.join-team-section p {
  font-size: 1.05rem;
  line-height:  2.3;
  margin-bottom: 1.5rem;
  color: #000957;
  font-weight: 500;
}

.btn-outline-primary {
  border: 2px solid #007bff;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}


.apply-section {
  background: linear-gradient(135deg, #f0f4f8, #e8f0fe);
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  padding: 60px 0;
}

.careercard {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px !important;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careercard:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.careercard h2 {
  font-weight: 700;
  font-size: 2.4rem;
  color: #FAB12F;
  text-align: center;
  position: relative;
}

.careercard h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #0d6efd;
  margin: 16px auto 0;
  border-radius: 3px;
}

.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.95rem;
  border: 1px solid #FAB12F !important;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #0397d6 !important;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* For WebKit browsers (Chrome, Edge, Safari) */
input[type="file"]::-webkit-file-upload-button {
  color: rgb(255, 255, 255);              /* Text color */
  background-color: #0397d6;    /* Background */
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* For Firefox */
input[type="file"]::file-selector-button {
  color: rgb(255, 255, 255);
  background-color: #0397d6;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #084cd3;
  border-color: #084cd3;
}



/* Label text blue */
.apply-section .form-label {
  color: #007bff; /* Bootstrap blue or use your own shade */
  font-weight: 600;
}

/* END CAREER US  */


/* START: WHO ARE WE  */
.who-we-are-hero {
  position: relative;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-color: black; /*  Black fallback background */
}

/* Background image fade-in */
.who-we-are-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('/assets/image/cara2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  z-index: 0;
  animation: fadeInBg 1.5s ease-in-out 1.5s forwards;
}

/* ✅ iOS background-attachment fix */
@supports (-webkit-touch-callout: none) {
  .auditadvisory-parallax-section {
    background-attachment: scroll !important;
  }
}

/* Overlay */
.who-we-are-hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #24283E7D;
  z-index: 1;
}

/* Content above background */
.who-we-are-hero .text-content {
  z-index: 2;
  padding: 0 20px;
}

/* KEYBOARD styles */
.keyboard {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 6vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  letter-spacing: 0.25vw;
  position: relative;
  color: #aba2b9;
}

/* Underline animation */
.underline-effect::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40% !important;
  height: 4px;
  background-color: #ffffff;
  opacity: 0;
  animation: underlineIn 1s ease-in-out 3s forwards;
}

/* Animated keys */
.key {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

/* Key animations (same as before) */
@keyframes pressDown1 { 30%, 40%, 100% { transform: translateY(0); } 35% { transform: translateY(10px); } }
@keyframes pressDown2 { 70%, 80%, 100% { transform: translateY(0); } 75% { transform: translateY(10px); } }
@keyframes pressDown3 { 30%, 40%, 100% { transform: translateY(0); } 35% { transform: translateY(10px); } }
@keyframes pressDown4 { 40%, 50%, 100% { transform: translateY(0); } 45% { transform: translateY(10px); } }
@keyframes pressDown5 { 20%, 30%, 100% { transform: translateY(0); } 25% { transform: translateY(10px); } }
@keyframes pressDown6 { 60%, 70%, 100% { transform: translateY(0); } 65% { transform: translateY(10px); } }
@keyframes pressDown7 { 10%, 20%, 100% { transform: translateY(0); } 15% { transform: translateY(10px); } }
@keyframes pressDown8 { 35%, 45%, 100% { transform: translateY(0); } 40% { transform: translateY(10px); } }
@keyframes pressDown9 { 20%, 30%, 100% { transform: translateY(0); } 25% { transform: translateY(10px); } }
@keyframes pressDown10 { 50%, 60%, 100% { transform: translateY(0); } 55% { transform: translateY(10px); } }

/* Assign animations */
.key:nth-child(1)  { animation: pressDown1 2s infinite; }
.key:nth-child(2)  { animation: pressDown2 2.4s infinite; }
.key:nth-child(3)  { animation: pressDown3 2.6s infinite; }
.key:nth-child(4)  { animation: none; } /* space */
.key:nth-child(5)  { animation: pressDown4 2.2s infinite; }
.key:nth-child(6)  { animation: pressDown5 2.5s infinite; }
.key:nth-child(7)  { animation: pressDown6 2.8s infinite; }
.key:nth-child(8)  { animation: none; } /* space */
.key:nth-child(9)  { animation: pressDown7 2.1s infinite; }
.key:nth-child(10) { animation: pressDown8 2.3s infinite; }

/* Paragraph style */
.who-we-are-hero p {
  margin-top: 20px;
  font-size: 1.2rem;
  max-width: 900px;
  color: #F8F8E1;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Animations */
@keyframes fadeInBg {
  to {
    opacity: 1;
  }
}

@keyframes underlineIn {
  to {
    opacity: 1;
    width: 40%; /* 👈 match the final width */
  }
}


/* Responsive */
@media (max-width: 768px) {
  .keyboard {
    font-size: 3rem;
  }
}

/* Container to center everything */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading Style */
.cards-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 80px;
  color: #0397d6;
}

/* Card Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  cursor: pointer;
}

/* Cards Section */
.who-we-are-cards {
  padding: 80px 20px;
  background: #FBFBFB;
  position: relative;
  z-index: 3;
}
.who-we-are-card {
  background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 300px;
  padding: 60px 20px 30px;
  text-align: center;
  position: relative;
  overflow: visible;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: cardFadeIn 0.8s ease-in-out both;
}


.who-we-are-card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
  background: #fff !important;
}

/* Card Image */
.who-we-are-card img {
  width: 80px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Card Heading */
.who-we-are-card h3 {
  margin-top: 30px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0397d6;
}


/* Card Description */
.who-we-are-card p {
  font-size: 1rem;
  font-weight: 500;
  color: #09122C;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.yell{
  color: #FAB12F;  
}


.card-bg-1 {
  background: linear-gradient(to top, #e3f2fd, #ffffff); /* Light Blue */
}

.card-bg-2 {
  background: linear-gradient(to top, #f3e5f5, #ffffff); /* Light Purple */
}

.card-bg-3 {
  background: linear-gradient(to top, #fff8e1, #ffffff); /* Light Yellow */
}

.card-bg-4 {
  background: linear-gradient(to top, #e8f5e9, #ffffff); /* Light Green */
}

.card-bg-5 {
  background: linear-gradient(to top, #fce4ec, #ffffff); /* Light Pink */
}

.card-bg-6 {
  background: linear-gradient(to top, #ede7f6, #ffffff); /* Light Lavender */
}


/* who are we  */

.cm-why-section {

  background: #fff;
  padding: 60px 0;
}

.cm-why-title span {
  display: inline-block;
  background-color: #dff6f3;
  color: #035e5e;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cm-why-title h2 {
  font-weight: bold;
  
}

.cm-why-counter-box {
  background: #f7fdfc;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.cm-why-counter-box h3 {
  color: #035e5e;
  font-weight: bold;
}

.cm-why-counter-box p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.cm-why-feature {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.cm-why-feature i {
  font-size: 28px;
  color: #019688;
  background: #e3f9f7;
  padding: 12px;
  border-radius: 12px;
  margin-right: 15px;
}

.cm-why-years-box {
  background-color: #019688;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.cm-why-years-box h3 {
  margin: 0;
  font-size: 2rem;
}

.cm-why-years-box p {
  margin: 0;
  font-size: 14px;
}


.counter-number {
  color: #007bff; 
  font-weight: 800;
}

.counter-symbol {
  color: #e63946; 
  font-weight: 800;
}

 
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
  }
 

  .transparent-button {
    position: relative;
    display: inline-block;
    background-color: transparent;
    border: 3px solid #0397d6;
    color: #FAB12F;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  }
  
  /* Glow + Pulse + Shake on Hover */
  .transparent-button:hover {
    background-color: #0397d6;
    color: #ffffff;
    transform: scale(1.15) rotate(-2deg);
    box-shadow:
      0 0 10px rgba(16,46,80,0.7),
      0 0 20px rgba(16,46,80,0.5),
      inset 0 0 5px rgba(255,255,255,0.6);
    animation: pulse 0.8s ease-in-out infinite alternate, shake 0.3s ease-in-out 1;
  }
  
  /* Shiny Sweep */
  .transparent-button::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -75%;
    width: 50%;
    height: 250%;
    background: #FAB12F;
    transform: rotate(25deg);
    transition: all 0.7s ease-in-out;
  }
  
  .transparent-button:hover::before {
    top: -50%;
    left: 150%;
  }
  
  /* Keyframes */
  @keyframes pulse {
    from { box-shadow: 0 0 10px rgba(16,46,80,0.7), 0 0 20px rgba(16,46,80,0.5); }
    to   { box-shadow: 0 0 20px rgba(16,46,80,1), 0 0 30px rgba(16,46,80,0.8); }
  }
  
  @keyframes shake {
    0%, 100% { transform: scale(1.15) rotate(-2deg); }
    20%, 60%  { transform: scale(1.17) rotate(2deg); }
    40%, 80%  { transform: scale(1.13) rotate(-1deg); }
  }
  
 /* 2. Parallax Hero Section */
 .sfs-vm-section {
  background-image: url('/assets/image/lycs-architecture-U2BI3GMnSSE-unsplash.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.sfs-vm-overlay {
  background: #24283E7D;
  width: 100%;
  height: 100%;
  padding: 110px 0;
}

/* (Optional) Text styling */
.sfs-vm-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.sfs-vm-section p {
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  font-weight: 600;
  color: #F3F3E0;
  align-items: center;
}



.sfs-investment-section {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  min-height: 400px;
  max-height: 800px;
}

.sfs-investment-text {
  z-index: 2;
}

.sfs-investment-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 6rem;
}

.sfs-investment-text p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}

.sfs-investment-image-wrapper {
  position: relative;
  width: 90%;
  height: 400px;
  overflow: hidden;
  margin-top: 50px;
}

.sfs-investment-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sfs-investment-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.5));
  z-index: 1;
}

.sfs-paragraph-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 20px;
  text-align: center;
}


/* START: AUDIT AND ADVISORY SERVICES  */

/* -----------------------------------
   Responsive breakpoints
   ----------------------------------- */
   @media (min-width: 600px) {
    .auditAdvisory2025_grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 768px) {
    .audit-advisory-section {
      flex-direction: row;        /* side-by-side on tablets+ */
    }
    .audit-content,
    .advisory-list {
      flex: 1;
      max-width: 50%;
    }
    .auditadvisory-heading {
      font-size: 6vw;            /* shrink heading a bit on larger */
    }
    
  }
  
  @media (min-width: 992px) {
    .auditAdvisory2025_grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (min-width: 1200px) {
    .audit-advisory-section,
    .auditAdvisory2025_section,
    .advi_section {
      padding: 4rem 2rem;
    }
    .auditAdvisory2025_title {
      font-size: 2.5rem;
    }
    .advi_title {
      font-size: 2.25rem;
    }
  }

  @media (max-width: 600px) {
    .audit-key {
      letter-spacing: normal;
      font-size: 37px;
    }
  }
  

  .audit-line {
    display: flex;
    flex-wrap: nowrap;
  }
  
  @media (max-width: 600px) {
    .auditadvisory-heading {
      flex-direction: column; /* Stack vertically on small screens */
      font-size: 8vw !important;
      align-items: center;
      letter-spacing: 2vw !important;
    }

    .auditadvisory-parallax-section {
      height: 70vh !important; /* Reduce height on mobile */
      background-attachment: scroll; /* Disable fixed parallax for mobile (performance + better UX) */
    }


  
    .audit-line-audit,
    .audit-line-advisory {
      justify-content: center;
    }
  }

/* ✅ iOS background-attachment fix */
@supports (-webkit-touch-callout: none) {
  .auditadvisory-parallax-section {
    background-attachment: scroll !important;
  }
}


  .auditadvisory-heading {
    font-size: 6vw;
    font-weight: 900;
    font-family: "Poppins", sans-serif;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
  }
  
  .audit-key {
    display: inline-block;
  }
  
  /* Custom colors per letter */
  .audit-a { color: #B4EBE6 !important; }
  .audit-d { color: #FFD95F !important; }
  .audit-t { color: #C7DB9C !important; }
  .audit-a2 { color: #B4EBE6 !important; }
  .audit-v { color: #FFD95F  !important; }
  .audit-s { color: #C7DB9C !important; }
  .audit-y { color: #B7B1F2 !important; }

  /* Hide line break by default (desktop view) */
  .mobile-break {
    display: none;
  }
  
  /* Show line break on small screens */
  @media (max-width: 600px) {
    .auditadvisory-heading {
      font-size: 9vw;
      white-space: normal;
    }
  
    .mobile-break {
      display: block;
    }
  }
  
  
  .auditadvisory-parallax-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
  }
  
  .parallax-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    height: 120%;
    width: 100%;
    background-image: url('/assets/image/audit1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    transition: transform 0.2s ease-out;
    will-change: transform;
  }
  
  .auditadvisory-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #24283E7D;
    z-index: 1;
  }
  
  .auditadvisory-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  
  .auditadvisory-heading {
    font-size: 6vw;
    font-weight: 900;
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
    white-space: nowrap;
  }
  
  .audit-key {
    display: inline-block;
    letter-spacing: -1.7vw;
    color: #fff;
    animation: bounceBase 2s infinite;
  }
  
  .mobile-break {
    display: none;
  }

  @media (max-width: 600px) {
    .auditadvisory-heading {
      font-size: 9vw;
      white-space: normal;
      letter-spacing: 2vw;
      flex-direction: column;
      align-items: center;
    }
    .mobile-break {
      display: block;
    }
    .audit-key {
      font-size: 37px;
      letter-spacing: normal;
    }
  }

.audit-key {
  display: inline-block;
  letter-spacing: -1.7vw;
  transition: transform 0.2s;
  animation: bounceBase 2s infinite;
  color: #fff;
}

/* Bounce keyframes with delay per key */
@keyframes bounceBase {
  30%, 40%, 100% { transform: translateY(0); }
  35% { transform: translateY(10px); }
}

.audit-key:nth-child(1)  { animation-delay: 0s; }
.audit-key:nth-child(2)  { animation-delay: 0.1s; }
.audit-key:nth-child(3)  { animation-delay: 0.2s; }
.audit-key:nth-child(4)  { animation-delay: 0.3s; }
.audit-key:nth-child(5)  { animation-delay: 0.4s; }
.audit-key:nth-child(6)  { animation-delay: 0.5s; }
.audit-key:nth-child(7)  { animation-delay: 0.6s; }
.audit-key:nth-child(8)  { animation-delay: 0.7s; }
.audit-key:nth-child(9)  { animation-delay: 0.8s; }
.audit-key:nth-child(10) { animation-delay: 0.9s; }
.audit-key:nth-child(11) { animation-delay: 1s; }
.audit-key:nth-child(12) { animation-delay: 1.1s; }
.audit-key:nth-child(13) { animation-delay: 1.2s; }
.audit-key:nth-child(14) { animation-delay: 1.3s; }
.audit-key:nth-child(15) { animation-delay: 1.4s; }
.audit-key:nth-child(16) { animation-delay: 1.5s; }

.auditadvisory-tagline {
  font-size: clamp(1rem, 3vw, 1.5rem);  /* responsive font size */
  color: #f0f0f0;
  font-style: italic;
  margin-top: 20px;
  line-height: 1.4;
  padding: 0 1rem;  /* add horizontal padding for smaller screens */
  word-break: keep-word;  /* Or use normal */
  text-align: center;
}


/* Initial black screen then fade image in */
@keyframes fadeImageIn {
  0% {
    filter: brightness(0);
  }
  100% {
    filter: brightness(1);
  }
}

.audit-advisory-section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  gap: 20px;
  justify-content: center;
  background-color: #f9f9f9;
}

.audit-content,
.advisory-list {
  flex: 1 1 400px;
  padding: 20px;
}

.audit-content {
  max-width: 600px;
}

.advisory-list {
  background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 500px;
  padding: 20px;
  border-radius: 10px;
}

.advisory-list ul {
  list-style-type: disc;
  padding-left: 20px;
}

.advisory-list li {
  margin: 10px 0;
  font-size: 1rem;
  font-weight: 600;
}

.audit-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0397d6;
  

}

.audit-content p {
  line-height: 1.6;
  font-weight: 700;
}

@media (max-width: 768px) {
  .audit-advisory-section {
    flex-direction: column;
    align-items: center;
  }

  .audit-content,
  .advisory-list {
    max-width: 100%;
  }
}

.auditAdvisory2025_section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.auditAdvisory2025_title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #183B4E;
  text-transform: uppercase;
  font-weight: 700;
}

.auditAdvisory2025_description {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 600;
}

.auditAdvisory2025_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.auditAdvisory2025_card {
 background: #FDFAF6;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  padding: 25px;
  max-width: 320px;
  cursor: pointer;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auditAdvisory2025_card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
background: #fff;
}

.auditAdvisory2025_cardTitle {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1DCD9F;
}

.auditAdvisory2025_cardTitle span {
  color: #FEBA17;
  font-size: 1.5rem;
  margin-right: 10px;
}

.auditAdvisory2025_cardText {
  color: #09122C;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 992px) {
  .auditAdvisory2025_card {
    flex: 1 1 calc(45% - 30px);
  }
}

@media (max-width: 600px) {
  .auditAdvisory2025_card {
    flex: 1 1 100%;
  }
}


.advi_section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.advi_title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.advi_description {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 40px;
}

.advi_card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  margin-bottom: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advi_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.advi_cardInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.advi_cardLeft {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 250px;
}

.advi_cardNumber {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2980b9;
}

.advi_cardHeading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
}

.advi_cardRight {
  flex: 2;
  font-size: 1rem;
  color: #34495e;
  text-align: right;
  min-width: 250px;
}

@media (max-width: 768px) {
  .advi_cardInner {
    flex-direction: column;
    align-items: flex-start;
  }

  .advi_cardRight {
    text-align: left;
    margin-top: 10px;
  }
}

/* END: AUDIT  */


.invest-section {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  min-height: 400px;
  max-height: 800px;
}

.invest-text-block {
  z-index: 2;
}

.invest-heading {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 6rem;
  font-weight: 700;
  color: #0397d6;
}

.invest-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}

.invest-image-wrapper {
  position: relative;
  width: 90%;
  height: 400px;
  overflow: hidden;
  margin-top: 50px;
}

.invest-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.invest-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.5));
  z-index: 1;
}




.unique-banner-section {
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.custom-background {
  background-image: url('/assets/image/audit\ adv.avif');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.custom-overlay {
  background: #24283E7D;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

body.loaded .custom-background,
body.loaded .custom-overlay {
  opacity: 1;
}

.animated-heading {
  position: relative;
  display: inline-block;
  animation: bounceText 2s infinite;
}

@keyframes bounceText {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .unique-banner-section h1 {
    font-size: 2rem;
  }

  .unique-banner-section p {
    font-size: 1.1rem;
  }

  .btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

