@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --primary-color: #0072be;
  --secondary-color: #00a550;
  --accent-color: #005a96;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --gradient: linear-gradient(135deg, #0072be 0%, #00a550 100%);
  --gradient-reverse: linear-gradient(135deg, #00a550 0%, #0072be 100%);
  --bg-gradient: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
}

html {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
}

p,
li,
a {
  font-size: 1rem;
  line-height: 1.7;
}

a,
a:hover {
  text-decoration: none;
  color: var(--dark-color);
  transition: .4s ease;
  cursor: pointer;
}


@media (min-width: 1200px) and (max-width: 1399.98px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1240px;
  }

}

/* Custom Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Top Bar Styles */
.top-bar {
  background: var(--gradient);
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.top-bar .contact-item:hover {
  transform: translateY(-2px);
  color: #00a550;
}

.top-bar .social-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar .social-links a {
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
}

.top-bar .social-links a:hover {
  color: white;
  transform: scale(1.2) rotate(10deg);
  background: rgba(255, 255, 255, 0.1);
}

/* Main Header Styles */
.main-header {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 10px 0;
}

.navbar-brand img {
  width: 265px;
}

.navbar-brand:hover {
  /* animation: pulse 0.6s ease-in-out; */
}


.navbar-nav {
  margin-left: auto;
  /*margin-right: 20px;*/
}

.navbar-nav .nav-link {
  color: var(--dark-color) !important;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
  padding: 15px 0 !important;
  font-size: 1.1rem;
  display: inline-block;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::before {
  width: 100%;
}

span.clk_btn {
  position: relative;
  font-size: 11px;
  right: 12px;
}

.navbar-nav li:hover .dropdown-menu {
  display: block;
  flex-wrap: wrap;
  justify-content: space-between;
}

.navbar>.container {
  position: relative;
}

.mega-menu .dropdown-menu li {
  width: 33%;
  display: inline-block;
  border-bottom: 1px solid #cdcdcd57;
  padding: 12px 10px;
  transition: .4s ease;
}

.navbar li.default-dropdown {
  position: relative;
}

.navbar li.default-dropdown .dropdown-menu li {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #cdcdcd66;
}

.navbar-nav li .dropdown-menu li .dropdown-menu {
  left: 100%;
  top: 0;
  display: none;
}

.navbar-nav .dropdown-menu li .clk_btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px 15px;
}

.navbar-nav li .dropdown-menu li:hover .dropdown-menu {
  display: block;
}

.mega-menu .dropdown-menu li a.dropdown-item {
  padding: 0;
  color: var(--dark-color);
  font-weight: 500;
  background: transparent;
}

.mega-menu .dropdown-menu li span.page-menu-info {
  font-size: .9rem;
  line-height: normal;
}

.mega-menu .dropdown-menu li:hover {
  background: var(--bg-gradient);
  color: var(--primary-color);
  transform: translateX(5px);
}


/* Quote Button */
.quote-btn {
  background: var(--gradient);
  color: white !important;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInScale 1.2s ease-out 0.6s both;
  cursor: pointer;
}

.quote-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.quote-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 114, 190, 0.3);
  color: white !important;
}

.quote-btn:hover::before {
  left: 100%;
}




/* Navbar Toggler Custom */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 114, 190, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Additional styling with your brand colors */
.dropdown-menu {
  border: none;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
  border-radius: 8px;
  animation: fadeInScale 0.3s ease-out;
  min-width: 350px;
  width: 100%;
  left: 0;
  top: 55px;
}

.dropdown-item {
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: var(--bg-gradient);
  color: var(--primary-color);
  transform: translateX(5px);
}


.banner-slides {
  position: relative;
  width: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.slide-item {
  position: absolute;
  top: 20%;
  z-index: 9;
  width: 55%;
}

.banner-slides:before {
  position: absolute;
  content: "";
  width: 70%;
  height: 100%;
  background: linear-gradient(to right, #0074ba 35%, #016db700);
  top: 0;
  left: 0;
}

.hero-subheading {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.4;
  animation: slideInUp 1s ease-out 0.4s both;
  color: white;
  width: 85%;
}

.hero-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 35px;
  animation: slideInUp 1.2s ease-out 0.6s both;
  color: white;
}

/* Enhanced Button Styles */
.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  animation: slideInUp 1.4s ease-out 0.8s both;
}

.primary-btn {
  background: var(--gradient-reverse);
  color: white !important;
  border: none;
  padding: 10px 27px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 165, 80, 0.3);
  display: inline-block;
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.primary-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 165, 80, 0.4);
  color: white !important;
}

.primary-btn:hover::before {
  left: 100%;
}

/*.secondary-btn {*/
/*  background: transparent;*/
/*  color: white !important;*/
/*  border: 2px solid white;*/
/*  padding: 10px 28px;*/
/*  border-radius: 50px;*/
/*  font-weight: 600;*/
/*  text-decoration: none;*/
/*  transition: all 0.4s ease;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  display: inline-block;*/
/*}*/

/*.secondary-btn::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 0;*/
/*  height: 100%;*/
/*  background: white;*/
/*  transition: width 0.4s ease;*/
/*  z-index: -1;*/
/*}*/

/*.secondary-btn:hover {*/
/*  color: var(--primary-color) !important;*/
/*  transform: translateY(-3px);*/
/*  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);*/
/*}*/

/*.secondary-btn:hover::before {*/
/*  width: 100%;*/
/*}*/

.secondary-btn {
  background: var(--secondary-color);
  color: #fff;
  border: 2px solid var(--secondary-color);
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgb(255 255 255 / 39%), inset 0 0 20px rgb(0 165 80 / 18%);
  /* box-shadow: 0 0 30px rgb(0 165 80 / 45%), 0 0 60px rgb(0 165 80 / 45%), inset 0 0 30px rgb(0 165 80 / 22%); */
}

.secondary-btn:hover {
  color: #fff;
  background: transparent;
  transform: translateY(-3px);
  border-color: #fff;
}


.padding {
  padding: 3.7rem 0;
}

.breadcrumb-nav {
  background: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-nav a {
  color: var(--dark-color);
  font-size: 1.1rem;
}


.client-slider {
  background: var(--bg-gradient);
}

.logo-box {
  background: white;
  /* backdrop-filter: blur(10px); */
  border-radius: 16px;
  padding: 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px;
  min-height: 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.logo-box img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease;
}

.logo-box:hover img {
  filter: grayscale(0%);
}

.web-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--dark-color);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
}

.web-subheading {
  font-size: 1.1rem;
}


/* Tabs */
/* Service Tabs */
#servicesTab .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  background: var(--light-color);
  color: var(--dark-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgb(0 0 0 / 14%);
  margin: 0 6px 6px;
}

#servicesTab .nav-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

#servicesTab .nav-link span {
  font-size: 15px;
  white-space: nowrap;
}

/* Hover */
#servicesTab .nav-link:hover {
  background: var(--gradient);
  color: #fff;
}

/* Active */
#servicesTab .nav-link.active {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 114, 190, 0.25);
}

#servicesTab .nav-link.active img,
#servicesTab .nav-link:hover img {
  filter: invert(1);
}

/* Service Cards */

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 40px 25px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
}

/* Gradient line top */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: var(--gradient);
}

/* Icon container */
.ser-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-reverse);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease;
}

.ser-icon-box img {
  width: 36px;
  height: 36px;
  filter: invert(1);
}

/*.service-card:hover .ser-icon-box {*/
/*  transform: scale(1.1) rotate(6deg);*/
/*}*/

/* Heading */
.service-card h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--dark-color);
}

/* Text */
.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* Read More */
.read-more {
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.read-more span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.read-more:hover span {
  transform: translateX(6px);
}

.read-more:hover {
  color: var(--accent-color);
}

.service-card:after {
  position: absolute;
  content: "";
  background-image: url(../imgs/ser-pattern.png);
  width: 100%;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  right: 0;
  background-size: cover;
  opacity: .1;
  z-index: -1;
}

.service-card:hover:after {
  opacity: .2;
  filter: brightness(1.5);
}




.cta-section .cta-container {
  background: url(https://themetechmount.com/html/inqord/demo1/images/bg-image/row-bgimage-1.png) center/cover no-repeat;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

/* subtle overlay for readability */
.cta-section .cta-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 41, 59, 0.6);
  /* dark overlay using --dark-color */
  z-index: 0;
}

.cta-section h2,
.cta-section p,
.btn-cta {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.cta-section h2 .highlight {
  color: var(--secondary-color);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  opacity: 0.95;
}

.btn-cta {
  background: var(--light-color);
  color: var(--dark-color);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: var(--accent-color);
  color: var(--light-color);
  transform: translateY(-2px);
}




.testimonial-section {
  /* background: var(--bg-gradient); */
  /* border-radius: 16px; */
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
}

.section-subtext {
  color: #475569;
  font-size: 1rem;
}

.testimonial-wrapper {
  position: relative;
}

/*.google-badge {*/
/*  position: absolute;*/
/*  top: -36px;*/
/*  right: 10px;*/
/*  background: #fff;*/
/*  border-radius: 50px;*/
/*  padding: 10px 15px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
/*  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
/*  font-weight: 600;*/
/*}*/

/*.google-logo {*/
/*  width: 60px;*/
/*}*/

/*.google-rating {*/
/*  color: #f59e0b;*/
/* gold/yellow */
/*  font-size: 1.2rem;*/
/*}*/

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 95%;
  margin: 1rem auto 1rem;
  min-height: 440px;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-color);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  object-fit: cover;
}

.user-name {
  font-weight: 600;
  color: var(--dark-color);
}

.user-role {
  font-size: 0.9rem;
  color: #64748b;
}

.slider-arrows button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 50%;
  margin: 0 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
}

.slider-arrows button:hover {
  background: var(--accent-color);
}





.why-choose-us:before {
  background: url(../imgs/bg-1.png);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: auto;
  background-repeat: no-repeat;
  /*animation: pulse 3s ease infinite;*/
}

.sticky-col {
  position: sticky;
  top: 100px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
}

.section-desc {
  color: #475569;
  margin-bottom: 2rem;
}

.choose-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  width: 95%;
  height: 100%;
  margin: 0 auto;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.choose-card .icon-box img {
    width: 160px;
    height: 140px;
    margin-bottom: 15px;
    object-fit: contain;
}




.section-title {
  font-size: 2rem;
  font-weight: 700;
}


.industries-section {
  background: var(--gradient);
}

.industries-section .web-heading {
  background: inherit;
  -webkit-text-fill-color: inherit;
}

.industry-tabs .nav-link {
  background: white;
  border-radius: 8px;
  padding: 12px 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
  color: var(--dark);
  border: 1px solid #cdcdcd;
  margin: 0 0 5px;
  display: flex;
  align-items: center;
}

.industry-tabs .nav-link.active,
.industry-tabs .nav-link:hover {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.industry-box {
  background: var(--light-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: .4s ease;
}

.industry-box h3 {
  color: var(--primary-color);
  /* font-weight: 600; */
  margin-top: 1rem;
}

.industry-box p {
  color: var(--dark-color);
  /* margin-bottom: 12px; */
}

.industry-img {
  width: 41%;
  border-radius: 12px;
  object-fit: cover;
  height: 260px;
}

.industry-tabs .nav-link .industry-icon img {
  width: 40px;
  margin-right: 15px;
}

.industry-tabs .nav-link.active img,
.industry-tabs .nav-link:hover img {
  filter: invert(1);
}

.industry-box>div {
  width: 55%;
}



.usp-box {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.usp-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* FontAwesome Icon */
.usp-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.usp-box:hover i {
  color: var(--secondary-color);
  transform: scale(1.1) rotate(5deg);
}

/* Counter Number */
.usp-box h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
  transition: color 0.3s ease;
}

/* Description */
.usp-box p {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Underline Accent */
.usp-box::after {
  content: "";
  width: 0%;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.usp-box:hover::after {
  width: 60%;
}


.blog-section {
  background: var(--bg-gradient);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  display: block;
  border-bottom: 4px solid var(--primary-color);
  height: 250px;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0;
    color: var(--dark-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}

.blog-card .blog-content p {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

.read-more span {
  transition: transform 0.2s;
}

.read-more:hover span {
  transform: translateX(4px);
}

article.blog-content img {
  width: 100%;
  margin: 20px 0;
  border-radius: 20px;
}

article.blog-content a {
  font-weight: 500;
  text-decoration: underline;
  color: var(--primary-color);
}

ul#faqTab li {
  width: 100%;
}

#faqTab .nav-link {
  background: #ecfcf7;
  margin: 0 0 15px;
  padding: 11px 10px;
  color: #000;
  text-align: left;
  box-shadow: rgb(40 40 40 / 23%) 0px 3px 8px;
  width: 100%;
  border-radius: 5px;
}

#faqTab .nav-link.active {
  background: var(--gradient);
  color: white;
}

.accordion-item {
  margin: 0 0 12px;
  border: 1px solid #cdcdcd !IMPORTANT;
  border-radius: 5px !IMPORTANT;
  overflow: hidden !important;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
  background: var(--primary-color);
  color: white;
}

.accordion-button::after {
  content: "+";
  font-weight: bold;
  font-size: 1.2rem;
  background-image: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
}

.faq-flex {
  display: flex;
  align-items: center;
}

.faq-flex img {
  width: 35px;
  margin-right: 10px;
}

#faqTab .nav-link.active img {
  filter: invert(1);
}


.contact-section {
  background: var(--bg-gradient);
  overflow: hidden;
  z-index: 99;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-gradient {
  background: var(--gradient);
  color: #fff !IMPORTANT;
  border: none;
  padding: 12px 0;
}

.btn-gradient:hover {
  background: var(--gradient-reverse);
}

.contact-section .contact-info {
  /*background: var(--primary-color);*/
  /*backdrop-filter: blur(12px);*/
}
.contact-home-info {
    background: var(--primary-color);
    color: white;
}

.bg-shapes::before,
.bg-shapes::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: -1;
}

.bg-shapes::before {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  top: -50px;
  left: -50px;
}

.bg-shapes::after {
  width: 400px;
  height: 400px;
  background: var(--secondary-color);
  bottom: -100px;
  right: -100px;
}


.form-control {
  padding: 9px 10px;
  color: #595c5f;
}

.form-control:focus {
  box-shadow: 0 0 0 .25rem rgb(0 132 152 / 54%);
}

textarea {
  height: 120px;
}


/* Newsletter */
/*.newsletter-section {*/
/*  margin-bottom: -80px;*/
  /* overlap effect */
/*  margin-top: 3rem;*/
/*  z-index: 99;*/
/*}*/

/*.newsletter-box {*/
/*  background: var(--gradient);*/
/*  border-radius: 1.5rem;*/
/*  padding: 2rem;*/
/*  max-width: 100%;*/
/*  margin: 0 auto;*/
/*  position: relative;*/
/*  z-index: 2;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*}*/

/*.subscribe-input {*/
/*  flex: 1;*/
/*  min-width: 220px;*/
/*}*/


/* Newsletter Section */
        .newsletter-section {
            margin-bottom: -80px;
            margin-top: 3rem;
            z-index: 99;
            position: relative;
        }

        .newsletter-box {
            background: var(--gradient);
            border-radius: 2rem;
            padding: 2rem 2.5rem;
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            overflow: hidden;
            box-shadow:
                0 25px 50px rgba(0, 114, 190, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
        }


        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        .news-text {
            /* flex: 1; */
            margin-right: 2rem;
            position: relative;
            z-index: 3;
            width: 60%;
        }

        .news-text h4 {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            /* background: linear-gradient(45deg, #ffffff, #e0f7ff); */
            /* -webkit-background-clip: text; */
            /* -webkit-text-fill-color: transparent; */
            /* background-clip: text; */
            /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
            color: white;
        }

        .news-text p {
            font-size: 1.1rem;
            /* margin-bottom: 1.5rem; */
            color: rgba(255, 255, 255, 0.95);
            font-weight: 400;
        }

        /* Enhanced Subscribe Form */
        .news-form {
            position: relative;
            z-index: 3;
        }

        .subscribe-container {
            display: flex;
            gap: 1rem;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem;
            border-radius: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .subscribe-container:hover {
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
        }

        .subscribe-input {
            background: transparent;
            border: none;
            color: white;
            font-size: 1rem;
            padding: 0.7rem 1.3rem;
            flex: 1;
            min-width: 250px;
            outline: none;
            border-radius: 30px;
        }

        .subscribe-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .subscribe-btn {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 2rem;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .subscribe-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 114, 190, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .subscribe-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
            background: var(--light-color);
        }

        .subscribe-btn:hover::before {
            left: 100%;
        }

        /* Button Container */
        .new-letter-btns {
            display: flex;
            gap: 1rem;
            align-items: center;
            position: relative;
            z-index: 3;
            width: 30%;
            justify-content: center;
        }

        /* Enhanced Mail Button - Glowing Effect */
        .enhanced-mail-btn {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 1.5rem;
            border-radius: 1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            box-shadow:
                0 8px 25px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .enhanced-mail-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
            border-radius: 1rem;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .enhanced-mail-btn:hover {
            color: white;
            transform: translateY(-3px) scale(1.02);
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow:
                0 15px 35px rgba(255, 255, 255, 0.2),
                0 0 20px rgba(255, 255, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .enhanced-mail-btn:hover::before {
            opacity: 1;
        }

        .enhanced-mail-btn i {
            font-size: 1.1rem;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
        }

        /* Enhanced Call Button - Pulse Effect */
        .enhanced-call-btn {
            background: white;
            color: var(--primary-color);
            border: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 1.5rem;
            border-radius: 1rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        .enhanced-call-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--gradient);
            border-radius: 50%;
            transition: all 0.4s ease;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .enhanced-call-btn:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow:
                0 15px 35px rgba(255, 255, 255, 0.4),
                0 0 30px rgba(0, 114, 190, 0.3);
            animation: pulse 1.5s infinite;
        }

        .enhanced-call-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .enhanced-call-btn i {
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .enhanced-call-btn:hover i {
            animation: ring 0.8s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4), 0 0 30px rgba(0, 114, 190, 0.3);
            }

            50% {
                box-shadow: 0 15px 35px rgba(255, 255, 255, 0.6), 0 0 40px rgba(0, 114, 190, 0.5);
            }
        }

        @keyframes ring {

            0%,
            100% {
                transform: rotate(0deg);
            }

            25% {
                transform: rotate(-15deg);
            }

            75% {
                transform: rotate(15deg);
            }
        }




/* Footer */
.footer-tech {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding-top: 130px;
  z-index: 9;
  padding-bottom: 10px;
}

.footer-tech:before {
  position: absolute;
  content: "";
  background-image: url(../imgs/footer-bg.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .1;
  z-index: -1;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 6px;
}

.footer-list a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-list a:hover {
  color: var(--secondary-color);
}

.social-link {
  font-size: 1rem;
  transition: transform 0.3s;
  color: white;
  width: 35px;
  height: 35px;
  display: grid;
  place-content: center;
  border-radius: 100%;
}

.social-link:hover {
  transform: translateY(-3px);
  color: white;
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.twitter {
  background: #000000;
}

.social-link.github {
  background: #333;
}

.social-link.instagram {
  background: linear-gradient(45deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
}


.footer-bottom a {
  color: var(--light-color);
  text-decoration: none;
  margin-left: 5px;
  font-size: .9rem;
}

.footer-bottom a:hover {
  color: var(--primary-color);
}

footer h5 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.footer-contact i {
  background: var(--secondary-color);
  width: 35px;
  height: 35px;
  display: inline-grid;
  place-content: center;
  border-radius: 100%;
}

section {
  position: relative;
  overflow-x: clip;
  scroll-margin-top: 100px;
}


/* Small dot (instant) */
.cursor {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-color);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear;
}

/* Follower bubble (smooth lag) */
.cursor-follower {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
  mix-blend-mode: difference;
  /* techy glowing effect */
}

/* Hover effect on links & buttons */
a:hover~.cursor-follower,
button:hover~.cursor-follower {
  width: 55px;
  height: 55px;
  border-color: var(--secondary-color);
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  outline: none;
  background: var(--gradient);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 114, 190, 0.3);
  transition: all 0.3s ease;
}

/* Hover effect */
#scrollTopBtn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 165, 80, 0.4);
}

/* Show button */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}


/* Preloader container */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  /* techy dark background */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Loader glowing bars */
.loader {
  display: flex;
  gap: 8px;
}

.loader span {
  width: 10px;
  height: 40px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 8px;
  animation: pulses 1s infinite ease-in-out;
}

.loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Smooth glowing animation */
@keyframes pulses {

  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}

/* Loading text */
.loading-text {
  margin-top: 20px;
  color: var(--accent-color);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}


button#cancelPreloader {
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  background: var(--primary-color);
  color: white;
  padding: 10px 66px;
  border-radius: 0 0 50px 0;
  font-size: 1.2rem;
}


img {
  max-width: 100%;
  transition: .4s ease;
}


.hover-img {
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.hover-img:hover img {
  transform: scale(1.2) rotate(2deg);
  filter: brightness(0.7);
}

.hover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Inner Banner Component - Reusable with Dynamic Image */
.inner-banner {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.inner-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.inner-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.80;
  z-index: 2;
}

.inner-banner-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'><defs><pattern id='grid' width='50' height='50' patternUnits='userSpaceOnUse'><path d='M 50 0 L 0 0 0 50' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/></pattern></defs><rect width='100%' height='100%' fill='url(%23grid)'/></svg>");
  /* fallback base color */
  z-index: 3;
  /* animation: float 20s ease-in-out infinite; */
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='partners-pattern' width='40' height='40' patternUnits='userSpaceOnUse'><path d='M20 0v40M0 20h40' stroke='rgba(255,255,255,0.08)' stroke-width='1'/><circle cx='20' cy='20' r='3' fill='rgba(255,255,255,0.1)'/><circle cx='10' cy='10' r='1.5' fill='rgba(255,255,255,0.08)'/><circle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.08)'/></pattern></defs><rect width='100%' height='100%' fill='url(%23partners-pattern)'/></svg>");
  opacity: .6;
}

.inner-banner-content {
  position: relative;
  z-index: 4;
  text-align: left;
  padding: 100px 0 80px;
  width: 100%;
}

.inner-banner h1 {
  font-size: 3.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* animation: slideUp 1s ease-out; */
}

.inner-banner .lead , .inner-banner p {
  font-size: 1.4rem;
  /*opacity: 0.9;*/
  /* animation: slideUp 1s ease-out 0.2s both; */
}

.breadcrumb-custom {
  background: transparent;
  padding: 0;
  margin-top: 30px;
  justify-content: center;
  animation: slideUp 1s ease-out 0.4s both;
}

.breadcrumb-custom .breadcrumb-item {
  font-size: 1rem;
}

.breadcrumb-custom .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.breadcrumb-custom .breadcrumb-item a:hover {
  color: white;
}

.breadcrumb-custom .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

/* Custom Bootstrap Overrides */
.btn-primary {
  background: var(--gradient);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gradient-reverse);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 114, 190, 0.3);
}

.bg-light-custom {
  background: var(--bg-gradient) !important;
}

/* Section Styling */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-color);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}


/* Value Cards */
/*.value-card {*/
/*  background: white;*/
/*  padding: 2rem;*/
/*  border-radius: 15px;*/
/*  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
/*  text-align: center;*/
/*  transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*  height: 100%;*/
/*  border: 1px solid rgba(0, 114, 190, 0.1);*/
/*}*/

/*.value-card:hover {*/
/*  transform: translateY(-5px);*/
/*  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);*/
/*}*/

/*.value-icon {*/
/*  width: 80px;*/
/*  height: 80px;*/
/*  background: var(--gradient);*/
/*  border-radius: 50%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  margin: 0 auto 1.5rem;*/
/*  color: white;*/
/*  font-size: 2rem;*/
/*}*/


.value-item {
  padding: 10px 0;
}

.value-icon-alt {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/*.values-section h4 {*/
/*  color: #0d6efd;*/
/*}*/

.value-text {
  width: 85%;
}


/* Team Cards */
.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  width: 95%;
  margin: 0 auto 0;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.team-image img {
  height: 290px;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  position: relative;
  /* overflow: hidden; */
  font-weight: 600;
  object-fit: cover;
  width: 100%;
}

.team-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.team-card:hover .team-image::before {
  opacity: 0.1;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-social {
  position: absolute;
  top: 4%;
  z-index: 9;
  right: 15px;
  transform: scaleX(-1) scale(.5);
  transition: .4s ease;
  opacity: 0;
}

.team-social a {
  background: var(--secondary-color);
  width: 35px;
  height: 35px;
  display: grid;
  place-content: center;
  border-radius: 100%;
  color: white;
  margin: 0 0 5px;
}

.team-card:hover .team-social {
  transform: none;
  opacity: 1;
}

.team-social a:hover {
  background: var(--primary-color);
}

/* Utility Classes */
.text-muted-custom {
  color: #64748b !important;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.about-pg-img {
  height: 420px;
  width: 90%;
  margin-left: auto;
}

li {
  list-style: none;
}

dl,
ol,
ul {
  padding: 0;
  margin: 0;
}

ul.slick-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

ul.slick-dots li button {
  border: 0;
  font-size: 0;
  width: 20px;
  height: 5px;
  background: var(--primary-color);
  border-radius: 30px;
  margin: 0 0 0 5px;
  transition: .4s ease;
}

ul.slick-dots li.slick-active button {
  width: 40px;
  background: var(--secondary-color);
}

.founder-section {
  max-width: 1200px;
  margin: 0 auto;
}

.founder-card:hover::before {
  transform: scaleX(1);
}

.founder-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: flex-start;
}

.founder-image-container {
  position: relative;
  width: 300px;
  height: 341px;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-image-container::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: var(--gradient);
  border-radius: 20px;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
}

.founder-info h3 {
  font-weight: 700;
  color: var(--dark-color);
}

.founder-title {
  font-weight: 600;
  background: var(--gradient-reverse);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.founder-description {
  margin-bottom: 25px;
}

.founder-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.highlight-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.highlight-item p {
  font-size: 0.95rem;
  color: var(--dark-color);
  opacity: 0.7;
  margin: 0;
}

.founder-quote {
  padding: 20px;
  border-radius: 16px;
  border-left: 6px solid var(--secondary-color);
  margin-top: 32px;
  position: relative;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark-color);
  line-height: 1.6;
  background: var(--bg-gradient);
}


.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
}


.category-tab {
  background: var(--light-color);
  color: var(--dark-color);
  border: 2px solid transparent;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-tab:hover {
  background: rgba(0, 114, 190, 0.1);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.category-tab.active {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 114, 190, 0.3);
}

.category-tab i {
  font-size: 1.1rem;
}

/* Partner Logos Grid */
.partners-grid {
  /*display: grid;*/
  /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
  /*gap: 30px;*/
  margin-top: 40px;
}

/*.partner-card {*/
/*  background: rgba(255, 255, 255, 0.95);*/
/*  backdrop-filter: blur(15px);*/
/*  border-radius: 20px;*/
/*  padding: 25px;*/
/*  text-align: center;*/
/*  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);*/
/*  border: 1px solid rgba(0, 114, 190, 0.1);*/
/*  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*width: 95%;*/
/*margin: 1rem auto;*/
/*}*/

/*.partner-card::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 4px;*/
/*  background: var(--gradient);*/
/*  transform: scaleX(0);*/
/*  transition: transform 0.4s ease;*/
/*}*/

/*.partner-card:hover {*/
/*  transform: translateY(-10px) scale(1.02);*/
/*  box-shadow: 0 25px 60px rgba(0, 114, 190, 0.15);*/
/*}*/

.partner-card:hover::before {
  transform: scaleX(1);
}

/*.partner-logo {*/
/*  width: 190px;*/
/*  height: 100px;*/
/*  margin: 0 auto 0;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  background: var(--light-color);*/
/*  border-radius: 12px;*/
/*  transition: all 0.3s ease;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*}*/

/*.partner-logo::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: var(--gradient);*/
/*  opacity: 0;*/
/*  transition: opacity 0.3s ease;*/
/*}*/

/*.partner-card:hover .partner-logo::before {*/
/*  opacity: 0.1;*/
/*}*/

.partner-logo img {
  /*max-width: 90%;*/
  /*max-height: 90%;*/
  /*object-fit: contain;*/
  /* filter: grayscale(100%); */
  transition: all 0.3s ease;
}

/*.partner-card:hover .partner-logo img {*/
/*  filter: grayscale(0%);*/
/*  transform: scale(1.05);*/
/*}*/



/* Partnership Benefits Section */
.partnership-benefits {
  /* padding: 100px 0; */
  background: var(--bg-gradient);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  /* position: absolute; */
  top: -50%;
  /* left: -50%; */
  /* width: 200%; */
  /* height: 200%; */
  /* background: conic-gradient(from 0deg, #0098a426, rgb(0 129 215 / 10%), transparent); */
  /* opacity: 1; */
  /* transition: all 0.6s ease; */
  /* animation: rotate 20s linear infinite; */
}

.benefit-card:hover::before {
  opacity: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 114, 190, 0.2);
}

.benefit-icon {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
  font-size: 2.5rem;
  color: white;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.benefit-description {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}


/* Become Partner Section */

.become-partner-content {
  max-width: 800px;
  margin: 0 auto;
}








/* Video Testimonials Section */


.video-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 114, 190, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.video-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 114, 190, 0.15);
}

.video-card:hover::before {
  transform: scaleX(1);
}

.video-client-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 8px;
  margin-top: 1rem;
}

.video-client-title {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-pg .testimonial-card {
  margin: 0 0 25px;
  width: 100%;
}





/* Main Content Area */

.blog-content-page .blog-content {
  /* background: white; */
  /* border-radius: 20px; */
  /* padding: 30px 25px; */
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); */
  /* border: 1px solid rgba(0, 114, 190, 0.1); */
  /* position: relative; */
  /* overflow: hidden; */
  padding: 0;
}

.blog-content-page .blog-content::before {
  /* content: ''; */
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 4px; */
  /* background: var(--gradient); */
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  color: var(--dark-color);
  /* font-weight: 700; */
  /* margin-top: 1rem; */
  /* margin-bottom: 1rem; */
  /* line-height: 1.3; */
}

.blog-content h1 {
  font-size: 2.2rem;
  color: var(--primary-color);
}

.blog-content h2 {
  font-size: 1.5rem;
  border-left: 4px solid var(--secondary-color);
  padding-left: 20px;
}

.blog-content h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
}


.blog-content ul,
.blog-content ol {
  margin: 1.5rem 0;
  padding-left: 1rem;
}

.blog-content li {
  margin-bottom: 0.4rem;
  list-style: auto;
}

.blog-content blockquote {
  background: var(--bg-gradient);
  border-left: 4px solid var(--primary-color);
  padding: 20px 25px;
  margin: 2rem 0;
  border-radius: 0 12px 12px 0;
  position: relative;
}

.blog-content blockquote p {
  font-style: italic;
  font-size: 1.2rem;
  margin: 0;
  color: var(--dark-color);
}

.blog-image {
  margin: 0 0 2rem;
  height: 400px;
}

.blog-content-area ul,
.blog-content-area ol {
  background: linear-gradient(135deg, rgba(0, 114, 190, 0.1) 0%, rgba(0, 165, 80, 0.1) 100%);
  border: 1px solid rgba(0, 114, 190, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin: 1rem 0;
  position: relative;
}

.highlight-box h4 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 30px;
}

.sidebar-widget {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 25px 20px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 114, 190, 0.1);
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 114, 190, 0.12);
}

.widget-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--bg-gradient);
}


/* Author Widget */
.author-widget {
  text-align: center;
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 3px solid var(--primary-color);
  padding: 3px;
}

.author-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.author-title {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.author-bio {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.author-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.related-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 114, 190, 0.1);
}

.related-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.related-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post:hover .related-thumb img {
  transform: scale(1.1);
}

.related-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 5px;
  line-height: 1.4;
}

.related-content h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-content h4 a:hover {
  color: var(--primary-color);
}

.related-meta {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  background: rgba(0, 114, 190, 0.1);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-2px);
}

/* Newsletter Widget */
.newsletter-form {
  text-align: center;
}

.newsletter-form p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 20px;
}

.newsletter-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(0, 114, 190, 0.1);
  border-radius: 8px;
  font-size: 0.95rem;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-btn {
  width: 100%;
  background: var(--gradient);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--gradient-reverse);
  transform: translateY(-2px);
}

/* Social Sharing */
.social-sharing {
  background: var(--bg-gradient);
  border-radius: 12px;
  padding: 25px;
  margin: 3rem 0;
  text-align: center;
}

.sharing-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.sharing-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

article.blog-content .share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-control.textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-btn {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--gradient-reverse);
  transform: translateY(-2px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 40px 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 114, 190, 0.1);
  position: sticky;
  overflow: hidden;
  top: 50px;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 114, 190, 0.1);
  transform: translateY(-2px);
}

.form-control.textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.btn-submit {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-submit:hover {
  background: var(--gradient-reverse);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 114, 190, 0.3);
}

.btn-submit:hover::before {
  left: 100%;
}

/* Contact Information */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
  position: relative;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 114, 190, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 114, 190, 0.15);
}

.contact-card:hover::before {
  transform: scaleY(1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.contact-icon i {
  font-size: 1.8rem;
  color: white;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.contact-details {
  color: #64748b;
  line-height: 1.7;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--secondary-color);
}

.contact-hours {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 114, 190, 0.1);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.hours-day {
  font-weight: 600;
  color: var(--dark-color);
}

.hours-time {
  color: #64748b;
}

/* Map Section */
.map-section {
  /* padding: 80px 0; */
  background: var(--bg-gradient);
}

.map-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 114, 190, 0.1);
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.office-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.office-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 114, 190, 0.1);
  transition: all 0.3s ease;
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 114, 190, 0.12);
}

.office-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.office-icon i {
  color: white;
  font-size: 1.5rem;
}

.office-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.office-address {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 114, 190, 0.1);
}

.faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 114, 190, 0.1);
  padding-bottom: 25px;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question i {
  color: var(--primary-color);
  font-size: 1rem;
}

.faq-answer {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Support Options */
.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.support-card {
  background: var(--bg-gradient);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  border: 2px solid rgba(0, 114, 190, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.support-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 114, 190, 0.15);
}

.support-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.support-card:hover .support-icon {
  transform: scale(1.1);
}

.support-icon i {
  color: white;
  font-size: 1.4rem;
}

.support-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.support-description {
  color: #64748b;
  font-size: 0.9rem;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='hero-grid' width='20' height='20' patternUnits='userSpaceOnUse'><circle cx='10' cy='10' r='1' fill='rgba(0,114,190,0.1)'/></pattern></defs><rect width='100%' height='100%' fill='url(%23hero-grid)'/></svg>");
  opacity: 0.4;
  z-index: 0;
  filter: brightness(0);
}

.service-hero .container {
  position: relative;
  z-index: 1;
}

.service-badge {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-title {
  font-size: 2.2rem;
  font-weight: bold;
}

.service-subtitle {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 25px;
}

.detail-main-content li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.detail-main-content li i {
  color: var(--secondary-color);
  margin-right: 12px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background: var(--gradient-reverse);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 114, 190, 0.3);
  color: white;
}

.btn-secondary-custom {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary-custom:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.service-features-section {
  background: var(--bg-gradient);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 114, 190, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 114, 190, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon i {
  color: white;
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.why-choose-list {
  list-style: none;
  padding: 0;
  /* margin-top: 30px; */
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(0, 114, 190, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.why-choose-item:hover {
  background: rgba(0, 114, 190, 0.1);
  transform: translateX(10px);
}

.why-choose-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.why-choose-icon i {
  color: white;
  font-size: 1.2rem;
}

.why-choose-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.why-choose-details p {
  color: #64748b;
  margin: 0;
  font-size: 0.95rem;
}

.why-service-img {
  height: 600px;
}

/* Locations Section */
.locations-section {
  /* padding: 100px 0; */
  background: var(--bg-gradient);
  /* position: relative; */
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.location-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 114, 190, 0.15);
}

.location-card:hover::before {
  transform: scaleX(1);
}

.location-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.location-icon i {
  color: white;
  font-size: 1.5rem;
}

.location-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.location-details {
  color: #64748b;
  font-size: 0.9rem;
}

ul.service-pg-tabs {
  flex-direction: column;
  background: var(--bg-gradient);
  padding: 25px;
  border-radius: 10px;
  position: sticky;
  top: 50px;
}

ul.service-pg-tabs button.nav-link {
  width: 100%;
  margin: 0 0 20px !important;
}

.industry-listing .industry-box {
  flex-direction: column;
  background: var(--bg-gradient);
}

.industry-listing .industry-box img {
  width: 100%;
  height: 220px;
}

.industry-listing .industry-box>div {
  width: 100%;
}

.industry-listing .industry-box h3 {
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.industry-listing .industry-box p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.industry-listing .industry-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 15px rgb(0 0 0 / 17%);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-text {
  padding-right: 20px;
}

.content-highlights {
  list-style: none;
  padding: 0;
}

.content-highlights li {
  margin-bottom: 10px;
}

.content-image {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.content-image:hover img {
  transform: scale(1.05);
}

/* Features Section */
.industry-features {
  background: var(--bg-gradient);
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 114, 190, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon i {
  color: white;
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.feature-benefits {
  list-style: none;
  padding: 0;
  text-align: left;
}

.feature-benefits li {
  margin-bottom: 5px;
}

.feature-benefits li i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 0.8rem;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.problems-section,
.solutions-section {
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.problems-section {
  background: linear-gradient(135deg, rgba(220, 38, 127, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
  border: 2px solid rgba(220, 38, 127, 0.2);
}

.solutions-section {
  background: linear-gradient(135deg, rgba(0, 114, 190, 0.1) 0%, rgba(0, 165, 80, 0.1) 100%);
  border: 2px solid rgba(0, 114, 190, 0.2);
}

.problems-title {
  color: #dc2626;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.solutions-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.problem-item,
.solution-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.problem-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
}

.solution-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-5px);
}

.problem-item h4,
.solution-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.problem-item p,
.solution-item p {
  color: #64748b;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Differentiators Section */
.differentiators {
  /* padding: 80px 0; */
  background: var(--gradient);
  /* color: white; */
  text-align: center;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.differentiator-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 30px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.differentiator-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.differentiator-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.differentiator-icon i {
  font-size: 1.5rem;
  color: white;
}

.differentiator-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
}

.differentiator-description {
  font-size: 0.9rem;
  opacity: 0.9;
  color: white;
}

.form-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 114, 190, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 114, 190, 0.1);
}

.form-control.textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.btn-submit:hover {
  background: var(--gradient-reverse);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 114, 190, 0.3);
}

.differentiators .web-heading {
  background: inherit;
  -webkit-text-fill-color: inherit;
}













.timeline-section {
  /* background: var(--bg-gradient); */
  position: relative;
  overflow: hidden;
}


.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient);
  transform: translateX(-50%);
  border-radius: 10px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}


.timeline-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 45%;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-content:hover::before {
  opacity: 1;
}

.timeline-item.left .timeline-content {
  margin-left: 0;
  text-align: right;
}

.timeline-item.right .timeline-content {
  margin-left: 55%;
  text-align: left;
}

.timeline-year {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 114, 190, 0.3);
  z-index: 2;
}

.timeline-icon {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(0, 165, 80, 0.3);
  z-index: 3;
}

.milestone-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.milestone-description {
  font-size: 1rem;
  color: var(--dark-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.milestone-stats {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.timeline-item.right .milestone-stats {
  justify-content: flex-start;
}

.stat-item {
  text-align: center;
  padding: 10px 15px;
  background: var(--bg-gradient);
  border-radius: 10px;
  border: 1px solid rgba(0, 114, 190, 0.1);
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--dark-color);
  opacity: 0.7;
}

.timeline-content:hover h3,
.timeline-content:hover p {
  color: white;
}


/* ===========================================
   ABOUT PAGE NEW SECTIONS STYLING
   =========================================== */

/* Certifications Section */
.certifications-section {
  background: var(--bg-gradient);
  position: relative;
}

.certifications-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cert-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%230072be" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cert-pattern)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.certifications-section .container {
  position: relative;
  z-index: 2;
}

.certification-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 114, 190, 0.1);
  position: relative;
  overflow: hidden;
}

.certification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 114, 190, 0.1), transparent);
  transition: left 0.6s ease;
}

.certification-card:hover::before {
  left: 100%;
}

.certification-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 114, 190, 0.2);
  border-color: var(--primary-color);
}

.certification-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.certification-card:hover .certification-image {
  transform: scale(1.1) rotate(5deg);
}

.certification-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certification-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.certification-desc {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.certification-card:hover .certification-title {
  color: var(--primary-color);
}

/* Locations Section */
.about-locations-section {
  position: relative;
  overflow: hidden;
}

.about-locations-section .container {
  position: relative;
  z-index: 2;
}

.about-location-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 114, 190, 0.1);
  position: relative;
}

.about-location-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 114, 190, 0.25);
}

.about-location-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.about-location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-location-card:hover .about-location-image img {
  transform: scale(1.1);
}

.about-location-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  z-index: 3;
}

.about-location-card:hover .about-location-overlay {
  background: white;
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-location-content {
  padding: 1.5rem;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.about-location-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.about-location-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-location-city {
  background: rgba(0, 114, 190, 0.1);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-location-card:hover .about-location-city {
  background: #00a5501f;
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.about-location-info {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 114, 190, 0.1);
}

.about-location-info p {
  color: var(--dark-color);
  font-size: 1rem;
  margin: 0;
}

.about-location-info i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* CTA Banner Section */
.about-cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.about-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
  z-index: 1;
}

.about-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.about-cta-banner .container {
  position: relative;
  z-index: 3;
}

.about-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.about-cta-actions .primary-btn {
  background: white;
  color: var(--primary-color) !important;
  border: 2px solid white;
  padding: 12px 30px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.about-cta-actions .primary-btn:hover {
  background: transparent;
  color: white !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.about-cta-actions .secondary-btn {
  background: transparent;
  color: white !important;
  border: 2px solid white;
  padding: 12px 30px;
  font-weight: 600;
}

.about-cta-actions .secondary-btn:hover {
  background: white;
  color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ===========================================
   SERVICE CATEGORIES PAGE ENHANCEMENTS
   =========================================== */

/* Enhanced Service Categories Content */
.service-categories-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 114, 190, 0.1);
  position: relative;
  overflow: hidden;
}

.service-categories-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 114, 190, 0.02) 0%, rgba(0, 165, 80, 0.02) 100%);
  z-index: 1;
}

.service-categories-content .row {
  position: relative;
  z-index: 2;
}

.service-categories-text {
  padding-right: 2rem;
}

.service-categories-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
}

.feature-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}

.feature-item span {
  font-weight: 500;
  color: var(--dark-color);
  font-size: 1rem;
}


/* Why Choose Services Section */
.why-choose-services-section {
  position: relative;
  overflow: hidden;
}

.why-choose-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="why-choose-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="%230072be" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23why-choose-pattern)"/></svg>');
  z-index: 1;
}

.why-choose-services-section .container {
  position: relative;
  z-index: 2;
}

.why-choose-services-section .why-choose-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 114, 190, 0.1);
  position: relative;
  overflow: hidden;
}

.why-choose-services-section .why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 114, 190, 0.05) 0%, rgba(0, 165, 80, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.why-choose-services-section .why-choose-card:hover::before {
  opacity: 1;
}

.why-choose-services-section .why-choose-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 114, 190, 0.2);
  border-color: var(--primary-color);
}

.why-choose-services-section .why-choose-card>* {
  position: relative;
  z-index: 2;
}

.why-choose-services-section .why-choose-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 114, 190, 0.3);
}

.why-choose-services-section .why-choose-card:hover .why-choose-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(0, 114, 190, 0.4);
}

.why-choose-services-section .why-choose-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.why-choose-services-section .why-choose-card:hover .why-choose-title {
  color: var(--primary-color);
}

.why-choose-services-section .why-choose-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.why-choose-services-section .why-choose-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: rgba(0, 114, 190, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.why-choose-services-section .why-choose-card:hover .why-choose-highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  transform: translateY(-5px);
}

.why-choose-services-section .highlight-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.why-choose-services-section .why-choose-card:hover .highlight-number {
  color: white;
}

.why-choose-services-section .highlight-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-color);
  transition: color 0.3s ease;
}

.why-choose-services-section .why-choose-card:hover .highlight-text {
  color: white;
}

/* Why Choose CTA */
.why-choose-cta {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 114, 190, 0.1);
  position: relative;
  overflow: hidden;
}

.why-choose-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 114, 190, 0.02) 0%, rgba(0, 165, 80, 0.02) 100%);
  z-index: 1;
}

.why-choose-cta>* {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-buttons .primary-btn {
  background: var(--gradient);
  color: white !important;
  border: 2px solid transparent;
  padding: 12px 30px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 114, 190, 0.3);
}

.cta-buttons .primary-btn:hover {
  background: transparent;
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 114, 190, 0.2);
}

.cta-buttons .secondary-btn {
  background: transparent;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
}

.cta-buttons .secondary-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 114, 190, 0.2);
}





/* About Our Partnerships Section */
.about-partnerships {
  background: var(--light-color);
  position: relative;
}

.about-partnerships::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../imgs/ser-pattern.png') repeat;
  opacity: 0.03;
  z-index: 1;
}

.about-partnerships .container {
  position: relative;
  z-index: 2;
}

.partnership-content {
  padding-right: 2rem;
}

.partnership-features {
  margin: 2rem 0;
}

.partnership-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-color);
}

.partnership-features .feature-item i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}


.partnership-image {
  max-width: 100%;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.partnership-image img:hover {
  transform: scale(1.02);
}

/* Why Industry-Focused IT Matters Section */
.industry-focus {
  background: white;
  position: relative;
}

.industry-focus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../imgs/ser-pattern.png') repeat;
  opacity: .1;
  z-index: 1;
}

.industry-focus .container {
  position: relative;
  z-index: 2;
}

.industry-focus-content {
  padding-right: 2rem;
}

.focus-points {
  margin-top: 2rem;
}

.focus-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--light-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.focus-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.focus-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.focus-icon i {
  font-size: 1.5rem;
  color: white;
}

.focus-text h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.focus-text p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.industry-focus-image {
  position: relative;
  text-align: center;
}

.industry-focus-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.focus-stats {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.stat-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}






/* ===========================================
   Blog Page Enhanced Styles
   =========================================== */

/* Blog Search Bar */
.blog-search-wrapper {
  margin-bottom: 2rem;
}

.search-box {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-box .form-control {
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  padding: 15px 60px 15px 25px;
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.search-box .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 114, 190, 0.25);
  outline: none;
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.search-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 114, 190, 0.3);
}

/* Blog Categories Tabs */
.blog-categories-tabs {
  margin-bottom: 3rem;
}

.blog-categories-tabs .nav-pills {
  background: #f8fafc;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-categories-tabs .nav-link {
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  margin: 0 5px;
  font-weight: 500;
  color: #64748b;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.blog-categories-tabs .nav-link:hover {
  color: var(--primary-color);
  background: rgba(0, 114, 190, 0.1);
}

.blog-categories-tabs .nav-link.active {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 114, 190, 0.3);
}

.blog-categories-tabs .nav-link.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  border-radius: 25px;
}

/* Blog Pagination */
.blog-pagination {
  margin-top: 4rem;
}

.blog-pagination .pagination {
  gap: 10px;
}

.blog-pagination .page-link {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 18px;
  color: #64748b;
  font-weight: 500;
  transition: all 0.3s ease;
  background: white;
}

.blog-pagination .page-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(0, 114, 190, 0.05);
  transform: translateY(-2px);
}

.blog-pagination .page-item.active .page-link {
  background: var(--gradient);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 114, 190, 0.3);
}

.blog-pagination .page-item.disabled .page-link {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
}

/* Popular Articles Section */
.popular-articles-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.popular-articles-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e2e8f0" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e2e8f0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.popular-articles-section .blog-card {
  width: 95%;
  margin: 1rem auto;
}

.banner-slider ul.slick-dots {
  position: absolute;
  bottom: 20px;
  z-index: 99;
  left: 50%;
  /* flex-direction: column; */
  transform: translate(-50%, -50%);
}

.banner-slider ul.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #eee;
  margin: 0 0 0 7px;
}

.banner-slider ul.slick-dots li.slick-active button {
  transform: scale(1.2);
  background: var(--secondary-color);
}

.contact-form-location {
  position: sticky;
  top: 50px;
}

.location-services {
  background: var(--gradient);
}

.location-services h2.web-heading {
  background: none;
  color: white;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
}

.location-detail .service-card {}

.location-services .service-card {
  height: 100%;
  padding: 20px;
  text-align: center;
  background: transparent;
}

.location-services .service-card::before {
  display: none;
}

.location-services .service-card .ser-icon-box {
  margin: 0 auto 10px;
}

.location-services .service-card .ser-icon-box {
  background: var(--bg-gradient);
}

.location-services .service-card .ser-icon-box img {
  filter: none;
}

.location-services .service-card h5,
.location-services .service-card p,
.location-services .service-card a {
  color: white;
}

.industry-card-location {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #009e5f;
  background: var(--bg-gradient);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.industry-card-location:hover {
  background: var(--bg-gradient);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.industry-card-location i {
  font-size: 2rem;
  margin: 0 0 1rem;
  color: var(--primary-color);
}

.location-slider .about-location-card {
  width: 95%;
  margin: 2rem auto;
}

.location-contact-info {
  width: 90%;
  margin-left: auto;
}

.location-contact-info i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.location-detail-contact .map-box iframe {
  height: 400px;
}

.btn-location {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  transition: 0.3s ease;
  margin: 1rem 0 0;
}

.btn-location:hover {
  background: var(--gradient-reverse);
  transform: translateY(-2px);
  color: white;
}

.about-location-content p {
  margin: 5px 0;
  font-size: 0.9rem;
  color: var(--dark-color);
}

.about-location-content i {
  margin-right: 6px;
  color: var(--primary-color);
}


.sticky {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  animation: slidetop 1s ease-in-out backwards;
  background-color: #fff;
  box-shadow: rgb(0 0 0 / 1%) 0px 3px 8px;
}

@keyframes slidetop {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.sticky .top-bar {
  display: none;
}

.sticky .navbar {
  padding: 5px 0;
}

.sticky .navbar-brand img {
  width: 235px;
}

.news-form button {
  /* position: absolute; */
  /* top: 0; */
  /* right: 0; */
  /* margin: 0 !IMPORTANT; */
  /* background: #000; */
  /* color: #fff; */
  /* padding: 8px 10px; */
}

.news-form form {
  position: relative;
}


.advantages-section {
  background: var(--bg-gradient);
}

/*.advantage-box {*/
/*  background: #fff;*/
/*  border: 1px solid #e2e8f0;*/
/*  border-radius: 16px;*/
/*  padding: 2rem;*/
/*  transition: all 0.3s ease;*/
/*  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);*/
/*}*/

/*.advantage-box:hover {*/
/*  border-color: var(--primary-color);*/
/*  transform: translateY(-4px);*/
/*  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);*/
/*}*/

/*.advantage-title {*/
/*  font-size: 1.25rem;*/
/*  font-weight: 600;*/
/*  color: var(--dark-color);*/
/*  margin-bottom: 0.75rem;*/
/*}*/

/*.advantage-text {*/
/*  font-size: 1rem;*/
/*  color: #475569;*/
/*  margin: 0;*/
/*}*/

.advantage-box {
            background: white;
            border: none;
            border-radius: 20px;
            padding: 2rem 2rem;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .advantage-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--gradient);
            transition: height 0.4s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .advantage-box:hover::before {
            height: 100%;
        }

        .advantage-box::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 0 20px 0 100%;
            opacity: 1;
            transition: opacity 0.4s ease;
        }

        .advantage-box:hover::after {
            /* opacity: 1; */
        }

        .advantage-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 114, 190, 0.15);
        }

        .advantage-box .advantage-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            display: block;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .advantage-box:hover .advantage-icon {
            color: var(--secondary-color);
            transform: scale(1.1);
        }

        .advantage-box .advantage-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .advantage-box .advantage-text {
            font-size: 1rem;
            color: #475569;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

 .cta-section.location-cta-section .cta-container {
    background: #ecfcf6;
}

 .cta-section.location-cta-section .cta-container::before {
    width: 100px;
    height: 100px;
    border-radius: 0 0  500px;
    background: var(--gradient);
}

 .cta-section.location-cta-section .cta-container::after {
    width: 100px;
    height: 100px;
    border-radius: 500px 0 0;
    background: var(--gradient);
    right: 0;
    left: auto;
    position : absolute;
    content : '';
    bottom: 0;
}

.cta-section.location-cta-section .cta-container .secondary-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.toc {
    /*position: sticky;*/
    top: 50px;
    background: white;
    z-index: 99;
    padding: 10px 0;
}

.toc li {
    margin-left: 0;
}

.partner-client-frame {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    width : 95%;
    margin : 1rem auto;
    position: relative;
    overflow: hidden;
}

.partner-client-frame iframe {
    width: 100%;
    height: 250px;
}

.popupForm .modal-body {
    padding: 0;
}

.popupForm button.btn-close {
    background: var(--secondary-color);
    opacity: 1;
    padding: 8px;
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 9;
    display: grid;
    place-content: center;
    color: white;
}

.modal-dialog.popupForm {
    max-width: 600px;
}

a.secondary-btn.industry-btn {
    color: var(--secondary-color);
    background: white;
    border-color: white;
}

.process-container .col-lg-3.col-md-6:last-child .process-step .arrow-right {
    display: none !important;
}









/*RESPONSIVE QUERY______*/


@media only screen and (max-width: 1280px) {

}

@media only screen and (max-width: 1199px) {

}

@media only screen and (max-width: 1140px) {

}

@media only screen and (max-width: 1024px) {
    
    .quote-btn {
    padding: 8px 15px;
    font-size: 13px;
}

a.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    width: 200px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    margin: 0 5px;
}




}

@media only screen and (max-width: 991px) {
    
    .navbar-toggler {
    order: 3;
}

.slide-item {
    width: 75%;
}

.banner-slides:before {
    width: 100%;
}

.hero-title {
    font-size: 2.7rem;
    margin: 0 0 1rem;
}

.cta-section h2 {
    font-size: 1.7rem; 
}

.newsletter-box {
    flex-direction: column;
}

.news-text {
    width: 100%;
    margin: 0 0 1rem;
}

.new-letter-btns {
    width: 100%;
}

.navbar-collapse {
    position: absolute;
    width: 100%;
    background: white;
    left: 0;
    top: 60px;
    z-index: 99;
}

ul.navbar-nav {
    margin: 0;
}

.navbar-nav .nav-link {
    width: 100%;
    margin: 0;
    padding: 8px 10px !important;
    border-bottom: 1px solid #cdcdcd73;
    font-size: 1rem;
}

.navbar-nav .nav-link::before {
    display: none;
}

.navbar li.nav-item {
    position: relative;
}

span.clk_btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px 18px;
}

.dropdown-menu {
    animation: none;
}

.navbar-nav li .dropdown-menu li .dropdown-menu {
    background: #f8f8f8;
}

footer h5 {
    margin: 1rem 0 .8rem;
}

.navbar-nav li:hover .dropdown-menu {
    display: none;
}

.w-75 {
    width: 100% !important;
}

.about-pg-img {
    width: 100%;
    height: auto;
}

.timeline-content {
    padding: 25px;
}

.timeline-year {
    width: 60px;
    height: 60px;
    font-size: 12px;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    font-size: 12px;
}

.sticky .navbar-brand img , .navbar-brand img {
    width: 190px;
}

.blog-image {
    margin: 0 0 2rem;
    height: auto;
}

.contact-grid {
    display: block;
}

.contact-form-wrapper {
    position: static;
    margin: 0 0 2rem;
}

.map-wrapper {
    height: 200px;
}









}


@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 840px) {

}


@media only screen and (max-width: 800px) {

}


@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 767px) {
    
html {
    font-size : 15px ;
}    

.top-bar .social-links {
    display: none;
}

.top-bar {
    padding: 8px 0;
}

a.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    width: 180px;
}

a.quote-btn {
    padding: 8px 15px;
    font-size: 14px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 550px;
}

.hero-title {
    font-size: 2.3rem;
}

.hero-description {
    font-size: 1rem;
    margin: 0 0 15px;
}

.navbar-collapse {
    top: 45px;
}

.dropdown-item {
    font-size: 14px;
}

.sticky .navbar {
    padding: 8px 0;
}

.breadcrumb-nav a {
    font-size: 1rem;
    padding: 4px 10px;
}

.padding {
    padding: 2.7rem 0;
}

.web-heading {
    font-size: 2rem;
    margin: 0 0 .7rem;
}

.cta-section h2 {
    font-size: 1.5rem;
    line-height: 1.5;
}

.secondary-btn {
    font-size: 14px;
    padding: 8px 25px;
}

ul#industryTabs {
    flex-direction: row !IMPORTANT;
    /* justify-content: center; */
    gap: 0 10px;
}

.choose-card {
    width: 100%;
    margin: 1rem 0 0;
    height: auto;
}

.choose-card .icon-box img {
    width: 110px;
}

.industry-img {
    height: 220px;
}

ul#faqTab li {
    width: auto;
    margin: 0 15px 0px 0px;
}

ul#faqTab {
    justify-content: center;
}

.footer-box img {
    width: 200px;
}

.industry-tabs .nav-link .industry-icon img {
    width: 25px;
    margin-right: 10px;
}

.subscribe-btn {
    padding: 12px 20px;
    font-size: 14px;
}

.inner-banner {
    min-height: 275px;
}

.inner-banner-content {
    padding: 70px 0 50px;
}

.inner-banner h1 {
    font-size: 2.4rem;
}

.why-choose-cta {
    padding: 2rem; 
}

.service-title {
    font-size: 2rem;
}

.service-subtitle {
    margin: 0 0 .7rem;
}

.btn-primary-custom , .btn-secondary-custom {
    padding: 10px 20px;
    font-size: 14px;
    line-height: normal;
}

.hero-image {
    height: auto;
}

p.feature-description {
    margin: 0;
}

.why-service-img {
    height: auto;
}

.locations-grid {
    gap: 20px;
}

.about-cta-overlay {
    text-align: center;
}

.about-cta-content {
    text-align: center;
    margin: 0 0 1rem;
}

.about-cta-title {
    font-size: 2rem;
}

.timeline-content {
    width: 90%;
    margin-left: auto !important;
    text-align: left !IMPORTANT;
}

.timeline-item.right .timeline-content {
    width: 100%;
    margin: 0;
}

.timeline-line {
    left: 0px;
}

.timeline-year {
    left: 0;
}

.timeline-icon {
    left: 0;
}

.timeline-item.right .timeline-content {
    width: 90%;
    margin-left: auto;
}

.milestone-stats {
    justify-content: flex-start !IMPORTANT;
}

.top-bar .col-md-8 {
    width: auto;
}

.top-bar .col-md-4 {
    width: auto;
    justify-content: end !important;
}

.top-bar .row {
    justify-content: space-between;
}






    
    

}

@media only screen and (max-width: 667px) {

}

@media only screen and (max-width: 575px) {
    
.slide-item {
    width: 90%;
}

.top-bar .contact-item a {
    font-size: 13px;
}

.top-bar .contact-item {
    gap: 3px;
}

.mb-5 {
    margin-bottom: 1.5rem !important;
}

.service-card {
    padding: 25px;
}

.ser-icon-box {
    width: 60px;
    height: 60px;
}

.ser-icon-box img {
    width: 30px;
    height: auto;
}

.cta-section .cta-container {
    padding: 2rem 2rem;
}

.usp-box {
    padding: 25px;
}

.usp-box i {
    font-size: 1.5rem;
}

.usp-box h3 {
    font-size: 1.5rem;
    margin: 0;
}

.primary-btn {
    display: inline-block;
    padding: 7px 23px;
}

.slider-arrows button {
    font-size: 1rem;
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-content: center;
    font-size: 13px;
}

.faq-flex img {
    width: 25px;
}

.enhanced-mail-btn , .enhanced-call-btn {
    padding: 10px 25px;
    border-radius: 50px;
}

.footer-tech:before {
    background-size: auto;
}

.footer-bottom {
    justify-content: center !IMPORTANT;
}

/*a.quote-btn {*/
/*    display: none;*/
/*}*/

.top-bar .quote-btn {
    padding: 5px 15px;
    font-size: 13px;
}



#scrollTopBtn {
    width: 40px;
    height: 40px;
    font-size: 12px;
    right: 10px;
}

.industry-box {
    flex-direction: column;
}

.industry-img {
    width: 100%;
    height: 185px;
}

.industry-box>div {
    width: 100%;
}

.features-grid {
    gap : 20px ;
}

.mt-5 {
    margin-top: 1.5rem !important;
}

.web-heading {
    font-size: 1.8rem; 
}

.partner-client-frame {
    width: 100%;
    margin : 0 ;
}

.contact-icon {
    width: 60px;
    height: 60px; 
}

.testimonial-card {
    min-height : auto;
}




}

@media only screen and (max-width: 500px) {

}

@media only screen and (max-width: 480px) {
    
.top-bar .contact-item .a-1 {
    display: none;
}

.cta-section.location-cta-section .cta-container::before {
    width: 60px;
    height: 60px;
}

.cta-section.location-cta-section .cta-container::after {
    width: 60px;
    height: 60px;
}

.subscribe-container {
    flex-direction: column;
    gap: 3px;
    border: 0;
    background: transparent;
}

.subscribe-input {
    min-width: auto;
    border: 1px solid;
    margin: 0 0 .3rem;
}

.new-letter-btns {
    /* flex-direction: column; */
    gap: 5px;
}

.newsletter-box {
    padding: 1rem;
}

p.hero-description {
    display: none;
}

.hero-image-wrapper img {
    height: 420px;
}

.banner-slides:before {
    background: linear-gradient(to right, #0074baab 35%, #0d90ec3b);
}




}

@media only screen and (max-width: 414px) {

}

@media only screen and (max-width: 375px) {

}

@media only screen and (max-width: 360px) {

}


@media only screen and (max-width: 320px) {

}







