/*

Hydro Template 

http://www.templatemo.com/tm-509-hydro

*/
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600');

@font-face {
  font-family: "cpac";
  src: url("../../css/fonts/CPAC Modern/CPAC Modern Medium.ttf");
}

/* FC Iconic Font Family */
@font-face {
  font-family: "FC Iconic";
  src: url("../../css/fonts/FC Iconic Superfamily/FCIconic[Non-commercial]-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "FC Iconic";
  src: url("../../css/fonts/FC Iconic Superfamily/FCIconic[Non-commercial]-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "FC Iconic Wide";
  src: url("../../css/fonts/FC Iconic Superfamily/FCIconic[Non-commercial]-BoldWide.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "FC Iconic Expanded";
  src: url("../../css/fonts/FC Iconic Superfamily/FCIconic[Non-commercial]-BoldExpanded.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "FC Iconic Condensed";
  src: url("../../css/fonts/FC Iconic Superfamily/FCIconic[Non-commercial]-BoldCondensed.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "FC Iconic Compressed";
  src: url("../../css/fonts/FC Iconic Superfamily/FCIconic[Non-commercial]-BoldCompressed.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

/* FC Iconic Font Utility Classes */
.font-iconic {
  font-family: "FC Iconic", sans-serif;
}

.font-iconic-light {
  font-family: "FC Iconic", sans-serif;
  font-weight: 300;
}

.font-iconic-bold {
  font-family: "FC Iconic", sans-serif;
  font-weight: 700;
}

.font-iconic-wide {
  font-family: "FC Iconic Wide", sans-serif;
  font-weight: 700;
}

.font-iconic-expanded {
  font-family: "FC Iconic Expanded", sans-serif;
  font-weight: 700;
}

.font-iconic-condensed {
  font-family: "FC Iconic Condensed", sans-serif;
  font-weight: 700;
}

.font-iconic-compressed {
  font-family: "FC Iconic Compressed", sans-serif;
  font-weight: 700;
}


body {
  background: #ffffff;
  font-family: 'cpac', 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Smooth scroll behavior - Disabled by default, enabled only during programmatic scroll */
html {
  scroll-behavior: auto; /* Changed to auto to prevent conflicts */
}

/* Professional Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Page Load Animations */
.page-load-animate {
  opacity: 0;
  animation-fill-mode: both;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-zoom-in {
  animation: zoomIn 0.6s ease-out forwards;
}

/* Staggered Animation Delays */
.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}

.animate-delay-6 {
  animation-delay: 0.6s;
}

/* Smooth fade-in for page content */
body.loaded {
  animation: fadeIn 0.5s ease-out;
}

/* Navbar Animation */
.custom-navbar {
  animation: fadeInDown 0.6s ease-out;
}

/* Home Section Initial Animation */
#home .home-info {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

#home h1,
#home h2 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

#home p {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

#home .section-btn {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Section Entrance Animations */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Card Hover Effects */
.card,
.info-card,
.service-card,
.mission-card,
.profile-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.card.animate-in,
.info-card.animate-in,
.service-card.animate-in,
.mission-card.animate-in,
.profile-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out forwards;
}

.card:hover,
.info-card:hover,
.service-card:hover,
.mission-card:hover,
.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Smooth Transitions for Interactive Elements */
a, button, .section-btn {
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Image Loading Animation */
img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img.loaded {
  opacity: 1;
}

/* Professional Button Effects */
.section-btn {
  position: relative;
  overflow: hidden;
}

.section-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.8s ease-out, height 0.8s ease-out;
}

.section-btn:hover::before {
  width: 300px;
  height: 300px;
}


/*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: inherit;
  letter-spacing: 0.5px;
}

h1 {
  color: #292929;
  font-size: 3em;
  margin-bottom: 30px;
  font-weight: bold;
}

h2 {
  color: #393939;
  font-size: 2em;
}

h3 {
  color: #505050;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 0;
}

h4 {
  color: #696969;
  font-size: 18px;
  line-height: normal;
}

p {
  color: #757575;
  font-size: 14px;
  font-weight: normal;
  line-height: 25px;
  letter-spacing: 0.5px;
}

strong {
  font-weight: bold;
}

.homebtn {
  font-weight: bold !important;
  letter-spacing: 0.5pt !important;
  font-size: 12pt !important;
}

/*---------------------------------------
     GENERAL               
  -----------------------------------------*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #252525;
  font-weight: normal;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}

.text-dark{
  color: #092B2D;
}

a:hover,
a:active,
a:focus {
  color: #1e94d2;
  outline: none;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.section-title .line-bar {
  color: #d9d9d9;
  display: block;
  font-size: 5em;
  line-height: 0;
}

.section-title.text-video {
  text-align: left;
  color: white;
  margin-bottom: 20px;
}

.section-title.text-video h2 {
  color: white;
}

.section-title.text-video .line-bar {
  margin-bottom: 50px;
}

.section-btn {
  /* background: #09141f; */
  border: 0;
  border-radius: 100px;
  color: #ffffff;
  cursor: pointer;
  font-size: 15pt;
  font-weight: normal;
  padding: 15px 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.section-btn:hover,
.section-btn:focus {
  background: #52F9FF;
  border-color: transparent;
  color: #092B2D;
}

.overlay {
  background: #00F260;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #00F260, #0575E6);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #00F260, #0575E6);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: -50%;
  transform: skew(-15deg);
}

.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: whitesmoke;
  z-index: -1;
  overflow: hidden; /* Prevent positioning issues */
  pointer-events: none; /* Prevent interaction issues */
}

/* Heem design slide index page */
#announcement {
  position: absolute;
  bottom: 70%;
  width: 50%;
  left: 38%;
  transform: translateX(-50%);
  border-radius: 5px;
  display: none;
  z-index: 1;
}

.video-slider {
  display: block;
  overflow: hidden; 
  height: 100%;
  position: relative;
  width: 100%;
  min-height: 100%;
}

.full-slide-image {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: subtleBreath 8s ease-in-out infinite;
  display: block;
  z-index: 0;
}

/* Lighting Overlay - Animated Gradient */
.lighting-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(82, 249, 255, 0.1) 0%,
    rgba(30, 148, 210, 0.15) 25%,
    rgba(9, 43, 45, 0.1) 50%,
    rgba(30, 148, 210, 0.15) 75%,
    rgba(82, 249, 255, 0.1) 100%
  );
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
  will-change: background-position;
}

/* Chase Light Effect */
.chase-light {
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(82, 249, 255, 0.4) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
  transform: skewX(-20deg);
  filter: blur(40px);
}

.chase-light-1 {
  left: -100%;
  animation: chaseLight 6s ease-in-out infinite;
}

.chase-light-2 {
  left: -100%;
  animation: chaseLight 8s ease-in-out infinite 2s;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(30, 148, 210, 0.3) 50%,
    transparent 100%
  );
  width: 25%;
  filter: blur(30px);
}

/* Subtle breathing animation for the image */
@keyframes subtleBreath {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.02);
    filter: brightness(1.05);
  }
}

/* Gradient shift animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Chase light animation */
@keyframes chaseLight {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.video-slide {
  flex: 0 0 100%;
  transition: transform 0.5s ease-in-out;
  display: flex;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video-slider-controls button{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  background-color: transparent;
  border: none;
  color: white;
  cursor: pointer;
  outline: none;
}

.prev-slide {
  left: 20px;
}

.next-slide {
  right: 20px;
}

/* end */

section {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}


/* card */
.card {
  min-height: 300px;
}
.card-custom {
  border-radius: 12px;
  background-color: #eaf6ed;
  padding: 24px;             
  height: 100%;       
  margin-bottom: 10px; 
}

.card-custom h5 {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 15px;  
  font-size: 22px;
}

.card-custom h5 span {
  font-size: 28px;
  margin-right: 12px;    
}

.card-custom p {
  font-size: 16px;
  line-height: 1.6;    
  margin: 0;                  
  text-align: start;
}


.cloud-scroll-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -110px;    /* pull cloud up a bit between home & services */
  margin-bottom: 0px; /* reduce gap before services */
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0s 0.8s;
}

.cloud-scroll-wrapper.loaded {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cloud-scroll-image {
  width: 220px;
  max-width: 220px;     /* adjust size of cloud */
  height: auto;
  display: block;
}

.cloud-scroll-text {
  position: absolute;
  margin-top: 60px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #1f2933;       /* dark grey, change if needed */
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out;
}

.cloud-scroll-text span {
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

.cloud-scroll-text i {
  margin-top: 6px;
  font-size: 26px;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

/* Cloud scroll text animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex !important;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
  opacity: 1;
  visibility: visible;
}

.spinner {
  border: 1px solid transparent;
  border-radius: 3px;
  position: relative;
  width: 50px;
  height: 50px;
  display: block;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -22.5px;
  margin-left: -22.5px;
  border-radius: 50%;
  border: 3px solid #575757;
  border-top-color: #1e94d2;
  animation: spinner .9s linear infinite;
}

.spinner-rotate {
  display: block;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
      MENU              
  -----------------------------------------*/

.custom-navbar {
  border: none;
  margin-bottom: 0;
  padding: 12px 0;
  transition: background 150ms linear;
}

.custom-navbar .navbar-brand {
  color: #ffffff;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.top-nav-collapse {
  background: #092B2D !important;
}

.custom-navbar .navbar-nav.navbar-nav-first {
  margin-left: 8em;
}

.custom-navbar .navbar-nav.navbar-right li a {
  padding-right: 12px;
  padding-left: 12px;
}

.custom-navbar .section-btn {
  padding: 15px;
  margin-left: 2em;
}

.custom-navbar .section-btn:hover {
  background: #52F9FF;
}

.custom-navbar .section-btn a {
  padding: 0;
}

.custom-navbar .nav .section-btn a:hover {
  color: #ffffff;
}

.custom-navbar .nav li a {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 1px;
  padding-right: 22px;
  padding-left: 22px;
}

.custom-navbar .nav li a:hover {
  background: transparent;
  color: #52F9FF;
}

.custom-navbar .navbar-nav>li>a:hover,
.custom-navbar .navbar-nav>li>a:focus {
  background-color: transparent;
}

.custom-navbar .nav li.active>a {
  background-color: transparent;
  color: #1e94d2;
}

/* Active navbar link with underline */
.custom-navbar .navbar-nav-first li.active a,
.custom-navbar .navbar-nav-first li a.active {
  position: relative;
  color: #ffffff;
  transition: color 0.3s ease;
}

.custom-navbar .navbar-nav-first li.active a::after,
.custom-navbar .navbar-nav-first li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 22px;
  right: 22px;
  height: 3px;
  background-color: #4AFFBD;
  border-radius: 2px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.custom-navbar .navbar-toggle {
  border: none;
  padding-top: 10px;
}

.custom-navbar .navbar-toggle {
  background-color: transparent;
}

.custom-navbar .navbar-toggle .icon-bar {
  background: #ffffff;
  border-color: transparent;
}


@media(min-width:768px) {
  .custom-navbar {
    border-bottom: 0;
    background: transparent;
  }

  .custom-navbar.top-nav-collapse {
    background: #092B2D !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 12px 0;
  }

  /* .top-nav-collapse .navbar-brand {
    color: #252525;
  } */

  /* .top-nav-collapse .nav li a {
    color: #575757;
  } */

  .top-nav-collapse .nav .section-btn a {
    color: #ffffff;
  }
}

/* Dropdown menu styles */
.custom-navbar .dropdown-menu {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-navbar .dropdown-menu li a {
  color: #092B2D !important;
  /* padding: 8px 20px; */
  transition: background-color 0.2s ease;
}

.custom-navbar .dropdown-menu li a:hover {
  color: #092B2D !important;
  background-color: #f5f5f5;
}

.custom-navbar .dropdown-menu .text-muted {
  color: #092B2D !important;
  /* font-weight: 500; */
}

.custom-navbar .dropdown-menu #logout:hover {
  color: #d32f2f !important;
  background-color: #ffebee;
}



/*---------------------------------------
      HOME              
  -----------------------------------------*/

#home {
  /* background: url('../images/new-home-bg.jpg') no-repeat center center; */
  background-size: cover;
  vertical-align: middle;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 5em;
  text-align: left;
}

#home h1 {
  color: #ffffff;
}

#home .container,
#home .row {
  height: 100%;
}

.home-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-info.intro-text-right {
  max-height: 80vh;
  overflow: hidden;
  margin-left: 100px;
}

/* Fix for medium-large screens where content gets crowded */
@media (max-width: 1435px) {
  .home-info.intro-text-right {
    margin: 0 20px !important;
    margin-left: 20px !important;
    padding: 15px !important;
  }
  
  .home-info.intro-text-right img {
    height: 250px !important;
    object-position: center -80px !important;
  }
  
  .home-info.intro-text-right h2 {
    font-size: 22px !important;
    margin-top: 12px;
  }
  
  .home-info.intro-text-right p {
    font-size: 13px !important;
    line-height: 1.5;
  }
  
  .home-info.intro-text-left h2 {
    font-size: 48px !important;
  }
  
  .home-info.intro-text-left p {
    font-size: 13px !important;
  }
}

.home-info .section-btn {
  background: #52F9FF;
  /* border: 2px solid #f9f9f9; */
  color: #092B2D;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 11pt;
}

.home-info .section-btn:hover,
.home-info .section-btn:focus {
  background: #52F9FF;
  border-color: transparent;
  color: #ffffff;
}

 .icon-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #092B2D;
  margin-left: 8px;
}
.fa-angle-right{
  display: relative;
  margin-top: 16px;
}

.home-info .section-btn .icon-arrow i {
  color: #52F9FF;
}

.home-info span {
  display: inline-block;
  vertical-align: middle;
  color: #f9f9f9;
  font-weight: 500;
  margin-left: 20px;
}

.home-info span small {
  display: block;
}

.intro-text-right {
  text-align: right;
}

/* Tablet and Mobile Responsive - Home Section */
@media (max-width: 1024px) {
  .reverse-on-mobile {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 100px;
  }
  
  #home {
    padding-top: 3em;
    height: auto;
    max-height: none;
    min-height: auto;
    overflow: visible;
  }
  
  .home-info.intro-text-left {
    padding-bottom: 40px !important;
    align-items: center;
  }
  
  .home-info.intro-text-left h2 {
    font-size: 36px !important;
    line-height: 1.2;
  }
  
  .home-info.intro-text-left p {
    font-size: 16px !important;
    margin-top: 15px;
  }
  
  .home-info.intro-text-right {
    margin: 20px 20px 0 20px !important;
    padding: 15px !important;
    max-height: none;
  }
  
  .home-info.intro-text-right img {
    height: 200px !important;
    object-position: center -60px !important;
  }
  
  .home-info.intro-text-right h2 {
    font-size: 20px !important;
    margin-top: 12px;
  }
  
  .home-info.intro-text-right p {
    font-size: 13px !important;
    margin-top: 8px;
  }
  
  .home-info .section-btn {
    font-size: 10pt !important;
    padding: 10px 18px !important;
  }
}

@media (max-width: 767.98px) {
  .reverse-on-mobile {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 80px;
  }
  
  #home {
    padding-top: 2em;
    height: auto;
    max-height: none;
    min-height: auto;
    overflow: visible;
  }
  
  .home-info.intro-text-left {
    padding-bottom: 30px !important;
    text-align: center;
    align-items: center;
  }
  
  .home-info.intro-text-left h2 {
    font-size: 28px !important;
    line-height: 1.3;
    text-align: center;
  }
  
  .home-info.intro-text-left p {
    font-size: 14px !important;
    margin-top: 12px;
    text-align: center;
  }
  
  .home-info.intro-text-right {
    margin: 15px 10px 0 10px !important;
    padding: 12px !important;
    max-height: none;
  }
  
  .home-info.intro-text-right img {
    height: 180px !important;
    object-position: center -50px !important;
  }
  
  .home-info.intro-text-right h2 {
    font-size: 18px !important;
    margin-top: 10px;
  }
  
  .home-info.intro-text-right p {
    font-size: 12px !important;
    margin-top: 6px;
  }
  
  .home-info .section-btn {
    font-size: 9pt !important;
    padding: 8px 16px !important;
  }
  
  .icon-arrow {
    width: 28px;
    height: 28px;
  }
}

.text-library {
    padding-top: 20px;
}

@media (max-width: 991px) {
  .text-library {
    padding-top: 0px;
  }
}
/*---------------------------------------
      ABOUT              
  -----------------------------------------*/

#about {
  text-align: left;
}

#about .about-info:first-child {
  margin-right: 40px;
}

.about-info .section-title {
  margin: 40px 0 40px 0;
}

.about-info {
  margin-top: 60px;
}

.skill-thumb strong {
  display: inline-block;
  margin-bottom: 10px;
}

.skill-thumb .progress {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: none;
  height: 3px;
  margin-bottom: 25px;
}

.skill-thumb .progress-bar {
  background: #1f1f1f;
  box-shadow: none;
}


.icon-text {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    text-align: left;
    margin-top: 40px;
}

.icon-text img {
    margin-right: 10px;
}

.icon-text p {
    display: inline-block; 
    margin: 0;  
}

.logo-carousel-container {
  height: 600px;
  /* background: #fff; */
}
.logo-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}
.logo-btn:hover { background: rgba(0,0,0,0.4); }
.logo-btn.prev { left: 10px; }
.logo-btn.next { right: 10px; }

.logo-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1200ms ease-in-out;
  will-change: transform;
}
.logo-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide { aspect-ratio: 16 / 9; }
.logo-slide img { width: 100%; height: 100%; object-fit: cover; }

.logo-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
}
.logo-dot[aria-selected="true"] { background: #333; }

@media (max-width: 576px) {
  .logo-carousel-container { height: 320px; }
  .logo-slide img { max-width: 96%; max-height: 88%; }
}



/*---------------------------------------
      WORK             
  -----------------------------------------*/

.work-info img {
  width: 100%;
  border-radius: 100%;
}

#work .work-thumb {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 3px;
}

.work-thumb .work-info {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.work-thumb .work-info:after {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: "";
  background: #1e94d2;
  opacity: 0;
  transition: 0.5s;
}

.work-thumb .work-info:hover::after {
  opacity: 0.9;
}

.work-thumb .work-info h3,
.work-thumb .work-info small {
  transform: translateY(100%);
  opacity: 0;
  display: block;
  transition: 0.5s 0.2s;
  color: #ffffff;
  z-index: 2;
  position: relative;
}

.work-thumb .work-info small {
  color: #d9d9d9;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 3px;
}

.work-thumb:hover .work-info h3,
.work-thumb:hover .work-info small {
  transform: translateY(0px);
  opacity: 1;
}



/*---------------------------------------
      BLOG             
  -----------------------------------------*/

#blog {
  background: #f0f0f0;
}

#blog-header,
#blog-detail {
  text-align: left;
}

#blog-header {
  background: url('../images/blog-header-bg.jpg') no-repeat center center;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 65vh;
  color: #ffffff;
  position: relative;
  padding-top: 12em;
}

#blog-header h2 {
  color: #ffffff;
}

.blog-thumb {
  background: #ffffff;
  -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  text-align: left;
  margin-bottom: 30px;
  height: 350px;
}

.media.blog-thumb .media-left {
  width: 45%;
}

.blog-thumb small {
  color: #1e94d2;
  font-weight: 500;
  display: block;
}

.blog-thumb small .fa {
  margin-right: 5px;
}

.blog-thumb h4 {
  margin-top: 2px;
  margin-bottom: 0px;
}

#blog-detail h2 {
  padding: 25px 0 10px 0;
}

.blog-info {
  padding: 75px 25px;
}

.blog-info h3 {
  margin: 0;
  padding: 8px 0 6px 0;
  text-transform: capitalize;
}

.blog-info .section-btn {
  background: #f0f0f0;
  color: #393939;
  margin-top: 20px;
}

.blog-info .section-btn:hover {
  background: #52F9FF;
  color: #092B2D;
}

.blog-thumb ul {
  margin: 32px 12px 22px 0px;
}

.blog-thumb ul li {
  list-style: square;
  font-weight: normal;
  padding: 4px 12px 4px 0px;
}

.blog-social-share {
  text-align: center;
  padding-top: 22px;
}

.blog-social-share .btn {
  border-radius: 100px;
  border: none;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 20px 6px;
  padding: 10px 16px;
}

.blog-social-share .btn-primary {
  background: #3b5998;
}

.blog-social-share .btn-success {
  background: #1da1f2;
}

.blog-social-share .btn-danger {
  background: #dd4b39;
}

.blog-social-share a .fa {
  padding-right: 4px;
}

.blog-ads {
  background: #f9f9f9;
  border-right: 4px solid #2b2b2b;
  padding: 42px;
  text-align: center;
  margin: 26px 0 26px 0;
}

.blog-ads h4 {
  font-size: 18px;
}



/*---------------------------------------
      CONTACTS             
  -----------------------------------------*/

/* #contact {
  background: #00F260;
  background: -webkit-linear-gradient(to right, #0575E6, #00F260);
  background: linear-gradient(to right, #0575E6, #00F260);
} */

/* #contact .section-title h2 {
  color: #ffffff;
} */

.google-map {
  /* border-radius: 100%; */
  width: 300px;
  height: 300px;
  overflow: hidden;
  margin: 0 auto;
}

.google-map iframe {
  border: 0;
  width: 300px;
  height: 300px;
}

.recommend-section .text-content {
  text-align: left !important;
}
.recommend-section .text-content h2,
.recommend-section .text-content h4,
.recommend-section .text-content p,
.recommend-section .text-content ul {
  margin-left: 0px;
}
.recommend-section .text-content p,
.recommend-section .text-content ul li{
  font-size: 20px;
}

.recommend-section .text-content ul li{
  margin-top: 30px;
}

/* #contact .form-control {
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  color: rgba(20, 20, 20, 0.5);
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 15px;
  padding-left: 8px;
}

#contact input,
#contact select {
  height: 55px;
}

#contact select {
  color: rgba(20, 20, 20, 0.5);
}

#contact input[type='submit'] {
  background: #1e94d2;
  border-radius: 100px;
  color: #ffffff;
  font-weight: 500;
} */

#contact a {
  color: #d9d9d9;
}

/*---------------------------------------
     FOOTER              
  -----------------------------------------*/

.custom-link {
  border-bottom: 1px solid #fff;
  color: #d9d9d9;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.custom-link:hover {
  color: #f2f2f2;
  border-bottom-color: #f2f2f2;
}

.footer-thumb a.custom-link:hover {
  color: #f2f2f2;
  border-bottom-color: #f2f2f2;
}

footer .footer-thumb a.custom-link {
  border-bottom: 1px solid #fff !important;
  color: #d9d9d9 !important;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
}

footer .footer-thumb a.custom-link:hover {
  color: #f2f2f2 !important;
  border-bottom-color: #f2f2f2 !important;
}

footer {
  background: #0E2D2E;
  /* fallback for old browsers */
  background: #0E2D2E;
  /* Chrome 10-25, Safari 5.1-6 */
  background: #0E2D2E;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
}

footer h2 {
  color: #ffffff;
}

.img-footer {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.img-footer img {
  max-width: 250px;
  height: auto;
}

.footer-link {
  margin: 0;
  padding: 0;
}

.footer-link li {
  display: block;
  list-style: none;
  margin: 5px 10px 5px 0;
}

.footer-link ul li {
  list-style: none;
  padding-left: 20px;
  margin-left: 10px;
  position: relative;
}

.footer-link ul li::before {
  content: '●';
  color: #FFFFFF;
  position: absolute;
  left: 0;
}

footer p,
footer span,
.footer-link li a {
  color: #d9d9d9;
}

.copyright-text p,
.footer-bottom .phone-contact p {
  font-size: 14px;
}

.footer-info p {
  margin-right: 4em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 5em;
  padding-top: 3em;
}

.footer-bottom .phone-contact,
.footer-bottom .social-icon {
  display: inline-block;
  vertical-align: top;
}

.footer-bottom .phone-contact {
  margin-right: 0px;
}

.footer-bottom .phone-contact span {
  font-weight: 500;
  display: inline-block;
  margin-left: 10px;
}

#phone-div {
  text-align: end;
}

/*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 0;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  border-radius: 100px;
  color: #d9d9d9;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  margin: 5px 10px;
}

.social-icon li a:hover {
  color: #1e94d2;
}

  /* google hover text */
  .tooltip-text {
      visibility: hidden;
      font-size: 14px;
      width: 580px;
      background-color: black;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 8px 0;
      position: absolute;
      z-index: 1;
      bottom: 10%;
      left: 10%;
      margin-left: -140px;
      opacity: 0;
      transition: opacity 0.5s, transform 0.5s ease-in-out;
      transform: translateY(10px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
 }

 .google-login:hover .tooltip-text {
      visibility: visible;
      opacity: 1;
      transform: translateY(-10px);
 }

 .tooltip-text::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: black transparent transparent transparent;
 }

/*---------------------------------------
     MODAL FORM             
  -----------------------------------------*/

.modal {
  border-radius: 15px;
}

@media (min-width: 992px) {
  .modal-dialog {
    width: 420px;
  }
}

.modal-open .modal {
  padding-left: 0 !important;
}

.modal-dialog .modal-content {
  /* background: #41b9df;  fallback for old browsers */
  /* background: -webkit-linear-gradient(to right, #3af48b, #41b9df);  Chrome 10-25, Safari 5.1-6 */
  /* background: linear-gradient(to right, #3af48b, #41b9df); W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-color: #FFF;
  border: none;
  border-radius: 15px;
  text-align: center;
  position: relative;
  padding: 2em;
}

.modal-header,
.modal-footer {
  border-bottom: 0;
  padding: 0;
}

.modal-dialog .modal-body {
  padding: 0;
}

.modal-dialog .modal-body a {
  color: #d9d9d9;
}

.modal-dialog .modal-body a.btn {
  color: #000;
  border: 1px solid #000;
}

.modal-dialog .modal-body a.btn:hover {
  background-color: #52F9FF;
  color: #092B2D;
}

.custom-modal-width {
  width: 70%;
  height: 100%;
  margin-top: 5;
  margin-bottom: 0;
  margin-left: 15%;
  margin-right: 0px;
  padding: 0;
}
.custom-modal-revit-width {
  width: 35%;
  height: 100%;
  margin-top: 10%;
  margin-bottom: 0px;
  margin-left: 30%;
  margin-right: 0px;
  padding: 0;
}

.modal .close {
  color: #999;
  font-size: 40px;
  font-weight: 300;
  text-shadow: none;
  opacity: 1;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 100;
  outline: none;
}

.modal-dialog .modal-title {
  margin-bottom: 20px;
}

.modal-dialog .modal-title h2 {
  color: #000;
}

.modal-dialog .nav-tabs {
  display: inline-block;
}

.modal-dialog .nav-tabs>li>a {
  border: 0;
  color: #777;
  margin-right: 0;
}

.modal-dialog .nav-tabs>li.active>a,
.modal-dialog .nav-tabs>li.active>a:hover,
.modal-dialog .nav-tabs>li.active>a:focus,
.modal-dialog .nav>li>a:focus,
.modal-dialog .nav>li>a:hover {
  color: #000;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid #000;
}

.modal-dialog .tab-content {
  padding-top: 20px;
}

.modal-dialog form .form-control {
  border-radius: 5px;
  border: 1px solid #000;
  background: transparent;
  box-shadow: none;
  margin: 15px 0 15px 0;
  height: 50px;
}

.modal-dialog form .form-control[type="submit"]:hover,
.modal-dialog form .form-control[type="submit"]:focus {
  background-color: #52F9FF;
  color: #092B2D;
  font-weight: bold;
}

.modal-dialog form input[type="submit"] {
  background: #52F9FF;
  border-color: transparent;
  border-radius: 100px;
  color: #092B2D;
  margin-top: 20px;
}


/*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

@media screen and (max-width: 1170px) {

  .custom-navbar .navbar-nav.navbar-nav-first {
    margin-left: inherit;
  }
}

@media screen and (max-width: 991px) {

  h3 {
    font-size: 1.2em;
  }

  p {
    font-size: 13px;
  }

  #home {
    text-align: center;
  }

  .home-info {
    margin-bottom: 3em;
  }

  .custom-navbar .nav li a {
    font-size: 13px;
    padding-right: 11px;
    padding-left: 11px;
  }

  .custom-navbar .section-btn {
    margin-left: 1em;
  }

  .blog-thumb {
    height: inherit;
  }

  .blog-info {
    padding: 45px 25px;
  }

  .media.blog-thumb .media-left {
    display: block;
    width: 100%;
    padding-right: 0;
    overflow: hidden;
  }

  .media.blog-thumb .media-left {
    height: 250px;
  }

  .media.blog-thumb .media-left img {
    position: relative;
    bottom: 10em;
  }

  #work .work-thumb,
  .footer-thumb {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 640px) and (max-width: 767px) {

  #blog-header {
    height: 100vh;
  }

  .media.blog-thumb .media-left {
    height: 550px;
  }

  .media.blog-thumb .media-left img {
    position: relative;
    bottom: 10em;
  }
}

@media screen and (min-width: 767px) {

  .text-md-right {
    text-align: end;
  }
}

@media screen and (max-width: 767px) {

  .custom-navbar {
    background: #092B2D !important;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }

  .custom-navbar.top-nav-collapse {
    background: #092B2D !important;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .custom-navbar .nav li a {
    line-height: normal;
    padding: 5px;
  }

  .custom-navbar .navbar-brand,
  .top-nav-collapse .navbar-brand {
    color: #252525;
    font-weight: bold;
  }

  .custom-navbar .nav li a,
  .top-nav-collapse .nav li a {
    color: #ffffff;
    padding: 5px;
  }

  .custom-navbar .nav.navbar-nav-first li a {
    color: #ffffff;
    padding: 15px 0px;
  }

  .custom-navbar .navbar-nav.navbar-right li {
    display: inline-block;
  }

  #login-nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  #login-nav.login-hidden {
    display: none !important;
  }

  #login-nav li {
    display: block;
    width: 100%;
  }

  .custom-navbar .section-btn {
    display: block !important;
    width: 50%;
    margin: 10px auto 10px auto;
    padding: 10px;
    text-align: center;
  }

  .custom-navbar .section-btn a {
    color: #ffffff !important;
  }

  .home-info span {
    margin-top: 20px;
  }

  #about .about-info:first-child {
    margin-right: 0;
  }

  .about-info {
    margin: 40px 0 40px 0;
  }

  .google-map {
    margin-top: 50px;
  }

  footer,
  #phone-div {
    text-align: center;
  }

  .footer-info p,
  .footer-bottom .phone-contact {
    margin-right: 0;
  }
}

@media screen and (max-width: 639px) {

  h1 {
    font-size: 2em;
  }

  .media.blog-thumb .media-left {
    height: 320px;
  }

  .media.blog-thumb .media-left img {
    position: relative;
    bottom: 6em;
  }

}

#file-drop {
  cursor: pointer;
  background-color: white;
  transition: background-color 200ms linear;
}

#file-drop:hover {
  background-color: lightgray;
}

#file-drop.active {
  background-color: lightgray;
}

#screen-spinner {
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 3000;
  text-align: center;
  vertical-align: middle;
}

body.loading {
  pointer-events: none;
}

body.loading::before {
  content: '';
  background-color: black;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 3000;
  width: 100%;
  height: 100%;
}

.foot_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-copyright {
  order: 1;
}

.footer-right-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  order: 2;
}

.footer-right-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-qr {
  display: inline-block;
  margin: 0 10px;
}

.footer-info-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-link-item {
  margin: 0;
}

.footer-info-section #phone-div,
.footer-info-section .phone-contact {
  margin: 0;
}

.footer-info-section .phone-contact p {
  margin: 0;
}

.img_content {
display: flex; 
float: right;
}

.info-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 400px;
  background: transparent;
  border-radius: 28px;
  padding: 40px 28px 28px 28px;
  box-sizing: border-box;
  text-align: left;
  margin: 0 auto;
}

.info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #B6F0FF;
  border-radius: 28px;
  -webkit-clip-path: path("M159.847 0.0259828H362.531C383.209 0.0259828 400 16.5249 400 36.8433V363.183C400 383.527 383.209 400 362.531 400H37.4694C16.7647 400 0 383.501 0 363.183V157.091C0 136.954 16.606 120.637 37.0992 120.637H47.8086C89.218 120.637 122.774 87.6652 122.774 46.9765V36.4535C122.774 16.3171 139.38 0 159.873 0L159.847 0.0259828Z");
  clip-path: path("M159.847 0.0259828H362.531C383.209 0.0259828 400 16.5249 400 36.8433V363.183C400 383.527 383.209 400 362.531 400H37.4694C16.7647 400 0 383.501 0 363.183V157.091C0 136.954 16.606 120.637 37.0992 120.637H47.8086C89.218 120.637 122.774 87.6652 122.774 46.9765V36.4535C122.774 16.3171 139.38 0 159.873 0L159.847 0.0259828Z");
  z-index: 0;
}

.info-card > * {
  position: relative;
  z-index: 1;
}

.info-card-badge {
  position: absolute;
  top: -52px;
  left: -18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #52F9FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 20px;
}

.info-card-icon {
  position: relative;
  top: -40px;
  right: -22px;
  transform: translateX(-50%);
  width: 95px;
  height: 86px;
  border-radius: 24px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.info-card-icon i {
  font-size: 32px;
  color: #000;
}

.info-card-icon img {
  width: 36px;
  height: auto;
}

/* Logo Service Sizing */
.logo-service {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 50px;
  max-height: 50px;
}

.info-card{
  margin-top: 60px;
}

/* Logo service in info-card-icon */
.info-card-icon .logo-service {
  width: 100px;
  height: 100px;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
}

/* Logo service in service-badge */
.service-badge .logo-service {
  width: 55px;
  height: 55px;
  max-width: 55px;
  max-height: 55px;
  object-fit: contain;
}

.info-card-title {
  font-family: 'FC Iconic Wide';
  font-size: 30px;
  /* font-weight: bolder; */
  margin: 0 0 8px 0;
  color: #000;
  text-align: left;
}

.info-card-title-sub {
  font-family: 'FC Iconic';
  font-size: 20px;
  font-weight: bold;
  color: #000;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 12px;
}
.info-card-text {
  font-family: 'FC Iconic';
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  text-align: left;
  margin: 0;
}

/* our mission */
#our-mission {
  position: relative;
  width: 100%;
  height: 1200px;
  background: #9fffff;
  overflow: hidden;
}

.mission-content {
  max-width: 820px;
  width: 100%;
  text-align: left;
}

.mission-bg-shape {
  position: absolute;
  width: 1364px;
  height: 1145px;
  /* border-radius: 90%; */
  background-image: url('/landing/images/cloud-our.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 20px;
  margin-top: -80px;
  margin-left: -40px;
  z-index: 1;
}

.mission-bg-circle {
  position: absolute;
  width: 1400px;
  height: 1200px;
  border-radius: 90%;
  background: #ffffff;
  left: -160px;
  top: 220px;
  z-index: 1;
}

#our-mission .container {
  position: relative;
  z-index: 5;
}


#our-mission-sub {
  background: #9fffff;
  padding: 80px 0;
}

.mission-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-card,
.mission-card-horizontal .mission-card-body {
    text-align: left;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* top cards (image on top, text below) */
.mission-card:not(.mission-card-horizontal) img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 18px;
}

.mission-card h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.mission-card p {
  font-family: 'FC Iconic';
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

/* bottom big card: image left, text right in one white box */
.mission-card-horizontal {
  padding: 0;
}

.mission-card-horizontal .mission-card-body {
  padding: 0px 80px 0px 0px;
}

.mission-card-img-full {
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: cover;
  border-radius: 40px;
}

/* make right side corners match */
.mission-card-horizontal .mission-card-body {
  border-radius: 0 20px 20px 0;
}

.mission-card-fixed {
  min-height: 520px;
}

#about {
  margin: 0;
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #ffffff;
}

.services-label h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: left;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 30px;
}

.about-head {
  margin-bottom: 40px;
  text-align: left;
}

.about-title {
  color: #09141f;
  font-weight: 300;
  font-size: 58px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
}

.about-intro {
  font-family: 'FC Iconic';
  font-size: 26px;
  font-weight: 300;
  color: #333;
  line-height: 1.6;
  margin-top: 140px;
}

.about-services {
  margin-top: 30px;
  margin-bottom: 40px;
}

.service-card {
  position: relative;
  width: 360px;
  min-height: 403px;
  border-radius: 32px;
  padding: 40px 28px 30px 28px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  overflow: visible;
}

/* Apply clip-path to background only, not the content */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 32px;
  -webkit-clip-path: path("M161.046 0.0261777H365.25C386.083 0.0261777 403 16.6488 403 37.1196V365.907C403 386.404 386.083 403 365.25 403H37.7505C16.8905 403 0 386.377 0 365.907V158.269C0 137.981 16.7306 121.542 37.3775 121.542H48.1671C89.8871 121.542 123.695 88.3227 123.695 47.3288V36.7269C123.695 16.4394 140.425 0 161.072 0L161.046 0.0261777Z");
  clip-path: path("M161.046 0.0261777H365.25C386.083 0.0261777 403 16.6488 403 37.1196V365.907C403 386.404 386.083 403 365.25 403H37.7505C16.8905 403 0 386.377 0 365.907V158.269C0 137.981 16.7306 121.542 37.3775 121.542H48.1671C89.8871 121.542 123.695 88.3227 123.695 47.3288V36.7269C123.695 16.4394 140.425 0 161.072 0L161.046 0.0261777Z");
  z-index: 0;
  pointer-events: none;
}

/* Ensure content is above the clipped background */
.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-1::before { background-color: #b6f0ff; }
.service-card-2::before { background-color: #52f9ff; }
.service-card-3::before { background-color: #15b6ff; }

.service-badge.service-badge-1 {
  background-color: #b6f0ff;
}

.service-badge.service-badge-2 {
  background-color: #52f9ff;
}

.service-badge.service-badge-3 {
  background-color: #15b6ff;
}


.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.service-badge {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #09141f;
}

.service-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-top: 100px;
  margin-bottom: 12px;
  color: #09141f;
  text-transform: uppercase;
}

.service-card p {
  font-family: 'FC Iconic';
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.about-visual-wrap-left {
  position: relative;
  border-radius: 28px;
}

.about-visual-img-left {
  width: 100%;
  display: block;
  border-radius: 28px;
}

.about-visual-caption {
  position: absolute;
  top: 0;
  background-color: #99fa69;
  padding: 22px 90px;
  border-radius: 28px;
  max-width: 690px;
  min-height: 120px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* text right block */
.about-right-text {
  margin-top: 240px;
}

.about-right-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 22px;
  margin-left: 100px;
  text-align: justify;
}

#our-client{
  margin-top: -100px;
}

@media (max-width: 1200px){
  .service-card {
    padding: 32px 20px 24px 20px;
    max-height: 300px;
    max-width: 300px;
  }

  .service-card::before {
    clip-path: path("M161.046 0.0261777H365.25C386.083 0.0261777 403 16.6488 403 37.1196V365.907C403 386.404 386.083 403 365.25 403H37.7505C16.8905 403 0 386.377 0 365.907V158.269C0 137.981 16.7306 121.542 37.3775 121.542H48.1671C89.8871 121.542 123.695 88.3227 123.695 47.3288V36.7269C123.695 16.4394 140.425 0 161.072 0L161.046 0.0261777Z");
    -webkit-clip-path: path("M161.046 0.0261777H365.25C386.083 0.0261777 403 16.6488 403 37.1196V365.907C403 386.404 386.083 403 365.25 403H37.7505C16.8905 403 0 386.377 0 365.907V158.269C0 137.981 16.7306 121.542 37.3775 121.542H48.1671C89.8871 121.542 123.695 88.3227 123.695 47.3288V36.7269C123.695 16.4394 140.425 0 161.072 0L161.046 0.0261777Z");
    border-radius: 32px;
  }

  .service-badge {
    margin-top: 20px;
    width: 88px;
    height: 88px;
    top: 0px;
    left: 16px;
  }

  .service-card h3 {
    margin-top: 120px;
    font-size: 22px;
  }

  .service-card p {
    margin-top: 30px;
    font-size: 16px;
  }
  .about-sub {
    padding: 0px 0px 0px 0px !important;
    font-size: 20px !important;
  }

  #login-nav{
    position: absolute;
    bottom: 10px;
    right: 50px;
  }
}

.image-with-bg {
  position: relative;
  padding: 0;
}

.image-with-bg::before {
  content: '';
  position: absolute;
  background-image: url('/landing/images/cloud-about.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 80%;
  height: 148%;
  top: 10px;
  left: -290px;
  z-index: 1;
  /* opacity: 0.6; */
}

/* responsive */
@media (max-width: 1024px) {
  .about-title {
    font-size: 48px;
  }
  
  .about-intro {
    font-size: 20px;
    margin-top: 80px;
  }
  
  .about-visual-caption {
    position: static;
    margin-top: 16px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: none;
    padding: 18px 40px;
    font-size: 22px;
  }
  
  .about-right-text {
    margin-top: 40px;
  }
  
  .about-right-text p {
    margin-left: 0;
    font-size: 15px;
  }
  
  .about-sub {
    font-size: 24px !important;
    padding: 0px 80px 0px 0px !important;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 36px;
  }
  
  .about-intro {
    font-size: 18px;
    margin-top: 40px;
  }
  
  .about-visual-caption {
    position: static;
    margin-top: 16px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: none;
    padding: 16px 24px;
    font-size: 18px;
  }

  .about-right-text {
    margin-top: 30px;
  }
  
  .about-right-text p {
    text-align: left;
    margin-left: 0;
    font-size: 14px;
  }
  
  .about-sub {
    font-size: 18px !important;
    padding: 0px 20px 0px 0px !important;
  }

  .cloud-scroll-wrapper{
    display: none;
  }
}


/* responsive */
@media (max-width: 1024px) {
  .about-title {
      font-size: 48px;
  }
  .about-visual-caption {
      position: static;
      margin-top: 16px;
      border-radius: 18px;
      padding: 18px 50px;
      font-size: 22px;
  }
}

@media (max-width: 992px) {
  .about-title {
      font-size: 42px;
  }
  .about-visual-caption {
      position: static;
      margin-top: 16px;
      border-radius: 18px;
      padding: 16px 40px;
      font-size: 20px;
  }
}

@media (max-width: 768px) {
  .about-title {
      font-size: 34px;
  }
  #our-client{
    margin-top: -100px;
  }
  .about-visual-caption {
      padding: 14px 24px;
      font-size: 18px;
  }
}

.client-sub{
  font-size: 18px;
}

/* Client Logo Styles */
.client-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 120px;
}

.client-logo {
  max-width: 140px;
  max-height: 120px;
  object-fit: contain;
}

/* Client Logos Swiper Styles */
.client-logos-swiper {
  padding: 20px 0 60px 0;
  width: 100%;
}

.client-logos-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.client-logos-swiper .swiper-button-next,
.client-logos-swiper .swiper-button-prev {
  color: #333;
  background-color: rgba(255, 255, 255, 0.95);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}

.client-logos-swiper .swiper-button-next:after,
.client-logos-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.client-logos-swiper .swiper-button-next:hover,
.client-logos-swiper .swiper-button-prev:hover {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.client-logos-swiper .swiper-button-next {
  right: 10px;
}

.client-logos-swiper .swiper-button-prev {
  left: 10px;
}

.client-logos-swiper .swiper-pagination {
  position: relative;
  margin-top: 40px;
  bottom: 0;
}

.client-logos-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  opacity: 1;
  transition: all 0.3s ease;
}

.client-logos-swiper .swiper-pagination-bullet-active {
  background-color: #333;
  width: 12px;
  height: 12px;
}

/* Responsive adjustments for client logos */
@media (max-width: 768px) {
  .client-logo-wrapper {
    height: 100px;
    padding: 15px;
  }
  
  .client-logo {
    max-height: 60px;
  }
  
  .client-logos-swiper .swiper-button-next,
  .client-logos-swiper .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
  
  .client-logos-swiper .swiper-button-next:after,
  .client-logos-swiper .swiper-button-prev:after {
    font-size: 14px;
  }
  
  .client-logos-swiper .swiper-button-next {
    right: 5px;
  }
  
  .client-logos-swiper .swiper-button-prev {
    left: 5px;
  }
}

/* Profile Cards Swiper Styles */
.profile-swiper {
  width: 100%;
  padding: 0 0 50px 0;
}

.profile-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.profile-card {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.profile-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.profile-image-wrapper {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-body {
  background-color: #e3f2fd;
  padding: 30px 25px;
  flex-grow: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.profile-head {
  font-family: 'FC Iconic';
  white-space: nowrap;
  font-size: 22px;
  font-weight: 700;
  color: #09141f;
  margin-bottom: 15px;
  line-height: 1.4;
}

.profile-detail {
  font-family: 'FC Iconic';
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.profile-name {
  font-family: 'FC Iconic';
  font-size: 18px;
  font-weight: 600;
  color: #09141f;
  margin-bottom: 8px;
  margin-top: auto;
}

.profile-position {
  font-family: 'FC Iconic';
  font-weight: bold;
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* Swiper Navigation Buttons Customization */
.profile-swiper .swiper-button-next,
.profile-swiper .swiper-button-prev {
  color: #333;
  background-color: rgba(255, 255, 255, 0.95);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}

.profile-swiper .swiper-button-next:after,
.profile-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.profile-swiper .swiper-button-next:hover,
.profile-swiper .swiper-button-prev:hover {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.profile-swiper .swiper-button-next {
  right: 10px;
}

.profile-swiper .swiper-button-prev {
  left: 10px;
}

/* Swiper Pagination Customization */
.profile-swiper .swiper-pagination {
  position: relative;
  margin-top: 50px;
  bottom: 0;
}

.profile-swiper .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background-color: #ccc;
  opacity: 1;
  transition: all 0.3s ease;
}

.profile-swiper .swiper-pagination-bullet-active {
  background-color: #333;
  width: 50px;
  height: 4px;
}

/* Responsive adjustments for profile cards */
@media (max-width: 991px) {
  .profile-card {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .profile-image-wrapper {
    height: 300px;
  }
  
  .profile-body {
    padding: 25px 20px;
  }
  
  .profile-head {
    font-size: 20px;
  }
  
  .profile-detail {
    font-size: 15px;
  }
  
  .profile-name {
    font-size: 16px;
  }
  
  .profile-position {
    font-size: 14px;
  }
  
  /* Adjust navigation buttons on mobile */
  .profile-swiper .swiper-button-next,
  .profile-swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  
  .profile-swiper .swiper-button-next:after,
  .profile-swiper .swiper-button-prev:after {
    font-size: 16px;
  }
  
  .profile-swiper .swiper-button-next {
    right: 5px;
  }
  
  .profile-swiper .swiper-button-prev {
    left: 5px;
  }
}

/* empowering */
#empowering {
  background-color: #52F9FF;
  padding: 80px 0;
}

.empowering-content {
  padding: 20px 0;
}

.empowering-title {
  color: #09141f;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 25px;
  text-align: left;
}

.empowering-text {
  font-family: 'FC Iconic';
  color: #333;
  font-size: 30px;
  line-height: 1.8;
  text-align: left;
  margin: 0;
}

.empowering-image-wrapper {
  margin-top: 40px;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
}

.empowering-image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  object-position: center;
}

/* Responsive adjustments for empowering section */
@media (max-width: 1024px) {
  #empowering {
    padding: 60px 0;
  }
  
  .empowering-title {
    font-size: 36px;
  }
  
  .empowering-text {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  #empowering {
    padding: 60px 0;
  }
  
  .empowering-title {
    font-size: 32px;
  }
  
  .empowering-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  #empowering {
    padding: 50px 0;
  }
  
  .empowering-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .empowering-text {
    font-size: 15px;
  }
  
  .empowering-content {
    margin-bottom: 30px;
  }
}

#topics .topics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

#topics .topics-title {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1E6467;
}

#topics {
  margin-top: -100px;
}

#topics .row {
  display: flex; 
  flex-wrap: wrap;
  column-count: initial;
  column-width: auto;
  column-gap: 0;
}

#topics h1 {
  color: #1E6467;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1px;
}

#topics .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#topics .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.img-topic {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

#topics .img-topic img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

#topics .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 15px 15px 15px 15px !important;
}

#topics .card-title {
  font-size: 22px;
  font-weight: 700;
  color: #00736E;
  margin-top: 0;
  margin-bottom: 12px;
  min-height: 54px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#topics .card-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  flex-grow: 1;
  min-height: 48px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#topics a {
  color: #00736E;
  font-weight: 500;
  margin-top: auto;
  display: inline-block;
}

.card-topic {
  text-align: left;
}

/* Responsive adjustments for topics */
@media (max-width: 991px) {
  #topics .card-img-top {
    height: 180px;
  }
  
  #topics .card-title {
    font-size: 20px;
    min-height: 50px;
  }
  
  #topics .card-text {
    font-size: 15px;
    min-height: 45px;
  }
  
  .cloud-scroll-wrapper{
    display: none;
  }
}

@media (max-width: 768px) {
  /* Prevent edge clipping on mobile for topics cards */
  #topics .row {
    padding: 10px 5px; /* Add padding to prevent edge clipping */
    margin: 0 -5px; /* Compensate for padding */
  }

  #topics .col-12,
  #topics .col-md-6,
  #topics .col-lg-3 {
    padding: 8px; /* Reduce padding on mobile */
  }

  #topics .card:hover {
    transform: translateY(-5px) rotateX(0.5deg) rotateY(0.5deg) scale(1.01); /* More subtle on mobile */
  }

  #topics .topics-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  #topics .topics-header .topics-title {
    font-size: 36px;
  }

  #topics .topics-header .read-all {
    text-align: center;
  }

  #topics h1 {
    font-size: 42px;
  }

  #topics .img-topic img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  
  #topics .card-img-top {
    height: auto;
    width: 100%;
  }

  #topics .card {
    position: relative;
  }
  
  #topics .card-title {
    font-size: 18px;
    min-height: 46px;
  }
  
  #topics .card-text {
    font-size: 14px;
    min-height: 42px;
  }

  #topics .card-topic {
    padding-top: 10px;
  }

  /* Hide default link below card-text on mobile */
  #topics .card-topic a {
    display: none;
  }

  /* Grey overlay on image hover */
  #topics .img-topic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 128, 128, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 12px;
  }

  #topics .img-topic:hover::after {
    opacity: 1;
  }

  /* Center link on image - position actual link element */
  #topics .card {
    position: relative;
  }

  #topics .img-topic {
    position: relative;
  }

  #topics .card-topic a {
    display: block;
    position: absolute;
    top: 25%; /* Center of image area (img-topic is typically ~50% of card height) */
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(14, 45, 46, 0.95);
    color: #8FFBFF !important;
    border-radius: 999px;
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
    white-space: nowrap;
    font-size: 14px;
    text-decoration: none !important;
    width: auto;
    margin: 0;
  }

  #topics .card:hover .card-topic a,
  #topics .img-topic:hover ~ .card-topic a {
    opacity: 1;
    pointer-events: auto;
  }
}

.d-none{
  display: none;
}

/* Additional Responsive Fixes for Services Section */
@media (max-width: 1024px) {
  #services h1 {
    font-size: 42px !important;
  }
  
  #services .choose-me h1 {
    font-size: 42px !important;
  }
  
  #services .choose-me p {
    font-size: 20px !important;
  }
  
  .info-card {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 992px) {
  .info-card,
  .service-card {
    width: 100%;
    max-width: 300px;
    max-height: 300px;
    padding: 32px 24px 24px 24px;
  }

  .info-card::before,
  .service-card::before {
    border-radius: 28px;
  }

  .service-card{
    margin: 20px auto;
  }

  .info-card-badge {
    top: -60px;
    left: 5px;
  }

  .info-card-icon {
    top: -28px;
    right: 18px;
    transform: none;
  }

  .service-badge {
    width: 70px;
    height: 70px;
    top: -18px;
    left: 18px;
  }

  .service-card h3 {
    margin-top: 70px;
  }

  .cloud-scroll-wrapper {
    margin-top: -250px; 
  }  

  .cloud-scroll-text {
    margin-top: 0px;
    font-size: 14px;
  }

  .mission-card{
    margin-top: 20px;
  }

  .mission-card-horizontal .mission-card-body {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  #services h1 {
    font-size: 32px !important;
    line-height: 1.3 !important;
  }
  
  #services .choose-me h1 {
    font-size: 32px !important;
  }
  
  #services .choose-me p {
    font-size: 18px !important;
    line-height: 1.5 !important;
  }
  
  .info-card {
    width: 100%;
    max-width: 300px;
    max-height: 340px;
    padding: 28px 20px 20px 20px;
    margin: 50px auto;
  }

  .info-card::before {
    border-radius: 28px;
  }
  
  .info-card-title {
    margin-top: 40px;
    font-size: 22px;
  }
  
  .info-card-title-sub {
    font-size: 18px;
  }
  
  .info-card-text {
    font-size: 15px;
  }
  .info-card-icon{
    top: -22px;
    left: -10px;
  }
  /* Logo service for mobile */
  .info-card-icon .logo-service {
    width: 65px;
    height: 65px;
    max-width: 65px;
    max-height: 65px;
  }
  
  .service-badge .logo-service {
    width: 55px;
    height: 55px;
    max-width: 55px;
    max-height: 55px;
  }

  .service-card {
    width: 100%;
    max-width: 300px;
    /* min-height: auto; */
    height: 2200px;
    padding: 28px 20px 20px 20px;
    margin: 20px auto;
  }

  .service-card::before {
    border-radius: 32px;
  }

  .service-badge {
    width: 88px;
    height: 88px;
    top: -18px;
    left: 18px;
  }

  .service-card h3 {
    margin-top: 124px;
    font-size: 22px;
  }

  .service-card p {
    font-size: 16px;
  }
}

/* Responsive Fixes for Mission Section */
@media (max-width: 1024px) {
  #our-mission {
    height: auto;
    padding: 80px 0;
  }
  
  #our-mission h1 {
    font-size: 48px !important;
  }
  
  #our-mission p {
    font-size: 20px !important;
  }
  
  .mission-card-fixed {
    min-height: 450px;
  }
  
  .mission-card h3 {
    font-size: 22px;
  }
  
  .mission-card p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #our-mission {
    height: auto;
    padding: 60px 0;
  }
  
  #our-mission h1 {
    font-size: 36px !important;
    line-height: 1.3 !important;
  }
  
  #our-mission p {
    font-size: 18px !important;
  }
  
  .mission-card-fixed {
    min-height: auto;
  }
  
  .mission-card {
    margin-bottom: 20px;
  }
  
  .mission-card h3 {
    font-size: 20px;
  }
  
  .mission-card p {
    font-size: 15px;
  }
  
  .mission-card-horizontal .row {
    flex-direction: column;
  }
  
  .mission-card-img-full {
    border-radius: 20px 20px 0 0 !important;
    height: 250px;
  }
  
  .mission-card-horizontal .mission-card-body {
    border-radius: 0 0 20px 20px !important;
  }
}

/* Responsive Fixes for Section Titles and General Spacing */
@media (max-width: 1024px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .section-title h2 {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .section-title h2 {
    font-size: 1.6em;
  }
  
  h1 {
    font-size: 2.2em;
  }
  
  h2 {
    font-size: 1.8em;
  }
  
  h3 {
    font-size: 1.3em;
  }
}

/* Fix for navbar on mobile/tablet */
@media (max-width: 1024px) {
  .custom-navbar .navbar-nav.navbar-nav-first {
    margin-left: 0;
  }
  
  .custom-navbar .section-btn {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* Fix for video slider controls on mobile */
@media (max-width: 768px) {
  .video-slider-controls button {
    font-size: 24px;
    width: 40px;
    height: 40px;
  }
  
  .prev-slide {
    left: 10px;
  }
  
  .next-slide {
    right: 10px;
  }
}

/* Additional responsive fixes for specific inline styles */
@media (max-width: 1024px) {
  /* Override large font sizes in services section */
  #services .row h1[style*="font-size: 60px"] {
    font-size: 42px !important;
  }
  
  /* Override mission section font sizes */
  #our-mission h1[style*="font-size: 60px"] {
    font-size: 48px !important;
  }
}

@media (max-width: 1276px) {
  .company-name-footer{
    white-space: normal !important;
  }
}

@media (max-width: 768px) {
  /* Override large font sizes in services section */
  #services .row h1[style*="font-size: 60px"] {
    font-size: 32px !important;
    line-height: 1.3 !important;
  }
  
  /* Override mission section font sizes */
  #our-mission h1[style*="font-size: 60px"] {
    font-size: 36px !important;
    line-height: 1.3 !important;
  }
  
  /* Fix tooltip on mobile */
  .tooltip-text {
    width: 90%;
    max-width: 300px;
    font-size: 12px;
    left: 50%;
    margin-left: -150px;
  }
}

/* iPad specific breakpoints (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  #home {
    min-height: 90vh;
  }
  
  .home-info.intro-text-left {
    padding-bottom: 50px !important;
  }
  
  .home-info.intro-text-left h2 {
    font-size: 48px !important;
  }
  
  .home-info.intro-text-right img {
    height: 280px !important;
  }
  
  .home-info.intro-text-right h2 {
    font-size: 22px !important;
  }
  
  #services h1 {
    font-size: 48px !important;
  }
  
  #our-mission h1 {
    font-size: 52px !important;
  }
  
  .info-card {
    max-height: 360px;
    max-width: 360px;
    border-radius: 25px;
  }
  
  .mission-card-fixed {
    min-height: 480px;
  }
  
  /* Logo service for tablet */
  .info-card-icon .logo-service {
    width: 75px;
    height: 75px;
    max-width: 75px;
    max-height: 75px;
  }

  .service-badge {
    width: 90px;
    height: 90px;
  }
  
  .service-badge .logo-service {
    width: 66px;
    height: 66px;
    max-width: 66px;
    max-height: 66px;
  }
  
  .service-card h3 {
    font-size: 18px;
    margin-top: 120px;
  }
  
  .service-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Landscape phone orientation */
@media (max-width: 896px) and (orientation: landscape) {
  #home {
    min-height: auto;
    padding-top: 2em;
  }
  
  .home-info.intro-text-left {
    padding-bottom: 20px !important;
  }
  
  .home-info.intro-text-right img {
    height: 200px !important;
  }
}

/* Fix for container padding on mobile */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Better spacing for cards on mobile */
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
  .section-btn,
  .homebtn,
  a.btn {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .navbar-toggle {
    padding: 10px 15px;
  }
  
  .custom-navbar .nav li a {
    padding: 12px 15px;
  }
}

@media (max-width: 768px) {
  /* Footer mobile adjustments */
  .foot_container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  /* Reorder for mobile: image/call us first, copyright at bottom */
  .footer-copyright {
    order: 2;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .footer-right-section {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-right-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .footer-qr {
    display: flex;
    justify-content: center;
    margin: 0 !important;
  }

  .footer-qr image {
    width: 100px !important;
    height: 100px !important;
  }

  .footer-info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
  }

  .footer-info-section #phone-div,
  .footer-info-section .text-center.text-md-right {
    text-align: center !important;
    width: 100%;
  }

  .footer-link-item {
    margin: 0;
  }

  .footer-link-item p,
  .footer-link-item a {
    font-size: 14px;
  }

  .phone-contact p {
    font-size: 14px;
  }

  .copyright-text {
    text-align: center;
  }

  .icon-arrow{
    margin-bottom: 24px;
  }
}

/* Additional mobile optimizations */
@media (max-width: 576px) {
  /* Extra small devices */
  #home {
    padding-top: 1.5em;
  }
  
  .home-info.intro-text-left h2 {
    font-size: 24px !important;
  }
  
  .home-info.intro-text-left p {
    font-size: 12px !important;
  }
  
  .home-info.intro-text-right {
    padding: 10px !important;
    margin: 10px 5px 0 5px !important;
  }
  
  .home-info.intro-text-right img {
    height: 150px !important;
    object-position: center -40px !important;
  }
  
  .home-info.intro-text-right h2 {
    font-size: 16px !important;
  }
  
  .home-info.intro-text-right p {
    font-size: 11px !important;
  }
  
  .home-info .section-btn {
    font-size: 8pt !important;
    padding: 6px 12px !important;
  }
  
  #services h1,
  #services .choose-me h1 {
    font-size: 28px !important;
  }
  
  #our-mission h1 {
    font-size: 32px !important;
  }
  
  .info-card {
    padding: 24px 14px 14px 14px;
    min-height: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px auto;
  }
  
  .info-card::before {
    clip-path: none;
    -webkit-clip-path: none;
    border-radius: 22px;
  }
  
  .info-card-title {
    font-size: 20px;
    margin-top: 12px;
  }
  
  .info-card-title-sub {
    font-size: 17px;
  }
  
  .info-card-text {
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* Logo service responsive */
  .info-card-icon .logo-service {
    width: 55px;
    height: 55px;
    max-width: 55px;
    max-height: 55px;
  }

  .info-card-badge{
    top: -44px;
    left: 12px;
  }

  .info-card-icon{
    top: -24px;
    right: 10px;
    left: auto;
  }
  
  .service-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 24px 14px 14px 14px;
    margin: 0 auto 20px auto;
  }
  
  .service-card::before {
    clip-path: none;
    -webkit-clip-path: none;
    border-radius: 26px;
  }
  
  .service-badge {
    width: 55px;
    height: 55px;
    top: -18px;
    left: 12px;
  }
  
  .service-badge .logo-service {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
  }
  .section-btn {
    font-size: 12pt !important;
    padding: 10px 18px !important;
  }
  
  .icon-arrow {
    width: 30px;
    height: 30px;
    margin-bottom: 24px;
  }
  
  .icon-arrow i {
    font-size: 14px !important;
  }
  
  section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .card,
  .info-card,
  .service-card,
  .mission-card,
  .profile-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  
  .animate-fade-in-up,
  .animate-fade-in-down,
  .animate-fade-in,
  .animate-slide-in-left,
  .animate-slide-in-right,
  .animate-scale-in,
  .animate-zoom-in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*---------------------------------------
     PROFESSIONAL TRICK EFFECTS              
  -----------------------------------------*/

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #52F9FF, #1e94d2, #092B2D);
  z-index: 99999;
  transition: width 0.1s ease-out;
  box-shadow: 0 2px 10px rgba(82, 249, 255, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #52F9FF, #1e94d2);
  color: #092B2D;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(9, 43, 45, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
}

.back-to-top.show {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 20px rgba(9, 43, 45, 0.4);
  background: linear-gradient(135deg, #1e94d2, #52F9FF);
}

.back-to-top:active {
  transform: translateY(-2px) scale(1.05);
}

.counter-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #092B2D;
  display: inline-block;
}

.magnetic-btn {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  display: inline-block;
}

.magnetic-btn:hover {
  transform: scale(1.03);
}

.card-3d {
  perspective: 1000px;
  transition: transform 0.3s ease;
}

.card-3d .card,
.card-3d .info-card,
.card-3d .service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.card-3d .card:hover,
.card-3d .info-card:hover,
.card-3d .service-card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Topics Cards 3D Effect - More Subtle and Beautiful */
#topics .row {
  padding: 15px 0; /* Add padding to prevent edge clipping */
}

#topics .col-12,
#topics .col-md-6,
#topics .col-lg-3 {
  padding: 10px; /* Add padding between cards */
  perspective: 1200px; /* Increase perspective for smoother effect */
}

#topics .card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  margin: 0;
  border-radius: 12px;
  overflow: visible; /* Allow shadow to show */
  will-change: transform;
}

#topics .card:hover {
  transform: translateY(-8px) rotateX(1deg) rotateY(1deg) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15),
              0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  position: relative;
}

/* Smooth 3D tilt based on mouse position */
#topics .card {
  transform-origin: center center;
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

.text-reveal {
  opacity: 0;
  animation: textReveal 0.8s ease-out forwards;
}

.text-reveal.animate {
  animation: textReveal 0.8s ease-out forwards;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradient-text {
  background: linear-gradient(90deg, #52F9FF, #1e94d2, #092B2D, #52F9FF);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
  font-weight: bold;
}

.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(82, 249, 255, 0.3);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  50% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0.5;
  }
}

.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid #52F9FF;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.custom-cursor.active {
  opacity: 1;
}

.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(1.5);
  background: rgba(82, 249, 255, 0.2);
}

.scroll-blur {
  transition: filter 0.3s ease;
}

.scroll-blur.blurred {
  filter: blur(2px);
}

@keyframes shine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.shine-effect:hover::before {
  left: 100%;
  animation: shine 0.8s ease;
}

.glow-effect {
  transition: box-shadow 0.6s ease-out;
}

.glow-effect:hover {
  box-shadow: 0 0 15px rgba(82, 249, 255, 0.5),
              0 0 30px rgba(82, 249, 255, 0.3),
              0 0 45px rgba(82, 249, 255, 0.15);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.pulse-effect {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.wave-effect {
  display: inline-block;
  animation: wave 2s ease-in-out infinite;
}

.wave-effect:nth-child(2) { animation-delay: 0.1s; }
.wave-effect:nth-child(3) { animation-delay: 0.2s; }
.wave-effect:nth-child(4) { animation-delay: 0.3s; }
.wave-effect:nth-child(5) { animation-delay: 0.4s; }

.image-zoom-on-scroll {
  transition: transform 0.3s ease;
  overflow: hidden;
}

.image-zoom-on-scroll img {
  transition: transform 0.5s ease;
}

.image-zoom-on-scroll.zoomed img {
  transform: scale(1.1);
}

.sticky-element {
  position: sticky;
  top: 80px;
  z-index: 100;
  transition: all 0.3s ease;
}

.split-text {
  display: inline-block;
  overflow: hidden;
}

.split-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-text.revealed span {
  opacity: 1;
  transform: translateY(0);
}

@keyframes borderGlow {
  0%, 100% {
    border-color: transparent;
  }
  50% {
    border-color: #52F9FF;
    box-shadow: 0 0 10px rgba(82, 249, 255, 0.5);
  }
}

.border-animate {
  animation: borderGlow 3s ease-in-out infinite;
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.section-transition {
  position: relative;
  overflow: hidden;
}

.section-transition::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(82, 249, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.section-transition.visible::before {
  left: 100%;
}

@media (max-width: 576px) {
  .info-card{
    margin-top: 40px;
  }

  .info-card-badge {
    top: -52px;
    left: -10px;
  }

  .info-card-icon {
    top: -18px;
    right: 10px;
  }
}

/* Restore original card styling for very small devices */
@media (max-width: 500px) {
  .info-card {
    margin-top: 60px;
    padding: 32px 20px 24px 20px;
    min-height: 380px;
    max-width: 380px;
  }

  .info-card::before {
    clip-path: path("M159.847 0.0259828H362.531C383.209 0.0259828 400 16.5249 400 36.8433V363.183C400 383.527 383.209 400 362.531 400H37.4694C16.7647 400 0 383.501 0 363.183V157.091C0 136.954 16.606 120.637 37.0992 120.637H47.8086C89.218 120.637 122.774 87.6652 122.774 46.9765V36.4535C122.774 16.3171 139.38 0 159.873 0L159.847 0.0259828Z");
    -webkit-clip-path: path("M159.847 0.0259828H362.531C383.209 0.0259828 400 16.5249 400 36.8433V363.183C400 383.527 383.209 400 362.531 400H37.4694C16.7647 400 0 383.501 0 363.183V157.091C0 136.954 16.606 120.637 37.0992 120.637H47.8086C89.218 120.637 122.774 87.6652 122.774 46.9765V36.4535C122.774 16.3171 139.38 0 159.873 0L159.847 0.0259828Z");
    border-radius: 28px;
    /* width: 900px; */
  }

  .info-card-badge {
    top: -42px;
    left: -10px;
  }

  .info-card-icon {
    top: -25px;
    right: 10px;
  }

  .info-card-title{
    margin-top: 50px;
  }

  .service-card {
    padding: 32px 20px 24px 20px;
    min-height: 400px;
    max-width: 400px;
  }

  .service-card::before {
    clip-path: path("M161.046 0.0261777H365.25C386.083 0.0261777 403 16.6488 403 37.1196V365.907C403 386.404 386.083 403 365.25 403H37.7505C16.8905 403 0 386.377 0 365.907V158.269C0 137.981 16.7306 121.542 37.3775 121.542H48.1671C89.8871 121.542 123.695 88.3227 123.695 47.3288V36.7269C123.695 16.4394 140.425 0 161.072 0L161.046 0.0261777Z");
    -webkit-clip-path: path("M161.046 0.0261777H365.25C386.083 0.0261777 403 16.6488 403 37.1196V365.907C403 386.404 386.083 403 365.25 403H37.7505C16.8905 403 0 386.377 0 365.907V158.269C0 137.981 16.7306 121.542 37.3775 121.542H48.1671C89.8871 121.542 123.695 88.3227 123.695 47.3288V36.7269C123.695 16.4394 140.425 0 161.072 0L161.046 0.0261777Z");
    border-radius: 32px;
  }

  .service-badge {
    margin-top: 20px;
    width: 88px;
    height: 88px;
    top: 0px;
    left: 16px;
  }

  .service-card h3 {
    margin-top: 140px;
  }
}