/**
* Template Name: Company
* Template URL: https://bootstrapmade.com/company-free-html-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Nunito",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1bbd36; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #1bbd36; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1bbd36; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #1bbd36;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2ae149;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Futuristic Gradient Glass Navbar Theme
# Fully Responsive (Desktop + Mobile + Tablet)
--------------------------------------------------------------*/
.header {
  background: linear-gradient(110deg, rgba(27, 29, 32, 0.25), rgba(15, 23, 42, 0.85));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0;
  z-index: 999;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Logo Styling - FIXED (Proper scaling)
--------------------------------------------------------------*/
.header .logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.header .logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.header .logo img:hover {
  transform: scale(1.05);
}

.header .logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #38bdf8, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header .logo span {
  font-weight: 800;
  font-size: 32px;
  color: #38bdf8;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    color: #e2e8f0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all 0.4s ease;
  }

  .navmenu a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
  }

  .navmenu a:hover::before {
    width: 60%;
  }

  .navmenu a:hover {
    color: #fff;
    background: rgba(56, 189, 248, 0.1);
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.3);
  }

  .navmenu .active {
    color: #38bdf8;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mobile-nav-toggle:hover {
    color: #38bdf8;
    transform: rotate(90deg);
  }

  .navmenu {
    position: relative;
    z-index: 9999;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    right: 0;
    top: 60px;
    width: 85%;
    margin: 0 auto;
    list-style: none;
    text-align: center;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    padding: 20px 0;
    transition: all 0.4s ease;
  }

  .mobile-nav-active .navmenu ul {
    display: block;
  }

  .navmenu a {
    color: #f1f5f9;
    display: block;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: #fff;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    border-radius: 10px;
    transform: scale(1.05);
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #38bdf8;
    z-index: 10000;
  }

  /* Fix logo size for mobile */
  .header .logo img {
    max-height: 42px;
  }
}

/*--------------------------------------------------------------
# Scroll Effect (Optional)
--------------------------------------------------------------*/
.header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
}

:root {
  --brand-color: #ff9e00;
}

.dynamic-footer {
  position: relative;
  background: radial-gradient(circle at 30% 30%, #030617, #040b21 80%);
  color: #e3e7ee;
  padding: 100px 0 50px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.dynamic-footer .footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 110, 253, 0.15), rgba(255, 255, 255, 0.05));
  opacity: 0.4;
  z-index: 0;
  animation: moveGradient 15s ease infinite;
}

@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#footerCanvas {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity: 0.4;
}

/* Layout */
.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 0 25px;
}

.footer-column {
  flex: 1 1 300px;
  min-width: 250px;
}

/* Headings */
.footer-column h4 {
  color: var(--brand-color);
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.footer-column h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--brand-color), #ffe0b2);
  border-radius: 3px;
}

/* Links */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul a {
  color: #cdd2da;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-column ul a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-color), #0d6efd);
  transition: width 0.3s ease;
}

.footer-column ul a:hover::after { width: 100%; }
.footer-column ul a:hover { color: #ffffff; }

/* Company Info */
.company-info p {
  font-size: 14px;
  line-height: 1.8;
  color: #bfc9d3;
}

/* Logo */
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
  position: relative;
}

.logo-glow {
  position: relative;
  display: inline-block;
}

.logo-glow::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -25px;
  right: -25px;
  bottom: -25px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
  filter: blur(35px);
  opacity: 1;
  z-index: 1;
}

.footer-logo img {
  height: 60px;
  position: relative;
  z-index: 2;
  filter: brightness(1.25) drop-shadow(0 0 25px rgba(255, 255, 255, 0.8));
}

.footer-logo span {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Divider */
.footer-divider {
  border: none;
  height: 1px;
  width: 85%;
  margin: 70px auto 25px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.05));
  position: relative;
  z-index: 2;
}

/* ✅ Center Highlighted Social Icons */
.footer-social-center {
  text-align: center;
  margin: 30px 0;
  position: relative;
  z-index: 3;
}

.footer-social-center .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.footer-social-center .social-icons a:hover {
  background: #ffffff;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255,255,255,0.8);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  color: #aab4c1;
  font-size: 14px;
  z-index: 3;
  position: relative;
}

.footer-bottom strong { color: #fff; }
.footer-bottom p { margin: 6px 0; }

/* Responsive */
@media (max-width: 768px) {
  .footer-content { flex-direction: column; text-align: center; }
  .footer-logo { align-items: center; }
  .footer-social-center .social-icons a { margin: 0 5px; }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color, #0f172a); /* fallback dark background */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Prevent body scroll while preloading */
body.preloading {
  overflow: hidden;
}

/* Company Logo Style */
#preloader .preloader-logo {
  width: 300px;
  height: auto;
  animation: logoPulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

/* Pulse Animation for Logo */
@keyframes logoPulse {
  0% { transform: scale(1);   opacity: 1; }
  50%{ transform: scale(1.1); opacity: 0.7; }
  100%{ transform: scale(1);  opacity: 1; }
}

/* Fade-out when page is marked as loaded */
body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section - Modern Gradient Glass Theme
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  height: 100vh;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Soft dark overlay over video */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(110deg, rgba(15, 23, 42, 0.75), rgba(13, 110, 253, 0.25));
  backdrop-filter: blur(3px);
  z-index: 1;
}

/* Modern glass container */
.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 720px;
  padding: 60px 40px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(13, 110, 253, 0.15);
  animation: fadeUp 1s ease-in-out;
}

/* Animated gradient edge glow */
.hero-container::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.7), rgba(111, 66, 193, 0.6), rgba(255, 255, 255, 0.3));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Headings */
.hero-container h2 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #ffffff, #aad3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero-container p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 28px;
}

/* Button */
.btn-get-started {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: #fff;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-get-started:hover {
  background: linear-gradient(90deg, #00c6ff, #007bff);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(13, 110, 253, 0.5);
}

/* Carousel Controls */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 26px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 1;
}

.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.6);
}

/* Indicators */
.hero .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.hero .carousel-indicators li.active {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.5);
}

/* Animation */
@keyframes fadeUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    padding: 40px 25px;
  }
  .hero-container h2 {
    font-size: 2.1rem;
  }
  .hero-container p {
    font-size: 1rem;
  }
}


/*--------------------------------------------------------------
# About Section - Futuristic Light Flow Theme
--------------------------------------------------------------*/

.about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #fafdff 0%, #ffffff 100%);
  color: #2a2a2a;
  padding: 100px 0;
}

/* Floating Pastel Gradient Shapes */
.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  z-index: 0;
  animation: floatBlobs 14s ease-in-out infinite alternate;
}

.blob1 {
  top: -120px;
  left: -150px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #a8e6ff, #c9f7d7);
}

.blob2 {
  bottom: -120px;
  right: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #ffd8e1, #fff3b0);
}

.blob3 {
  top: 50%;
  left: 40%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #c3f0ff, #e9faff);
  opacity: 0.25;
}

@keyframes floatBlobs {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

/* About Image Section */
.about-image-wrapper {
  position: relative;
}

.about-image-glass {
  position: absolute;
  top: -25px;
  left: -25px;
  right: 25px;
  bottom: 25px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  border-radius: 2rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.about-image {
  position: relative;
  z-index: 2;
  border-radius: 1.5rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 150, 200, 0.25);
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(90deg, #00b4d8, #90e0ef);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
  animation: pulseBadge 3s ease-in-out infinite;
}

.floating-badge i {
  font-size: 1.1rem;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

/* Content Card */
.about-card {
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.8rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  color: #2a2a2a;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

/* Headings */
.about-heading {
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00b4d8, #f77f00, #ff9a76);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-subtitle {
  letter-spacing: 2px;
  color: #666;
}

.story-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 10px;
  color: #0081a7;
}

/* Text & Highlights */
.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.highlight {
  color: #00b4d8;
  font-weight: 600;
}

/* Bullet List */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 1rem;
  color: #333;
}

.about-list i {
  color: #00b4d8;
  font-size: 1.3rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.about-list li:hover i {
  transform: scale(1.2);
  color: #f77f00;
}

/* Signature */
.signature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.signature-img {
  width: 90px;
  opacity: 0.8;
}

.signature-text {
  font-weight: 600;
  color: #0081a7;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 991px) {
  .about {
    padding: 60px 20px;
  }

  .about-card {
    padding: 2rem;
  }

  .about-heading {
    font-size: 2rem;
  }

  .story-title {
    font-size: 1.4rem;
  }

  .about-image-wrapper {
    margin-bottom: 3rem;
  }

  .floating-badge {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}


/*--------------------------------------------------------------
# Services Section - Modern Gradient Glass Theme
--------------------------------------------------------------*/

.services {
  position: relative;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  overflow: hidden;
}

.services-gradient {
  position: absolute;
  top: -100px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, #b2f7ef40, #ffffff00);
  filter: blur(90px);
  z-index: 0;
  animation: floatBg 12s ease-in-out infinite alternate;
}

@keyframes floatBg {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

/* Section Title */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* Service Cards */
.services .service-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

/* Icon Circle */
.services .service-item .icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.services .service-item .icon i {
  font-size: 38px;
  transition: transform 0.4s ease, color 0.3s ease;
}

/* Title & Text */
.services .service-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 10px 0 15px;
  color: #222;
}

.services .service-item p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 320px;
}

/* Hover Effects */
.services .service-item:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

/* Color Variants */
.services .service-item.item-cyan .icon i { color: #00b4d8; }
.services .service-item.item-orange .icon i { color: #ff8c00; }
.services .service-item.item-teal .icon i { color: #009688; }
.services .service-item.item-red .icon i { color: #e63946; }
.services .service-item.item-indigo .icon i { color: #5a4fcf; }
.services .service-item.item-pink .icon i { color: #f06292; }

/* Hover Gradient Animation */
.services .service-item.item-cyan:hover {
  background: linear-gradient(145deg, #e0f7fa, #ffffff);
  border-color: #00b4d8;
}
.services .service-item.item-orange:hover {
  background: linear-gradient(145deg, #fff3e0, #ffffff);
  border-color: #ff8c00;
}
.services .service-item.item-teal:hover {
  background: linear-gradient(145deg, #e0f2f1, #ffffff);
  border-color: #009688;
}
.services .service-item.item-red:hover {
  background: linear-gradient(145deg, #ffe6e9, #ffffff);
  border-color: #e63946;
}
.services .service-item.item-indigo:hover {
  background: linear-gradient(145deg, #ede7f6, #ffffff);
  border-color: #5a4fcf;
}
.services .service-item.item-pink:hover {
  background: linear-gradient(145deg, #fce4ec, #ffffff);
  border-color: #f06292;
}

/* Responsive */
@media (max-width: 991px) {
  .services {
    padding: 60px 20px;
  }

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

  .services .service-item {
    padding: 40px 25px;
  }

  .services .service-item h3 {
    font-size: 1.3rem;
  }

  .services .service-item p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Company Overview Section - Light, Unique Landing Style
   - Fresh, airy, modern micro-interactions (inspired by top SaaS landing pages)
--------------------------------------------------------------*/

.company {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  color: #1f2937; /* dark-gray text */
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: visible;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container tweaks (preserve Bootstrap structure) */
.company .container {
  position: relative;
  z-index: 2;
}

/* Headings (preserve .fw-bold & .text-primary usage) */
.company h2.fw-bold {
  font-size: 2.25rem;
  line-height: 1.05;
  margin-bottom: 0.4rem;
  letter-spacing: -0.4px;
}

.company .text-primary {
  color: #0d6efd; /* primary accent - keeps compatibility with bootstrap variable */
}

/* Subheading */
.company .text-muted {
  color: #6b7280;
  font-size: 1rem;
  margin-top: 0.3rem;
}

/* Image column */
.company-image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

/* main image */
.company-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  transition: transform 0.6s cubic-bezier(.2,.9,.2,1), box-shadow 0.6s;
  display: block;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(16,24,40,0.06);
}

/* subtle parallax hover */
.company-image-wrap:hover .company-image {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 60px rgba(16,24,40,0.09);
}

/* decorative sticker on image (keeps original content untouched) */
.company-sticker {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(250,250,255,0.75));
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 8px 20px rgba(16,24,40,0.06);
  font-size: 0.9rem;
  color: #0b1220;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  transform-origin: left top;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* small visual detail for sticker text */
.company-sticker strong { font-weight: 700; font-size: 0.95rem; }
.company-sticker span { font-size: 0.78rem; color: #475569; }

/* Card that contains text (keeps headings like .fw-bold etc.) */
.company-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,250,255,0.95));
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(15,23,42,0.04);
  box-shadow: 0 12px 30px rgba(16,24,40,0.04);
  transition: transform 0.45s cubic-bezier(.2,.9,.2,1), box-shadow 0.45s;
}

/* lift effect on hover (desktop) */
.company-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(16,24,40,0.07);
}

/* Sub headings inside card (preserve .fw-bold) */
.company-card h4.fw-bold {
  font-size: 1.15rem;
  color: #0f1724;
  margin-bottom: 0.6rem;
}

/* paragraph text */
.company-card p {
  color: #334155;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

/* Benefits list - keep .list-unstyled class usage but style it */
.company-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-top: 10px;
  padding-left: 0;
}

.company-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #344054;
  font-size: 0.98rem;
}

/* style the bootstrap icon (bi) check circle */
.company-benefits .bi-check-circle {
  font-size: 1.15rem;
  color: #10b981; /* green success */
  background: linear-gradient(180deg, rgba(16,185,129,0.09), rgba(16,185,129,0.03));
  padding: 4px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Company stats microcards */
.company-stats {
  gap: 14px;
}

.stat-item {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(15,23,42,0.03);
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  min-width: 96px;
  align-items: flex-start;
  box-shadow: 0 8px 20px rgba(16,24,40,0.03);
}

.stat-value {
  font-weight: 700;
  font-size: 1.15rem;
  color: #0b1220;
  letter-spacing: 0.6px;
}

.stat-label {
  font-size: 0.82rem;
  color: #64748b;
}

/* subtle animated entrance for sticker and stats when section comes into view */
[data-aos] .company-sticker,
[data-aos] .company-stats .stat-item {
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(.2,.9,.2,1), opacity 0.55s;
}

[data-aos].aos-animate .company-sticker,
[data-aos].aos-animate .company-stats .stat-item {
  transform: translateY(0);
  opacity: 1;
}

/* Accessibility tweaks */
.company a, .company a:focus { outline: none; }
.company img { max-width: 100%; height: auto; }

/* Responsive behavior */
@media (max-width: 991px) {
  .company { padding-top: 40px; padding-bottom: 40px; }
  .company h2.fw-bold { font-size: 1.75rem; }
  .company-image-wrap { max-width: 100%; }
  .company-sticker { top: 12px; left: 12px; padding: 6px 10px; font-size: 0.82rem; }
  .company-card { padding: 20px; margin-top: 8px; }
  .company-benefits { grid-template-columns: 1fr; gap: 8px 10px; }
  .company-stats { width: 100%; justify-content: space-between; gap: 8px; }
  .stat-item { min-width: 80px; padding: 8px 12px; }
}

/* Tiny visual polish: ensure Bootstrap .bg-white not overridden badly */
.bg-white {
  background-color: #ffffff !important;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.clients .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Testimonials Section - Modern Bright Carousel Theme
   - Unique layout with large quote motif, soft gradients, and
     refined typographic scale. Works with your existing HTML.
--------------------------------------------------------------*/

.testimonials {
  position: relative;
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
  color: #0f1724; /* neutral dark for text */
  -webkit-font-smoothing: antialiased;
}

/* Section heading - keep bootstrap classes but restyle */
.testimonials .text-center h2.fw-bold {
  font-size: 2.4rem;
  letter-spacing: -0.4px;
  margin-bottom: 0.2rem;
  color: #0b1220;
}

.testimonials .text-center p.text-muted {
  color: #6b7280;
  font-size: 1rem;
  margin-top: 0.35rem;
}

/* Swiper container adjustments (ensures visible overflow for card shadows) */
.testimonials .swiper {
  position: relative;
  padding-bottom: 24px; /* space for pagination */
}

/* swiper-slide baseline */
.testimonials .swiper-slide {
  display: flex;
  justify-content: center;
  padding: 12px 8px;
}

/* Testimonial card base */
.testimonials .testimonial-item {
  width: 100%;
  max-width: 780px; /* wide, centered cards for desktop */
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.03);
  transition: transform 0.45s cubic-bezier(.2,.9,.2,1), box-shadow 0.45s;
  position: relative;
  z-index: 2;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hover lift for desktop */
.testimonials .testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

/* Decorative large quote mark (left) */
.testimonials .testimonial-item::before {
  content: "“";
  position: absolute;
  top: 14px;
  left: 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 72px;
  line-height: 0.9;
  color: rgba(14, 165, 233, 0.08); /* subtle brand-tinted mark */
  z-index: 0;
  pointer-events: none;
}

/* Quote text */
.testimonials .testimonial-item p {
  font-style: normal; /* remove italic for modern look */
  font-weight: 500;
  font-size: 1.05rem;
  color: #0b1220;
  line-height: 1.9;
  margin: 0;
  position: relative;
  z-index: 3; /* above decorative mark */
}

/* Name & role */
.testimonials .testimonial-item h5 {
  margin-top: 18px;
  margin-bottom: 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b1220;
  position: relative;
  z-index: 3;
}

.testimonials .testimonial-item span {
  font-size: 0.92rem;
  color: #6b7280;
  position: relative;
  z-index: 3;
}

/* Optional avatar support (keeps .testimonial-img compatibility if you add images) */
.testimonials .testimonial-item .testimonial-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 20px rgba(15,23,42,0.06);
  margin-right: 14px;
}

/* Layout variant when you decide to include avatar + text in a row:
   Not required by current HTML but styles available and non-destructive */
.testimonials .testimonial-item .testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Stars (if used) */
.testimonials .testimonial-item .stars {
  margin-top: 10px;
  color: #f59e0b; /* amber */
}

/* Pagination (swiper dots) - modern pill style */
.testimonials .swiper-pagination {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  z-index: 10;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(15,23,42,0.12);
  opacity: 1;
  border-radius: 999px;
  margin: 0 6px !important;
  transition: transform 0.25s, background 0.25s;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  transform: scale(1.6);
  background: linear-gradient(90deg, #06b6d4, #f97316);
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.15);
}

/* Small decorative underline under names (subtle) */
.testimonials .testimonial-item h5::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #06b6d4, #f97316);
  border-radius: 3px;
  margin-left: 12px;
  vertical-align: middle;
  transform: translateY(-2px);
}

/* Mobile adjustments: stack tighter and make cards narrower */
@media (max-width: 991px) {
  .testimonials {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .testimonials .testimonial-item {
    max-width: 100%;
    padding: 22px;
    border-radius: 12px;
    min-height: auto;
  }

  .testimonials .testimonial-item::before {
    font-size: 56px;
    top: 6px;
    left: 10px;
  }

  .testimonials .text-center h2.fw-bold {
    font-size: 1.6rem;
  }

  .testimonials .text-center p.text-muted {
    font-size: 0.95rem;
  }

  .testimonials .swiper-pagination {
    margin-top: 14px;
  }
}

/* Accessibility - focus styles for swipe controls (if keyboard/tab available) */
.swiper-button-next:focus,
.swiper-button-prev:focus,
.testimonials .swiper-pagination .swiper-pagination-bullet:focus {
  outline: 3px solid rgba(6,182,212,0.18);
  outline-offset: 4px;
}

/* Ensure bg-light preserved behavior */
.bg-light {
  background-color: #f8f9fa !important;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 0;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Metrics Section - Modern "Pulse Rings" Theme
  - Bright, airy, editorial-style metrics
  - Subtle animated rings and pop-in counters
  - Works with your Bootstrap structure and classes
--------------------------------------------------------------*/

.metrics {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding-top: 64px;
  padding-bottom: 64px;
  overflow: visible;
  color: #0f1724;
  -webkit-font-smoothing: antialiased;
}

/* Section H1 - keeps your original text but makes it elegant */
.metrics h1 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #0b1220;
  margin-bottom: 28px;
  letter-spacing: -0.4px;
}

/* Row and column baseline */
.metrics .row {
  position: relative;
  z-index: 2;
}

/* Metric card style (we keep the col-md-3 structure) */
.metrics .col-md-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Value + ring wrapper */
.metrics .fw-bold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  margin: 0 auto 12px;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
  color: #0b1220;
  background: radial-gradient(circle at 35% 25%, #ffffff 0%, #f7fbff 40%, #f2f9ff 100%);
  box-shadow: 0 14px 40px rgba(16,24,40,0.06);
  border: 1px solid rgba(15,23,42,0.03);
  transition: transform 0.45s cubic-bezier(.2,.9,.2,1), box-shadow 0.45s;
}

/* Decorative pulse ring (uses pseudo element) */
.metrics .fw-bold::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  z-index: -1;
  background: conic-gradient(from 180deg, rgba(6,182,212,0.12), rgba(249,115,22,0.08), rgba(6,182,212,0.08));
  filter: blur(16px);
  opacity: 0.95;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Hover micro-interaction on desktop */
.metrics .col-md-3:hover .fw-bold {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 60px rgba(16,24,40,0.08);
}

.metrics .col-md-3:hover .fw-bold::after {
  transform: scale(1.06);
  opacity: 1;
}

/* Metric number and suffix styling inside h2 - keep .text-primary usage */
.metric-value {
  display: inline-block;
  font-size: 2.1rem;
  font-weight: 900;
  color: #0b1220;
  transform-origin: center;
}

.metric-suffix {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #06b6d4; /* teal-ish accent */
  margin-left: 6px;
}

/* Label under number */
.metrics p {
  margin: 0;
  margin-top: 12px;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Animated entry: fade+up for each column */
.metrics .col-md-3 {
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.7s cubic-bezier(.2,.9,.2,1), opacity 0.7s;
}

/* Will become visible by JS intersection observer (class .in-view toggled) */
.metrics .col-md-3.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .metrics {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .metrics h1 {
    font-size: 1.6rem;
    margin-bottom: 18px;
  }

  .metrics .fw-bold {
    width: 110px;
    height: 110px;
    font-size: 1.5rem;
  }

  .metric-value {
    font-size: 1.4rem;
  }

  .metric-suffix {
    font-size: 0.9rem;
  }
}

/* Preserve .bg-light; ensure no conflicts */
.bg-light {
  background-color: #f8f9fa !important;
}

/* keep your existing CSS exactly as is */

/* === Added minimal styles for swiper navigation buttons === */
.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
  color: #06b6d4; /* same accent tone as pagination gradient start */
  transition: color 0.3s, transform 0.3s;
}

.testimonials .swiper-button-next:hover,
.testimonials .swiper-button-prev:hover {
  color: #f97316; /* same gradient end accent */
  transform: scale(1.2);
}

/* Adjust size to fit your layout neatly */
.testimonials .swiper-button-next::after,
.testimonials .swiper-button-prev::after {
  font-size: 24px;
  font-weight: 600;
}

/* Keep buttons visible above cards */
.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
  z-index: 15;
}
/*--------------------------------------------------------------
# Process Section - "Waveflow" Theme (light, organic, modern)
  - All class names are unique (proc-*)
  - Soft pastel connector lines, floating cards, micro-interactions
  - Responsive grid implemented with CSS Grid / Flex
--------------------------------------------------------------*/

.proc-bg {
  background: linear-gradient(180deg, #fcfeff 0%, #f8fbff 100%);
  color: #0f1724;
}

.proc-padding {
  padding: 72px 0;
}

/* Wrapper keeps content centered with generous max-width */
.proc-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Header */
.proc-header {
  text-align: center;
  margin-bottom: 40px;
}

.proc-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 0;
  line-height: 1.04;
  color: #081126;
}

.proc-accent {
  color: #0586b7; /* lively teal-blue */
}

.proc-sub {
  color: #475569;
  font-size: 1rem;
  margin-top: 8px;
}

/* Grid: 4 columns on desktop, 2 on tablet, 1 on mobile */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
  position: relative;
}

/* connector decorative lines between steps (pseudo elements on grid) */
.proc-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, rgba(5,134,183,0.12) 0%, rgba(249,115,22,0.06) 50%, rgba(5,134,183,0.12) 100%);
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 4px;
}

/* On narrow screens, hide horizontal connector */
@media (max-width: 767px) {
  .proc-grid::before { display: none; }
}

/* Column (step container) */
.proc-col {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

/* Card */
.proc-card {
  width: 100%;
  max-width: 320px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(8, 18, 36, 0.06);
  border: 1px solid rgba(8,18,36,0.04);
  transition: transform 0.45s cubic-bezier(.2,.9,.2,1), box-shadow 0.45s;
  position: relative;
  overflow: visible;
}

/* Floating style & slight offset to create flowing look */
.proc-col:nth-child(odd) .proc-card { transform-origin: center; margin-top: 8px; }
.proc-col:nth-child(even) .proc-card { margin-top: 28px; }

/* Card hover */
.proc-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 30px 80px rgba(8,18,36,0.09);
}

/* Icon circle */
.proc-icon {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: linear-gradient(145deg, rgba(5,134,183,0.10), rgba(249,115,22,0.06));
  color: #0586b7;
  box-shadow: 0 8px 24px rgba(5,134,183,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s;
}

/* Make svg use currentColor */
.proc-icon svg { color: inherit; width: 36px; height: 36px; }

/* Title & description */
.proc-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 6px 0 8px;
  color: #062435;
}

.proc-step-desc {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Small decorative step marker (dot) */
.proc-card::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #fff, #e6faff);
  border-radius: 50%;
  border: 2px solid rgba(5,134,183,0.18);
  z-index: 3;
  box-shadow: 0 6px 18px rgba(5,134,183,0.05);
}

/* Responsive: adapt grid to 2 columns on tablet, single column on mobile */
@media (max-width: 991px) {
  .proc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .proc-col:nth-child(even) .proc-card { margin-top: 18px; }
}

@media (max-width: 575px) {
  .proc-grid {
    grid-template-columns: 1fr;
  }
  .proc-col { padding: 0 10px; }
  .proc-card { max-width: 100%; margin-top: 6px !important; }
  .proc-title { font-size: 1.6rem; }
  .proc-sub { font-size: 0.95rem; }
}

/* Accessibility & reduced-motion support */
@media (prefers-reduced-motion: reduce) {
  .proc-card, .proc-card:hover, .proc-icon { transition: none; transform: none; }
}

/* ===============================
   Debt Recovery Performance Section
   Modern Fintech-style Theme
================================== */

.section-recovery {
  background: linear-gradient(180deg, #f9fbff 0%, #eef3ff 100%);
  font-family: "Inter", "Poppins", sans-serif;
}

.recovery-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.recovery-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #203260;
}

.recovery-subtitle {
  font-size: 1rem;
  color: #6c7b99;
  max-width: 650px;
  margin: 15px auto 0;
}

/* Stage Cards */
.recovery-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.recovery-stage-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e1e8ff;
}

.recovery-stage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.recovery-stage-card h5 {
  font-weight: 600;
  color: #2643e9;
  margin-bottom: 8px;
}

.recovery-stage-card p {
  font-size: 0.9rem;
  color: #6f7d92;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Progress Bars */
.progress-track {
  background: #e6ecf8;
  height: 8px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 8px;
  border-radius: 20px;
  transition: width 0.4s ease;
}

.progress-fill.green {
  background: #22c55e;
}

.progress-fill.teal {
  background: #10b981;
}

.progress-fill.amber {
  background: #fbbf24;
}

.progress-fill.orange {
  background: #fb923c;
}

.progress-fill.red {
  background: #ef4444;
}

.progress-fill.darkred {
  background: #b91c1c;
}

.progress-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

/* Metrics Section */
.recovery-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 70px;
}

.metric-tile {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  width: 300px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e9fa;
  transition: all 0.3s ease;
}

.metric-tile:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #f3f6ff, #e5edff);
}

.metric-tile h4 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 8px;
}

.metric-tile p {
  color: #475569;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .recovery-title {
    font-size: 1.9rem;
  }
  .recovery-subtitle {
    font-size: 0.95rem;
  }
}

/* ============================================================
   Recovery Dashboard & Collection Achievements - Modern FinTech Theme
   All class names are new (rc-*, ca-*)
   Paste this CSS into your main stylesheet
   ============================================================ */

/* ---------- Shared variables ---------- */
:root{
  --rc-bg-1: #f7f9fc;
  --rc-bg-2: #ffffff;
  --accent: #1666b2;
  --muted: #5f6b7a;
  --card-border: rgba(16,24,40,0.06);
  --glass: rgba(255,255,255,0.75);
}

/* ---------- Recovery Dashboard Section ---------- */
.rc-section {
  background: linear-gradient(135deg, var(--rc-bg-1) 0%, var(--rc-bg-2) 100%);
  padding: 60px 20px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: #0f1724;
}

.rc-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.rc-header {
  text-align: center;
  margin-bottom: 40px;
}

.rc-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1e3d58;
  margin: 0 0 8px 0;
}

.rc-lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* Grid layout */
.rc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Column wrapper */
.rc-col {
  display: flex;
  justify-content: center;
}

/* Card */
.rc-card {
  width: 100%;
  max-width: 320px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(16,24,40,0.06);
  border: 1px solid var(--card-border);
  transition: transform 0.34s cubic-bezier(.2,.9,.2,1), box-shadow 0.34s;
}

.rc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(16,24,40,0.09);
}

/* Title inside card */
.rc-card-title {
  font-size: 20px;
  color: #1e3d58;
  font-weight: 600;
  margin: 0 0 10px;
}

/* Description text */
.rc-card-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Responsive: stack grid */
@media (max-width: 992px) {
  .rc-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .rc-heading { font-size: 26px; }
}

@media (max-width: 575px) {
  .rc-grid { grid-template-columns: 1fr; gap: 14px; }
  .rc-card { padding: 20px; max-width: 100%; }
  .rc-heading { font-size: 22px; }
  .rc-lead { font-size: 14px; }
}

/* ---------- Collection Achievements Section ---------- */
.ca-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 70px 20px;
  color: #0f1724;
}

.ca-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.ca-header {
  text-align: center;
  margin-bottom: 42px;
}

.ca-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1e3d58;
  margin: 0 0 8px;
}

.ca-lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Achievements grid */
.ca-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* Achievement column */
.ca-col { display: flex; justify-content: center; }

/* Achievement card */
.ca-card {
  width: 100%;
  max-width: 300px;
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--glass) 0%, #fff 100%);
  border: 1px solid rgba(16,24,40,0.04);
  box-shadow: 0 10px 30px rgba(16,24,40,0.06);
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  backdrop-filter: blur(4px);
}

.ca-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(16,24,40,0.08);
  background: linear-gradient(135deg, #f3f7ff 0%, #ffffff 100%);
}

/* Value big number */
.ca-value {
  font-size: 38px;
  color: #0077b6;
  font-weight: 700;
  margin: 0 0 8px;
}

/* small description */
.ca-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive achievements */
@media (max-width: 992px) {
  .ca-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .ca-heading { font-size: 26px; }
}

@media (max-width: 575px) {
  .ca-grid { grid-template-columns: 1fr; gap: 12px; }
  .ca-card { padding: 20px; max-width: 100%; }
  .ca-heading { font-size: 22px; }
}

/* ---------- Accessibility & Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .rc-card, .ca-card, .rc-card:hover, .ca-card:hover { transition: none; transform: none; }
}

/* Section Base */
.omni-section {
  background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Container */
.omni-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.omni-header {
  text-align: center;
  margin-bottom: 60px;
}

.omni-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #123b66;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

.omni-subtitle {
  font-size: 1rem;
  color: #5c677d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layout */
.omni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card */
.omni-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #e6ebf1;
  position: relative;
}

.omni-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  background: linear-gradient(145deg, #ffffff 0%, #f1f5ff 100%);
}

/* Icon */
.omni-icon {
  font-size: 44px;
  color: #0077b6;
  background: #e6f3ff;
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.omni-card:hover .omni-icon {
  background: #0077b6;
  color: #fff;
  transform: rotate(10deg) scale(1.05);
}

/* Card Title */
.omni-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #183b56;
  margin-bottom: 10px;
}

/* Card Text */
.omni-card-text {
  font-size: 0.95rem;
  color: #60697b;
  line-height: 1.6;
}

/* Animation Keyframes (optional sparkle effect) */
.omni-section::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: 10%;
  left: -60px;
  background: radial-gradient(circle, rgba(0,119,182,0.15), transparent 70%);
  filter: blur(20px);
}
.omni-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: -60px;
  background: radial-gradient(circle, rgba(0,119,182,0.1), transparent 70%);
  filter: blur(20px);
}

/* Responsive */
@media (max-width: 768px) {
  .omni-title {
    font-size: 1.8rem;
  }
  .omni-card {
    padding: 30px 20px;
  }
}

/* Base Section */
.smart-section {
  background: linear-gradient(135deg, #f8fafc 0%, #eef3ff 100%);
  padding: 100px 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Wrapper */
.smart-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.smart-header {
  text-align: center;
  margin-bottom: 60px;
}

.smart-title {
  font-size: 2.4rem;
  color: #142e47;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

.smart-subtitle {
  color: #5c677d;
  font-size: 1rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Timeline Container */
.smart-timeline {
  position: relative;
  margin-left: 30px;
  border-left: 3px solid #0077b6;
  padding-left: 20px;
}

/* Timeline Step */
.smart-step {
  position: relative;
  margin-bottom: 45px;
  padding-left: 20px;
}

.smart-marker {
  position: absolute;
  left: -14px;
  top: 4px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 119, 182, 0.5);
  transition: all 0.4s ease;
}

.smart-step:hover .smart-marker {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 119, 182, 0.8);
}

/* Step Content */
.smart-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.smart-step:hover .smart-content {
  transform: translateY(-5px);
  border-color: #bde0fe;
  box-shadow: 0 6px 25px rgba(0, 119, 182, 0.1);
}

/* Titles & Text */
.smart-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 8px;
}

.smart-step-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Background Highlights */
.smart-section::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: 10%;
  left: -60px;
  background: radial-gradient(circle, rgba(0,119,182,0.12), transparent 70%);
  filter: blur(20px);
}

.smart-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: -60px;
  background: radial-gradient(circle, rgba(0,180,216,0.1), transparent 70%);
  filter: blur(20px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .smart-title {
    font-size: 1.9rem;
  }
  .smart-timeline {
    margin-left: 20px;
  }
  .smart-step {
    margin-bottom: 35px;
  }
  .smart-content {
    padding: 20px;
  }
}

/* ========== RBI COMPLIANCE & REGULATORY SECTION ========== */
.regulatory-wrapper {
  background: linear-gradient(135deg, #eef2f7 0%, #f8faff 100%);
  font-family: "Inter", "Segoe UI", sans-serif;
}

.regulatory-container {
  max-width: 1150px;
  margin: 0 auto;
}

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

.regulatory-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

.regulatory-subtext {
  font-size: 16px;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.regulatory-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.regulatory-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at top left, rgba(13,110,253,0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.regulatory-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15);
}

.regulatory-icon {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.2));
  border-radius: 50%;
  transition: all 0.3s ease;
}

.regulatory-card:hover .regulatory-icon {
  background: linear-gradient(135deg, #0d6efd, #2b8bff);
  color: #fff;
}

.regulatory-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.regulatory-text {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .regulatory-title {
    font-size: 2rem;
  }

  .regulatory-card {
    padding: 30px 20px;
  }

  .regulatory-icon {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }
}

/* ========== RBI GUIDELINES SECTION ========== */
.rbi-standards-wrap {
  padding: 100px 20px;
  background: linear-gradient(120deg, #f7faff 0%, #eef3ff 100%);
  font-family: "Inter", "Segoe UI", sans-serif;
}

.rbi-standards-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rbi-standards-header {
  text-align: center;
  margin-bottom: 70px;
}

.rbi-standards-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
  position: relative;
}

.rbi-standards-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #2563eb;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

.rbi-standards-description {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

.rbi-standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.rbi-standards-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 45px 25px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.rbi-standards-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(37,99,235,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rbi-standards-card:hover::before {
  opacity: 1;
}

.rbi-standards-icon {
  font-size: 3rem;
  color: #2563eb;
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.rbi-standards-card:hover .rbi-standards-icon {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  transform: scale(1.1);
}

.rbi-standards-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.rbi-standards-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.rbi-standards-footer {
  text-align: center;
  margin-top: 60px;
}

.rbi-standards-btn {
  background: #2563eb;
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(37,99,235,0.3);
}

.rbi-standards-btn:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .rbi-standards-title {
    font-size: 2rem;
  }

  .rbi-standards-card {
    padding: 35px 20px;
  }

  .rbi-standards-icon {
    width: 75px;
    height: 75px;
    font-size: 2.4rem;
  }
}

/* ==========================
   Credit Wellness Section Styles
   ========================== */

.credit-wellness-area {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.credit-wellness-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.credit-wellness-header h2 {
  font-size: 2.4rem;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.credit-wellness-header p {
  color: #5b5b5b;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.credit-wellness-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.credit-wellness-card {
  background: #fff;
  border-radius: 18px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.credit-wellness-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.credit-wellness-icon {
  font-size: 3rem;
  margin-bottom: 18px;
}

.credit-wellness-heading {
  font-weight: 700;
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 12px;
}

.credit-wellness-text {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.6;
}

.credit-wellness-footer .credit-wellness-btn {
  background: linear-gradient(135deg, #007bff, #0056d6);
  color: #fff;
  padding: 12px 36px;
  font-size: 1rem;
  border-radius: 50px;
  transition: 0.4s ease;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 91, 255, 0.3);
}

.credit-wellness-footer .credit-wellness-btn:hover {
  background: linear-gradient(135deg, #0056d6, #003c99);
  transform: translateY(-2px);
}

/* Responsive Enhancements */
@media (max-width: 992px) {
  .credit-wellness-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .credit-wellness-card {
    padding: 2rem 1.5rem;
  }
  .credit-wellness-icon {
    font-size: 2.5rem;
  }
}

