* {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
  box-sizing: border-box;
}

:root {
  --heading-font: "Rubik", sans-serif;
  --color-black: #000;
  --theme-color: #e42526;
  --theme-color2: #119949;
  --theme-color3:#1662ac;
  --theme-font: "Inter", sans-serif;
}

::-moz-selection {
  background-color: var(--theme-color);
  color: #fff;
}

::selection {
  background-color: var(--theme-color);
  color: #fff;
}

body {
  font-size: 16px;
}

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

ul li {
  list-style: none;
}

p {
  font-size: 16px;
  font-family: var(--theme-font);
  line-height: 1.9;
}

a {
  text-decoration: none;
  color: inherit;
}

.theme-color {
  color: var(--theme-color);
  font-family: inherit;
}

.common-btn {
  display: inline-block;
  background-color: var(--theme-color);
  color: #fff;
  font-weight: 600;
  padding: 13px 38px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.common-btn:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.common-space {
  padding: 100px 0;
}

.title-des {
  position: relative;
  font-weight: 700;
  font-size: 12px;
  color: #000;
  letter-spacing: 3px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--theme-font);
  line-height: 1.7;
}
.title-des * {
  font-family: var(--heading-font);
}
.title-des span {
  position: relative;
  z-index: 5;
  color: inherit;
}
.title-des:before {
  top: 2px;
  left: 0;
  content: "";
  width: 95px;
  height: 40px;
  position: absolute;
  z-index: 0;
  background-image: url(img/common-bg-all.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.common-heading {
  color: #000000;
  position: relative;
  font-size: 48px;
  text-transform: uppercase;
  font-weight: 800;
  font-family: var(--theme-font);
  margin-top: 0.7rem;
  font-family: var(--heading-font);
  color: #5b320d;
  margin-bottom: 2.5rem;
}

.heading-wraper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.heading-wraper .right-heading i {
  color: #000;
}

/* --- Top Bar Styles --- */
.top-bar {
  background-color: #060912;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.top-bar {
  /* Shared styles for both Left and Right sections */
}
.top-bar .top-left,
.top-bar .top-social {
  display: flex;
  align-items: center;
}
.top-bar {
  /* Global Link Styles inside Top Bar */
}
.top-bar a {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 14px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
}
.top-bar a:hover {
  color: var(--theme-color);
}
.top-bar {
  /* Left Side Specifics (Contact Info) */
}
.top-bar .top-left a i {
  color: var(--theme-color); /* Lime Green Icon */
  margin-right: 10px;
  font-size: 15px;
}
.top-bar {
  /* Right Side Specifics (Social Icons) */
}
.top-bar .top-social a {
  padding: 14px 25px;
}
.top-bar .top-social a i {
  font-size: 14px;
  /* Social icons inherit white color from 'a' */
}

.dropdown-item.active, .dropdown-item:active {
  background-color: var(--theme-color);
}

/* --- New Header Styles --- */
header {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
  position: relative;
  z-index: 1000;
}
header .navbar {
  padding: 3px 20px;
}
header .navbar .navbar-brand img {
  max-width: 180px; /* Adjust based on your logo size */
}
header .navbar {
  /* Navigation Links (Centered) */
}
header .navbar .navbar-nav .nav-item {
  margin: 0 12px;
}
header .navbar .navbar-nav .nav-item .nav-link {
  color: #000;
  font-family: var(--heading-font); /* Rubik */
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize; /* Changed from uppercase to match image clean look */
  padding: 10px 5px;
  position: relative;
  transition: 0.3s;
}
header .navbar .navbar-nav .nav-item .nav-link:hover, header .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--theme-color);
}
header .navbar .navbar-nav .nav-item .nav-link {
  /* Dropdown Arrow adjustments */
}
header .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
}
header .navbar .dropdown-menu {
  border: none;
}
header .navbar .dropdown-menu .dropdown-item {
  padding: 12px 9px;
  border-bottom: solid 1px #ddd;
}
header .navbar {
  /* Right Side Actions */
}
header .navbar .header-right {
  gap: 25px;
}
header .navbar .header-right .search-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 9999;
}
header .navbar .header-right .search-popup.active {
  opacity: 1;
  visibility: visible;
}
header .navbar .header-right .search-popup .search-popup-inner {
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  position: relative;
  transform: translateY(-20px);
  transition: all 0.35s ease;
}
.search-popup.active header .navbar .header-right .search-popup .search-popup-inner {
  transform: translateY(0);
}
header .navbar .header-right .search-popup .close-search {
  position: absolute;
  top: -48px;
  right: -9px;
  width: 42px;
  height: 42px;
  background-color: var(--theme-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
header .navbar .header-right .search-popup .close-search:hover {
  background: transparent;
  color: var(--theme-color);
  transform: rotate(90deg);
}
header .navbar .header-right .search-popup .search-form {
  display: flex;
  gap: 12px;
}
header .navbar .header-right .search-popup .search-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
}
header .navbar .header-right .search-popup .search-form input:focus {
  border-color: var(--theme-color2);
}
header .navbar .header-right .search-popup .search-form button {
  padding: 0 26px;
  border-radius: 6px;
  border: none;
  background: var(--theme-color2);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
header .navbar .header-right .search-popup .search-form button:hover {
  background: var(--theme-color2);
}
header .navbar {
  /* Search Icon Style */
}
header .navbar .search-btn {
  color: #000;
  font-size: 20px;
  transition: 0.3s;
}
header .navbar .search-btn:hover {
  color: var(--theme-color);
}
header .navbar {
  /* The Green Menu Button (Used for both Desktop & Mobile Toggle) */
}
header .navbar .custom-menu-btn {
  background-color: var(--theme-color); /* Lime Green from image */
  color: #fff;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 22px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}
header .navbar .custom-menu-btn:hover {
  background-color: #000;
  color: var(--theme-color);
}

.dropdown:hover .dropdown-menu {
  display: block;
  padding: 0;
}
.dropdown:hover .dropdown-menu li a {
  padding: 10px 10px;
  transition: all 0.3s;
}
.dropdown:hover .dropdown-menu li:hover a {
  background-color: var(--theme-color);
  color: #fff;
}
.dropdown:hover .dropdown-menu li:hover:nth-child(odd) a {
  color: #fff;
  background-color: var(--theme-color2);
}

/* --- Hero Banner Styles --- */
.hero-banner {
  background-color: #f4f5f7; /* Light grey background */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  /* Left Side Content */
}
.hero-banner .hero-content {
  position: relative;
  z-index: 2; /* Ensures text stays above the faint background text */
  padding-right: 6px;
}
.hero-banner .hero-content .hero-badge {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}
.hero-banner .hero-content .hero-badge img {
  max-width: 150px;
}
.hero-banner .hero-content h1 {
  font-size: 54px;
  font-weight: 700; /* Bold Rubik font */
  line-height: 1.1;
  color: #000;
  margin-bottom: 20px;
}
.hero-banner .hero-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 90%;
}
.hero-banner .hero-content .btn-hero {
  display: inline-block;
  background-color: var(--theme-color); /* Bright Lime Green */
  color: #fff;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px; /* Pill shape */
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-banner .hero-content .btn-hero:hover {
  background-color: #000;
  color: #fff;
}
.hero-banner .hero-content .btn-hero.explore-ser {
  background-color: var(--theme-color2);
}
.hero-banner {
  /* Decorative Faint "rs" Text */
}
.hero-banner .faint-text {
  position: absolute;
  left: -120px;
  top: 105%;
  transform: translateY(-50%);
  font-size: 350px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03); /* Very transparent grey */
  z-index: 1;
  line-height: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: var(--heading-font);
}
.hero-banner {
  /* Right Side Image Box */
}
.hero-banner .hero-img-box {
  position: relative;
  margin-left: 20px;
}
.hero-banner .hero-img-box img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.hero-banner .hero-img-box {
  /* Green Tape/Shape on image */
}
.hero-banner .hero-img-box .floating-tape {
  position: absolute;
  bottom: 60px;
  right: -30px;
  width: 140px;
  height: 70px;
  background-color: var(--theme-color);
  border-radius: 10px;
  transform: rotate(-25deg);
  z-index: 3;
}

/* --- About Us Section Styles --- */
.about-section {
  background-color: #fff;
  background-image: radial-gradient(rgba(223, 223, 223, 0.7490196078) 1px, transparent 1px);
  background-size: 30px 30px;
  /* --- Image Composition Wrapper --- */
}
.about-section .about-img-wrapper {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
  z-index: 1;
}
.about-section .about-img-wrapper .main-img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 96%;
  height: 605px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section .about-img-wrapper .small-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  border: 8px solid #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.about-section .about-img-wrapper {
  /* Experience Badge using Theme Color 3 (Blue) */
}
.about-section .about-img-wrapper .exp-badge {
  position: absolute;
  top: 40px;
  left: -30px;
  background-color: var(--theme-color3); /* Corporate Blue */
  color: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(22, 98, 172, 0.3);
  animation: float-y 3s ease-in-out infinite;
  z-index: 3;
}
.about-section .about-img-wrapper .exp-badge h2 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1;
  font-family: var(--heading-font);
}
.about-section .about-img-wrapper .exp-badge p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
}
.about-section {
  /* --- Right Side Content --- */
}
.about-section .about-content {
  padding-left: 30px;
}
.about-section .about-content .sub-title {
  color: var(--theme-color); /* Theme Red */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-size: 14px;
  display: inline-block;
  background: rgba(228, 37, 38, 0.08); /* Faint Red BG */
  padding: 5px 15px;
  border-radius: 4px;
}
.about-section .about-content .main-title {
  font-size: 39px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-section .about-content .main-title span {
  color: var(--theme-color3); /* Theme Blue */
}
.about-section .about-content .description {
  color: #666;
  margin-bottom: 30px;
}
.about-section .about-content {
  /* Feature List */
}
.about-section .about-content .about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.about-section .about-content .about-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.about-section .about-content .about-features li i {
  font-size: 22px;
  color: var(--theme-color2); /* Theme Green for Checkmarks */
  margin-right: 15px;
  margin-top: 5px;
}
.about-section .about-content .about-features li h5 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}
.about-section .about-content .about-features li p {
  font-size: 14px;
  margin: 0;
  color: #777;
}
.about-section .about-content {
  /* Founder/Contact Info next to button */
}
.about-section .about-content .founder-info {
  display: inline-flex;
  align-items: center;
  margin-left: 30px;
  vertical-align: middle;
  margin-top: 2rem; /* Align with button margin */
}
.about-section .about-content .founder-info .icon {
  width: 50px;
  height: 50px;
  background-color: #f4f5f7;
  color: var(--theme-color3); /* Blue Icon */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
}
.about-section .about-content .founder-info .text span {
  display: block;
  font-size: 12px;
  color: #777;
  font-weight: 500;
}
.about-section .about-content .founder-info .text h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

/* --- Modern Hover-Fill Services Section --- */
.services-modern-fill {
  background-color: #f1f1f1;
  /* Header Styles */
}
.services-modern-fill .tagline {
  color: var(--theme-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}
.services-modern-fill .title {
  font-size: 40px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
}
.services-modern-fill .subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.services-modern-fill {
  /* --- Card Design --- */
}
.services-modern-fill .service-card {
  background: #f8f9fa; /* Light Gray Default */
  padding: 45px 35px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  z-index: 1;
  height: 100%;
  border: 1px solid transparent;
  /* Hidden Background Layer for Hover Effect */
}
.services-modern-fill .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; /* Fallback */
  z-index: -1;
  transform: scaleY(0); /* Hidden initially */
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-modern-fill .service-card {
  /* Icon Styling */
}
.services-modern-fill .service-card .icon-box {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  font-size: 26px;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s;
}
.services-modern-fill .service-card {
  /* Text Styling */
}
.services-modern-fill .service-card .service-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  transition: color 0.4s;
}
.services-modern-fill .service-card .service-text {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  transition: color 0.4s;
}
.services-modern-fill .service-card .service-text strong {
  transition: color 0.4s;
  color: #000;
}
.services-modern-fill .service-card {
  /* Button Styling */
}
.services-modern-fill .service-card .read-btn {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.4s;
}
.services-modern-fill .service-card .read-btn i {
  margin-left: 8px;
  transition: margin 0.3s;
}
.services-modern-fill .service-card {
  /* Watermark Number */
}
.services-modern-fill .service-card .count-number {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  font-family: var(--heading-font);
  transition: all 0.5s;
}
.services-modern-fill .service-card {
  /* --- Hover Interaction (The Magic) --- */
}
.services-modern-fill .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  /* Reveal Background Color */
}
.services-modern-fill .service-card:hover::before {
  transform: scaleY(1);
}
.services-modern-fill .service-card:hover {
  /* Change Text Colors to White */
}
.services-modern-fill .service-card:hover .service-title {
  color: #fff;
}
.services-modern-fill .service-card:hover .service-text {
  color: rgba(255, 255, 255, 0.85);
}
.services-modern-fill .service-card:hover .service-text strong {
  color: #fff;
}
.services-modern-fill .service-card:hover .read-btn {
  color: #fff;
}
.services-modern-fill .service-card:hover .read-btn i {
  margin-left: 15px;
}
.services-modern-fill .service-card:hover .count-number {
  color: rgba(255, 255, 255, 0.1);
}
.services-modern-fill .service-card:hover {
  /* Icon Box becomes transparent white */
}
.services-modern-fill .service-card:hover .icon-box {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.services-modern-fill {
  /* --- Themes Mapping --- */
  /* Blue Theme (Theme Color 3) */
}
.services-modern-fill .theme-blue .icon-box {
  color: var(--theme-color3);
}
.services-modern-fill .theme-blue .read-btn {
  color: var(--theme-color3);
}
.services-modern-fill .theme-blue {
  /* Hover BG Color */
}
.services-modern-fill .theme-blue::before {
  background-color: var(--theme-color3);
}
.services-modern-fill {
  /* Red Theme (Theme Color 1) */
}
.services-modern-fill .theme-red .icon-box {
  color: var(--theme-color);
}
.services-modern-fill .theme-red .read-btn {
  color: var(--theme-color);
}
.services-modern-fill .theme-red {
  /* Hover BG Color */
}
.services-modern-fill .theme-red::before {
  background-color: var(--theme-color);
}
.services-modern-fill {
  /* Green Theme (Theme Color 2) */
}
.services-modern-fill .theme-green .icon-box {
  color: var(--theme-color2);
}
.services-modern-fill .theme-green .read-btn {
  color: var(--theme-color2);
}
.services-modern-fill .theme-green {
  /* Hover BG Color */
}
.services-modern-fill .theme-green::before {
  background-color: var(--theme-color2);
}

/* --- Why Choose ZoChord Section --- */
.why-choose-section {
  background-color: #0b1525;
  overflow: hidden;
  overflow: hidden;
  background-image: radial-gradient(#333333 1px, transparent 1px);
  background-size: 30px 30px;
  /* Header Styling */
}
.why-choose-section .sub-title {
  background: rgba(255, 255, 255, 0.1);
  color: var(--theme-color2);
  border: 1px solid var(--theme-color2);
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}
.why-choose-section .main-title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.why-choose-section {
  /* --- Feature Box Styling --- */
}
.why-choose-section .feature-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  display: flex; /* Flex layout for Icon + Text */
  align-items: flex-start;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
  /* Left Border Accent */
}
.why-choose-section .feature-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #ddd; /* Default grey, changes on class */
  transition: all 0.4s ease;
}
.why-choose-section .feature-box {
  /* Icon Area */
}
.why-choose-section .feature-box .icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 25px;
  transition: all 0.4s ease;
  color: #555;
}
.why-choose-section .feature-box {
  /* Text Content */
}
.why-choose-section .feature-box .content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
  transition: color 0.3s;
}
.why-choose-section .feature-box .content p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.why-choose-section .feature-box {
  /* --- Hover Interaction --- */
}
.why-choose-section .feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.why-choose-section .feature-box:hover .content h3 {
  /* Color changes based on theme below */
}
.why-choose-section .feature-box:hover .icon-wrapper {
  color: #fff;
  /* Background changes based on theme below */
}
.why-choose-section {
  /* --- Color Themes (Matching your palette) --- */
  /* Blue Theme */
}
.why-choose-section .box-blue::before {
  background: var(--theme-color3);
}
.why-choose-section .box-blue .icon-wrapper {
  color: var(--theme-color3);
  background: rgba(22, 98, 172, 0.1);
}
.why-choose-section .box-blue:hover .icon-wrapper {
  background: var(--theme-color3);
  color: #fff;
}
.why-choose-section .box-blue:hover .content h3 {
  color: var(--theme-color3);
}
.why-choose-section {
  /* Green Theme */
}
.why-choose-section .box-green::before {
  background: var(--theme-color2);
}
.why-choose-section .box-green .icon-wrapper {
  color: var(--theme-color2);
  background: rgba(17, 153, 73, 0.1);
}
.why-choose-section .box-green:hover .icon-wrapper {
  background: var(--theme-color2);
  color: #fff;
}
.why-choose-section .box-green:hover .content h3 {
  color: var(--theme-color2);
}
.why-choose-section {
  /* Red Theme */
}
.why-choose-section .box-red::before {
  background: var(--theme-color);
}
.why-choose-section .box-red .icon-wrapper {
  color: var(--theme-color);
  background: rgba(228, 37, 38, 0.1);
}
.why-choose-section .box-red:hover .icon-wrapper {
  background: var(--theme-color);
  color: #fff;
}
.why-choose-section .box-red:hover .content h3 {
  color: var(--theme-color);
}

/* --- Professional Testimonials Section --- */
.testimonials-pro-section {
  background-color: #f4f7f6; /* Soft corporate grey background */
  /* Header */
}
.testimonials-pro-section .sub-title {
  color: var(--theme-color3); /* Corporate Blue */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 15px;
}
.testimonials-pro-section .main-title {
  font-size: 38px;
  font-weight: 800;
  color: #000;
}
.testimonials-pro-section {
  /* Testimonial Box */
}
.testimonials-pro-section .testi-box-pro {
  background: #fff;
  padding: 40px 35px;
  border-radius: 10px;
  margin: 15px; /* Spacing for carousel */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  border-top: 5px solid var(--theme-color3); /* Blue top accent */
  transition: all 0.3s ease;
  height: 100%;
  /* Big Quote Icon */
}
.testimonials-pro-section .testi-box-pro .quote-mark {
  font-size: 40px;
  color: rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}
.testimonials-pro-section .testi-box-pro {
  /* Review Text */
}
.testimonials-pro-section .testi-box-pro .review-content {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  font-style: italic;
  min-height: 120px; /* Ensures alignment even if text varies in length */
}
.testimonials-pro-section .testi-box-pro {
  /* Client Info Area */
}
.testimonials-pro-section .testi-box-pro .client-details {
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
  /* Initials Avatar (Circular Placeholder) */
}
.testimonials-pro-section .testi-box-pro .client-details .client-avatar {
  width: 55px;
  height: 55px;
  background-color: var(--theme-color3); /* Blue Background */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
}
.testimonials-pro-section .testi-box-pro .client-details {
  /* Text Info */
}
.testimonials-pro-section .testi-box-pro .client-details .client-meta h5 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 2px;
  font-family: var(--heading-font);
}
.testimonials-pro-section .testi-box-pro .client-details .client-meta .role {
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-color); /* Red for Role */
  display: block;
  margin-bottom: 2px;
}
.testimonials-pro-section .testi-box-pro .client-details .client-meta .company {
  font-size: 13px;
  color: #777;
  display: block;
  line-height: 1.3;
}
.testimonials-pro-section .testi-box-pro .client-details .client-meta .company small {
  font-size: 12px;
  color: #999;
}
.testimonials-pro-section .testi-box-pro {
  /* Hover Effect */
}
.testimonials-pro-section .testi-box-pro:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.testimonials-pro-section .testi-box-pro:hover .quote-mark {
  color: var(--theme-color3); /* Icon lights up on hover */
}
.testimonials-pro-section {
  /* Carousel Dots */
}
.testimonials-pro-section .owl-dots {
  margin-top: 40px;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.testimonials-pro-section .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ccc;
  margin: 5px;
  display: block;
  border-radius: 50%;
  transition: all 0.3s;
}
.testimonials-pro-section .owl-dots .owl-dot.active span {
  background: var(--theme-color3);
  transform: scale(1.3);
}

/* --- New Professional Footer Styles --- */
.main-footer-pro {
  background-color: #0b0f19; /* Dark Enterprise Background */
  color: #a0a6b5; /* Soft Grey Text */
  padding-top: 80px;
  font-size: 15px;
  position: relative;
  /* Top Border Line for separation */
  border-top: 4px solid var(--theme-color2); /* Green Accent Line */
  /* --- Logo & Description --- */
}
.main-footer-pro .footer-logo {
  display: inline-block;
  margin-bottom: 25px;
}
.main-footer-pro .footer-logo img {
  max-width: 160px;
  /* Optional: If logo is black, invert it to white */
  /* filter: brightness(0) invert(1); */
}
.main-footer-pro .company-desc {
  margin-bottom: 30px;
  line-height: 1.8;
}
.main-footer-pro .company-desc strong {
  color: #fff;
}
.main-footer-pro {
  /* --- Contact List Styling --- */
}
.main-footer-pro .contact-list {
  margin-bottom: 30px;
}
.main-footer-pro .contact-list .contact-item {
  display: flex;
  align-items: flex-start; /* Align icon with first line of text */
  margin-bottom: 15px;
}
.main-footer-pro .contact-list .contact-item i {
  color: var(--theme-color2); /* Lime Green Icon */
  font-size: 18px;
  margin-right: 15px;
  margin-top: 4px; /* Slight optical adjustment */
  min-width: 20px;
}
.main-footer-pro .contact-list .contact-item span, .main-footer-pro .contact-list .contact-item a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.main-footer-pro .contact-list .contact-item a:hover {
  color: var(--theme-color2);
}
.main-footer-pro .contact-list .contact-item .sep {
  margin: 0 8px;
  color: #555;
}
.main-footer-pro {
  /* --- Social Icons --- */
}
.main-footer-pro .footer-socials {
  display: flex;
  gap: 15px;
}
.main-footer-pro .footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: all 0.4s ease;
}
.main-footer-pro .footer-socials a:hover {
  background: var(--theme-color2); /* Green Background on Hover */
  color: #000; /* Black Icon on Hover */
  transform: translateY(-3px);
}
.main-footer-pro {
  /* --- Widget Titles --- */
}
.main-footer-pro .widget-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  /* Underline Decoration */
}
.main-footer-pro .widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--theme-color2); /* Green Line */
  border-radius: 2px;
}
.main-footer-pro {
  /* --- Footer Links --- */
}
.main-footer-pro .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-footer-pro .footer-links li {
  margin-bottom: 14px;
}
.main-footer-pro .footer-links li a {
  color: #a0a6b5;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}
.main-footer-pro .footer-links li a:hover {
  color: var(--theme-color2);
  padding-left: 8px; /* Slide effect */
}
.main-footer-pro .footer-links li a {
  /* FontAwesome Arrow on Hover (Optional) */
}
.main-footer-pro .footer-links li a:hover::before {
  /* content: "\f0da"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: -15px; top: 1px; font-size: 12px; */
}
.main-footer-pro .footer-links {
  /* Optional: 2 Column Layout for "Company" links if list is long */
}
.main-footer-pro .footer-links.two-column-links {
  /* display: flex; flex-wrap: wrap; */
  /* li { width: 50%; } */
}
.main-footer-pro {
  /* --- Copyright Bar --- */
}
.main-footer-pro .copyright-area {
  background-color: #060912; /* Darker shade for bottom bar */
  padding: 25px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.main-footer-pro .copyright-area p {
  margin: 0;
  font-size: 14px;
  color: #777;
}
.main-footer-pro .copyright-area p strong {
  color: #fff;
}

/* --- Professional "Cinematic" Industries Section --- */
.industries-pro {
  background-color: #0b1525; /* Deep Black */
  overflow: hidden;
  overflow: hidden;
  background-image: radial-gradient(#333333 1px, transparent 1px);
  background-size: 30px 30px;
  /* --- Header Styling --- */
}
.industries-pro .badge-pill {
  background: rgba(255, 255, 255, 0.1);
  color: var(--theme-color2); /* Green Accent */
  border: 1px solid var(--theme-color2);
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}
.industries-pro .section-title {
  font-size: 45px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
}
.industries-pro {
  /* --- The Pro Card --- */
}
.industries-pro .pro-card {
  position: relative;
  height: 500px; /* Tall cinematic aspect ratio */
  border-radius: 20px;
  overflow: hidden;
  margin: 0 10px; /* Spacing between carousel items */
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Background Image Area */
}
.industries-pro .pro-card .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.industries-pro .pro-card {
  /* Gradient Overlay (Dark at bottom) */
}
.industries-pro .pro-card .overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 1;
  transition: all 0.5s ease;
}
.industries-pro .pro-card {
  /* Floating Top Tag (Glass Effect) */
}
.industries-pro .pro-card .top-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.industries-pro .pro-card {
  /* Content Area (Absolute Bottom) */
}
.industries-pro .pro-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 3;
  transform: translateY(60px); /* Push description down initially */
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.industries-pro .pro-card .card-content .icon-layer {
  font-size: 24px;
  color: var(--theme-color); /* Red Icon */
  margin-bottom: 15px;
  opacity: 0; /* Hidden initially */
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.industries-pro .pro-card .card-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.industries-pro .pro-card .card-content {
  /* Hidden Description Area */
}
.industries-pro .pro-card .card-content .hidden-desc {
  opacity: 0;
  transition: opacity 0.4s ease 0.1s; /* Slight delay */
}
.industries-pro .pro-card .card-content .hidden-desc p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  border-left: 2px solid var(--theme-color2); /* Green Line */
  padding-left: 15px;
}
.industries-pro .pro-card .card-content .hidden-desc .arrow-link {
  color: var(--theme-color3); /* Blue Link */
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 1px;
}
.industries-pro .pro-card .card-content .hidden-desc .arrow-link i {
  margin-left: 5px;
  transition: margin 0.3s;
}
.industries-pro .pro-card .card-content .hidden-desc .arrow-link:hover i {
  margin-left: 10px;
}
.industries-pro .pro-card {
  /* --- Hover Effects (The Magic) --- */
}
.industries-pro .pro-card:hover {
  border-color: var(--theme-color2); /* Green Border Glow */
  box-shadow: 0 10px 40px rgba(17, 153, 73, 0.2); /* Green Glow Shadow */
  /* Zoom Image */
}
.industries-pro .pro-card:hover .bg-img {
  transform: scale(1.15);
}
.industries-pro .pro-card:hover {
  /* Darken Overlay slightly more for readability */
}
.industries-pro .pro-card:hover .overlay-gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 40%, #000 100%);
}
.industries-pro .pro-card:hover {
  /* Slide Content Up */
}
.industries-pro .pro-card:hover .card-content {
  transform: translateY(0);
  /* Reveal Icon */
}
.industries-pro .pro-card:hover .card-content .icon-layer {
  opacity: 1;
  transform: translateY(0);
}
.industries-pro .pro-card:hover .card-content {
  /* Reveal Description */
}
.industries-pro .pro-card:hover .card-content .hidden-desc {
  opacity: 1;
}
.industries-pro {
  /* Carousel Dots */
}
.industries-pro .owl-dots {
  margin-top: 50px;
}
.industries-pro .owl-dots .owl-dot span {
  background: #333;
  width: 40px; /* Long dashes instead of dots */
  height: 4px;
  border-radius: 2px;
  transition: all 0.3s;
}
.industries-pro .owl-dots .owl-dot.active span {
  background: var(--theme-color); /* Red Active Dash */
  width: 60px;
}

/* --- Our Process Section Styles --- */
/* --- Stylish Process Section --- */
.process-section-stylish {
  background-color: #fdfdfd;
  background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
  background-size: 30px 30px; /* Subtle dot pattern background */
  /* Header Styles */
}
.process-section-stylish .badge-process {
  background: #fff;
  color: #000;
  padding: 8px 25px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: inline-block;
  margin-bottom: 20px;
}
.process-section-stylish .title-process {
  font-size: 42px;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}
.process-section-stylish .subtitle-process {
  color: #666;
  font-size: 18px;
  font-weight: 300;
}
.process-section-stylish {
  /* --- Process Box --- */
}
.process-section-stylish .process-box {
  background: #fff;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  z-index: 1;
  /* Big Number Background */
}
.process-section-stylish .process-box .step-count {
  position: absolute;
  top: -15px;
  right: -10px;
  font-size: 100px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  font-family: var(--heading-font);
  line-height: 1;
  transition: all 0.5s;
  z-index: -1;
}
.process-section-stylish .process-box {
  /* Icon */
}
.process-section-stylish .process-box .icon-holder {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  transition: all 0.5s;
}
.process-section-stylish .process-box {
  /* Content */
}
.process-section-stylish .process-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  transition: color 0.4s;
}
.process-section-stylish .process-box p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  transition: color 0.4s;
}
.process-section-stylish .process-box {
  /* Bottom Line */
}
.process-section-stylish .process-box .progress-line {
  width: 50px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  transition: all 0.5s;
}
.process-section-stylish .process-box {
  /* --- General Hover Effects --- */
}
.process-section-stylish .process-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.process-section-stylish .process-box:hover .step-count {
  color: rgba(255, 255, 255, 0.15); /* Number turns faint white */
  transform: scale(1.1);
}
.process-section-stylish .process-box:hover h3, .process-section-stylish .process-box:hover p {
  color: #fff; /* Text turns white */
}
.process-section-stylish .process-box:hover .icon-holder {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: rotateY(180deg); /* Icon flips */
}
.process-section-stylish .process-box:hover .progress-line {
  width: 100%; /* Line expands across card */
  background: rgba(255, 255, 255, 0.5);
}
.process-section-stylish {
  /* --- Specific Color Themes (Gradient Backgrounds) --- */
  /* Blue Theme (Kick Off, Build) */
}
.process-section-stylish .theme-blue .icon-holder {
  color: var(--theme-color3);
}
.process-section-stylish .theme-blue:hover {
  background: linear-gradient(135deg, var(--theme-color3) 0%, #0d4a85 100%);
}
.process-section-stylish {
  /* Green Theme (Discovery, Testing) */
}
.process-section-stylish .theme-green .icon-holder {
  color: var(--theme-color2);
}
.process-section-stylish .theme-green:hover {
  background: linear-gradient(135deg, var(--theme-color2) 0%, #0a6b32 100%);
}
.process-section-stylish {
  /* Red Theme (Solution, Go Live) */
}
.process-section-stylish .theme-red .icon-holder {
  color: var(--theme-color);
}
.process-section-stylish .theme-red:hover {
  background: linear-gradient(135deg, var(--theme-color) 0%, #a31112 100%);
}

/* Simple Floating Animation */
@keyframes float-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */
/* --- 1. Page Header (Hero) --- */
.page-header {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?q=80&w=2000&auto=format&fit=crop"); /* Corporate Office BG */
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
}
.page-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark Overlay */
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header .page-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}
.page-header .breadcrumb {
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.page-header .breadcrumb li {
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
}
.page-header .breadcrumb li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.page-header .breadcrumb li a:hover {
  color: var(--theme-color2);
}
.page-header .breadcrumb li::after {
  content: ">";
  margin: 0 10px;
  color: #777;
}
.page-header .breadcrumb li:last-child {
  color: var(--theme-color2); /* Active Green */
}
.page-header .breadcrumb li:last-child::after {
  display: none;
}

/* --- 2. Who We Are Section --- */
/* =========================================
   NEW MODERN ABOUT US STYLES
   ========================================= */
/* --- 1. Hero Section --- */
.about-hero-modern {
  padding-top: 120px;
  padding-bottom: 180px; /* Extra padding for overlap */
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}
.about-hero-modern .hero-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.05);
  color: var(--theme-color3);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.about-hero-modern .hero-title {
  font-size: 60px;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-hero-modern .hero-title .gradient-text {
  background: linear-gradient(to right, var(--theme-color3), var(--theme-color2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-hero-modern .hero-lead {
  font-size: 20px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.about-hero-modern {
  /* Full Width Banner Image */
}
.about-hero-modern .hero-banner-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.about-hero-modern .hero-banner-img img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --- 2. Story Section (Overlapping) --- */
.story-section {
  padding-bottom: 100px;
  position: relative;
  z-index: 10;
  /* The Floating Card */
}
.story-section .story-card {
  background: #fff;
  padding: 60px;
  border-radius: 15px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  margin-top: -150px; /* Negative margin pulls it up over hero image */
  position: relative;
}
.story-section .story-card .small-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--theme-color);
  letter-spacing: 2px;
  display: block;
  display: block;
  line-height: 1.7;
}
.story-section .story-card .story-heading {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.3;
}
.story-section .story-card .story-body p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.story-section .story-card {
  /* Inline Pillars */
}
.story-section .story-card .pillars-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}
.story-section .story-card .pillars-inline .pillar-item {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.story-section .story-card .pillars-inline .pillar-item i {
  margin-right: 10px;
  font-size: 16px;
}
.story-section .story-card .pillars-inline .pillar-item .text-blue {
  color: var(--theme-color3);
}
.story-section .story-card .pillars-inline .pillar-item .text-green {
  color: var(--theme-color2);
}
.story-section .story-card .pillars-inline .pillar-item .text-red {
  color: var(--theme-color);
}

/* --- 3. Mission & Vision (Dark Modern) --- */
.mission-vision-modern {
  background: #0b0f19; /* Dark Background */
  padding: 100px 0;
  color: #fff;
}
.mission-vision-modern .mv-modern-box {
  padding: 0 50px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
}
.mission-vision-modern .mv-modern-box .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--theme-color2); /* Green Accent */
  margin-bottom: 30px;
  transition: all 0.4s ease;
}
.mission-vision-modern .mv-modern-box h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.mission-vision-modern .mv-modern-box p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}
.mission-vision-modern .mv-modern-box {
  /* Giant Watermark Text */
}
.mission-vision-modern .mv-modern-box .bg-watermark {
  position: absolute;
  bottom: -10px;
  right: 0;
  font-size: 100px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  font-family: var(--heading-font);
}
.mission-vision-modern .mv-modern-box:hover .icon-circle {
  background: var(--theme-color2);
  color: #000;
  transform: scale(1.1);
}
.mission-vision-modern .border-right-custom {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- 4. Core Values (List Style) --- */
.values-modern {
  padding: 120px 0;
  background: #fff;
}
.values-modern .sub-heading-color {
  color: var(--theme-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}
.values-modern .section-title {
  font-size: 40px;
  font-weight: 800;
  color: #000;
}
.values-modern .values-container {
  margin-top: 20px;
}
.values-modern .value-row {
  display: flex;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.4s ease;
  cursor: default;
}
.values-modern .value-row .value-number {
  font-size: 24px;
  font-weight: 700;
  color: #ddd;
  margin-right: 40px;
  font-family: var(--heading-font);
}
.values-modern .value-row .value-content {
  flex-grow: 1;
}
.values-modern .value-row .value-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
  transition: color 0.3s;
}
.values-modern .value-row .value-content p {
  margin: 0;
  color: #666;
  font-size: 16px;
  max-width: 80%;
}
.values-modern .value-row .value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #555;
  transition: all 0.4s ease;
  opacity: 0.5; /* Faded initially */
}
.values-modern .value-row {
  /* Colors */
}
.values-modern .value-row .color-blue {
  color: var(--theme-color3);
}
.values-modern .value-row .color-red {
  color: var(--theme-color);
}
.values-modern .value-row .color-green {
  color: var(--theme-color2);
}
.values-modern .value-row {
  /* Hover Interaction */
}
.values-modern .value-row:hover {
  background: #fafafa;
  padding-left: 20px; /* Slight shift right */
}
.values-modern .value-row:hover .value-number {
  color: #000;
}
.values-modern .value-row:hover .value-content h3 {
  color: var(--theme-color3);
}
.values-modern .value-row:hover { /* Highlights title */ }
.values-modern .value-row:hover .value-icon {
  opacity: 1;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.2);
}

/* =========================================
   SERVICES LISTING (SHORT) STYLES
   ========================================= */
/* --- 1. Page Header --- */
.service-header-bg {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.service-header-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.service-header-bg .page-title {
  color: #fff;
  font-weight: 800;
  font-size: 42px;
  margin-bottom: 10px;
}
.service-header-bg .breadcrumb {
  justify-content: center;
  padding: 0;
  list-style: none;
}
.service-header-bg .breadcrumb li {
  color: #ccc;
  margin: 0 5px;
}
.service-header-bg .breadcrumb li a {
  color: #fff;
  text-decoration: none;
}
.service-header-bg .breadcrumb li.active {
  color: var(--theme-color2);
}

/* --- 2. Intro Section --- */
.service-intro {
  padding: 80px 0 40px;
  background: #fff;
}
.service-intro .sub-heading-color {
  color: var(--theme-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}
.service-intro .intro-title {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  line-height: 1.3;
}

/* --- 3. Listing Rows --- */
.services-listing {
  padding-bottom: 80px;
}

.service-row {
  margin-bottom: 80px;
  /* Image Thumbnail */
}
.service-row .service-thumb {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.service-row .service-thumb img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.service-row .service-thumb .thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.service-row .service-thumb:hover img {
  transform: scale(1.05);
}
.service-row {
  /* Text Summary */
}
.service-row .service-summary {
  position: relative;
}
.service-row .service-summary .serial-no {
  font-size: 60px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  font-family: var(--heading-font);
  line-height: 1;
  display: block;
  margin-bottom: -20px;
  margin-left: -5px;
}
.service-row .service-summary h3 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  position: relative;
}
.service-row .service-summary .sub-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color3); /* Blue Accent */
  margin-bottom: 15px;
}
.service-row .service-summary p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}
.service-row .service-summary {
  /* Read More Button */
}
.service-row .service-summary .btn-read-more {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}
.service-row .service-summary .btn-read-more i {
  margin-left: 10px;
  transition: margin 0.3s;
}
.service-row .service-summary .btn-read-more:hover {
  background-color: var(--theme-color2); /* Green Hover */
}
.service-row .service-summary .btn-read-more:hover i {
  margin-left: 15px;
}

/* =========================================
   STYLISH INDUSTRIES PAGE STYLES
   ========================================= */
/* --- 1. Modern Hero Section --- */
.ind-hero-modern {
  padding: 50px 0 30px;
  background-color: #f8f9fa;
  overflow: hidden;
}
.ind-hero-modern .hero-badge {
  background: rgba(0, 0, 0, 0.05);
  color: var(--theme-color3);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}
.ind-hero-modern .hero-title {
  line-height: 1.1;
  color: #000;
  margin-bottom: 20px;
}
.ind-hero-modern .hero-title .highlight {
  color: var(--theme-color3);
  position: relative;
  display: inline-block;
}
.ind-hero-modern .hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(22, 98, 172, 0.1);
  z-index: -1;
}
.ind-hero-modern .hero-desc {
  font-size: 18px;
  color: #666;
  max-width: 90%;
  margin-bottom: 40px;
}
.ind-hero-modern {
  /* Abstract Graphic */
}
.ind-hero-modern .hero-graphic {
  position: relative;
  padding: 20px;
}
.ind-hero-modern .hero-graphic .main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transform: rotate(2deg);
}
.ind-hero-modern .hero-graphic .floating-card {
  position: absolute;
  background: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  animation: float 6s ease-in-out infinite;
}
.ind-hero-modern .hero-graphic .floating-card i {
  color: var(--theme-color3);
  font-size: 18px;
}
.ind-hero-modern .hero-graphic .card-1 {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}
.ind-hero-modern .hero-graphic .card-2 {
  bottom: 20%;
  left: -10px;
  animation-delay: 2s;
}
.ind-hero-modern .hero-graphic .card-3 {
  top: 40%;
  right: -30px;
  animation-delay: 1s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* --- 2. Industry Section Base Styles --- */
.ind-section {
  padding: 100px 0;
  /* Shared Visual Styling */
}
.ind-section .ind-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 15px;
}
.ind-section .ind-visual img {
  width: 100%;
  transition: transform 0.6s ease;
}
.ind-section .ind-visual .visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(22, 98, 172, 0.4), transparent);
}
.ind-section .ind-visual .overlay-green {
  background: linear-gradient(to top, rgba(17, 153, 73, 0.4), transparent);
}
.ind-section .ind-visual .overlay-red {
  background: linear-gradient(to top, rgba(228, 37, 38, 0.4), transparent);
}
.ind-section .ind-visual .overlay-navy {
  background: linear-gradient(to top, rgba(13, 27, 42, 0.6), transparent);
}
.ind-section .ind-visual .overlay-orange {
  background: linear-gradient(to top, rgba(230, 126, 34, 0.4), transparent);
}
.ind-section .ind-visual .visual-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--theme-color3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.ind-section .ind-visual .icon-green {
  color: var(--theme-color2);
}
.ind-section .ind-visual .icon-red {
  color: var(--theme-color);
}
.ind-section .ind-visual .icon-navy {
  color: #0b0f19;
}
.ind-section .ind-visual .icon-orange {
  color: #e67e22;
}
.ind-section .ind-visual:hover img {
  transform: scale(1.05);
}
.ind-section .sticky-content {
  position: sticky;
  top: 100px;
}
.ind-section {
  /* Info Area */
}
.ind-section .ind-info {
  position: relative;
}
.ind-section .ind-info .section-number {
  font-size: 80px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  font-family: var(--heading-font);
  line-height: 1;
  margin-bottom: -40px;
  position: relative;
  z-index: -1;
}
.ind-section .ind-info .sub-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.ind-section .ind-info .section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
}
.ind-section .ind-info .desc {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #666;
}
.ind-section .ind-info {
  /* Solutions Grid */
}
.ind-section .ind-info .solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.ind-section .ind-info .solutions-grid .sol-item {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border-left: 4px solid transparent;
}
.ind-section .ind-info .solutions-grid .sol-item i {
  font-size: 24px;
  margin-bottom: 15px;
  display: inline-block;
}
.ind-section .ind-info .solutions-grid .sol-item h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ind-section .ind-info .solutions-grid .sol-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.ind-section .ind-info .solutions-grid .sol-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* --- 3. Themes (Light vs Dark) --- */
/* Light Theme (Default) */
.theme-light {
  background: #fff;
}
.theme-light.bg-grey {
  background: #f9f9f9;
}
.theme-light .text-blue {
  color: var(--theme-color3);
}
.theme-light .text-red {
  color: var(--theme-color);
}
.theme-light .text-orange {
  color: #e67e22;
}
.theme-light .sol-item:hover {
  border-left-color: currentColor;
}

/* Dark Theme (Premium) */
.theme-dark {
  background: #0b0f19; /* Deep Dark Blue/Black */
  color: #fff;
}
.theme-dark .text-outline-green {
  color: transparent;
  -webkit-text-stroke: 2px rgba(17, 153, 73, 0.3);
}
.theme-dark .text-outline-navy {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
}
.theme-dark .text-green {
  color: var(--theme-color2);
}
.theme-dark .text-navy {
  color: #a5b1c2;
}
.theme-dark .dark-card {
  background: #151b2b !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.theme-dark .dark-card:hover {
  background: #1c2438;
}

/* =========================================
   CONTACT US PAGE STYLES
   ========================================= */
/* --- 1. Page Header --- */
.contact-header-bg {
  background-image: url("https://images.unsplash.com/photo-1423666639041-f142fcb96319?q=80&w=2000&auto=format&fit=crop"); /* Communication/Contact BG */
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.contact-header-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 25, 0.7); /* Dark Overlay */
  z-index: -1;
}

/* --- 2. Main Contact Section --- */
.contact-section {
  padding: 100px 0;
  background-color: #f8f9fa; /* Light grey bg */
}

/* Left Side: Info Wrapper */
.contact-info-wrapper .sub-title {
  color: var(--theme-color3); /* Blue Accent */
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}
.contact-info-wrapper .main-title {
  font-size: 38px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-info-wrapper .description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-info-wrapper {
  /* Info Boxes */
}
.contact-info-wrapper .info-items {
  margin-bottom: 40px;
}
.contact-info-wrapper .info-items .info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contact-info-wrapper .info-items .info-box .icon-circle {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--theme-color2); /* Green Icon */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact-info-wrapper .info-items .info-box .info-text h5 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}
.contact-info-wrapper .info-items .info-box .info-text p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
.contact-info-wrapper .info-items .info-box .info-text p a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}
.contact-info-wrapper .info-items .info-box .info-text p a:hover {
  color: var(--theme-color3);
}
.contact-info-wrapper .info-items .info-box {
  /* Hover Effect */
}
.contact-info-wrapper .info-items .info-box:hover .icon-circle {
  background: var(--theme-color2);
  color: #fff;
  transform: translateY(-3px);
}
.contact-info-wrapper {
  /* Social Links */
}
.contact-info-wrapper .social-connect h6 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}
.contact-info-wrapper .social-connect .social-icons {
  display: flex;
  gap: 15px;
}
.contact-info-wrapper .social-connect .social-icons a {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.contact-info-wrapper .social-connect .social-icons a:hover {
  background: var(--theme-color3); /* Blue Hover */
  color: #fff;
  transform: translateY(-3px);
}

/* Right Side: Form Card */
.contact-form-card {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); /* Deep Shadow */
  position: relative;
  border-top: 5px solid var(--theme-color3);
}
.contact-form-card .form-header {
  margin-bottom: 30px;
}
.contact-form-card .form-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-form-card .form-header p {
  color: #666;
  font-size: 15px;
}
.contact-form-card {
  /* Form Elements */
}
.contact-form-card .form-group {
  margin-bottom: 5px; /* Spacing handled by col mb-4 */
}
.contact-form-card .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}
.contact-form-card .form-group .form-control {
  height: 50px;
  border-radius: 8px;
  border: 1px solid #eee;
  background: #fdfdfd;
  padding: 10px 20px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s;
}
.contact-form-card .form-group .form-control:focus {
  border-color: var(--theme-color3);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 98, 172, 0.1);
}
.contact-form-card .form-group textarea.form-control {
  height: auto;
  padding-top: 15px;
  height: 100px;
}
.contact-form-card {
  /* Submit Button */
}
.contact-form-card .btn-submit {
  background: var(--theme-color); /* Red Button */
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%; /* Full width on mobile/tablet? Or kept auto */
}
.contact-form-card .btn-submit i {
  margin-left: 10px;
}
.contact-form-card .btn-submit:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* --- 3. Map Section --- */
.map-section {
  line-height: 0; /* Removes bottom gap for iframes */
}
.map-section iframe {
  filter: grayscale(100%); /* Stylish Grey Map */
  transition: all 0.5s;
}
.map-section iframe:hover {
  filter: grayscale(0%); /* Color on hover */
}

/* Responsive */
@media (max-width: 991px) {
  .contact-form-card {
    padding: 30px;
    margin-top: 40px;
  }
  .map-section iframe {
    height: 350px;
  }
}
/* =========================================
   SERVICE DETAIL PAGE STYLES
   ========================================= */
/* --- 1. Header BG --- */
.detail-header-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c54be3855091?q=80&w=2000&auto=format&fit=crop"); /* Blueprint/Planning BG */
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
}
.detail-header-bg .overlay {
  background: rgba(11, 15, 25, 0.8);
}

/* --- 2. Main Section --- */
.service-detail-section {
  padding: 100px 0;
  background-color: #fff;
}

/* --- 3. Sidebar Styles --- */
.service-sidebar {
  /* Sticky Sidebar on Desktop */
}
.service-sidebar.sticky-sidebar {
  position: sticky;
  top: 100px;
}
.service-sidebar .sidebar-widget {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid #eee;
}
.service-sidebar {
  /* Navigation Widget */
}
.service-sidebar .service-nav .widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}
.service-sidebar .service-nav .widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--theme-color3);
}
.service-sidebar .service-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-sidebar .service-nav ul li {
  margin-bottom: 10px;
}
.service-sidebar .service-nav ul li a {
  display: block;
  padding: 12px 20px;
  background: #fff;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s;
  border: 1px solid #eee;
}
.service-sidebar .service-nav ul li a i {
  margin-right: 10px;
  font-size: 12px;
  transition: 0.3s;
}
.service-sidebar .service-nav ul li a:hover, .service-sidebar .service-nav ul li a.active {
  background: var(--theme-color3); /* Blue Active */
  color: #fff;
  border-color: var(--theme-color3);
}
.service-sidebar .service-nav ul li a:hover i, .service-sidebar .service-nav ul li a.active i {
  margin-right: 15px;
}
.service-sidebar {
  /* Contact Widget */
}
.service-sidebar .contact-widget {
  background: #0b0f19; /* Dark BG */
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-sidebar .contact-widget .icon-bg {
  font-size: 100px;
  position: absolute;
  top: -20px;
  right: -20px;
  color: rgba(255, 255, 255, 0.05);
  transform: rotate(20deg);
}
.service-sidebar .contact-widget h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-sidebar .contact-widget p {
  color: #aaa;
  margin-bottom: 20px;
}
.service-sidebar .contact-widget .phone-link {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-decoration: none;
}
.service-sidebar .contact-widget .phone-link:hover {
  color: var(--theme-color3);
}
.service-sidebar .contact-widget .btn-contact {
  display: inline-block;
  background: var(--theme-color3);
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}
.service-sidebar .contact-widget .btn-contact:hover {
  background: #fff;
  color: #000;
}
.service-sidebar {
  /* Download Widget */
}
.service-sidebar .download-widget {
  background: var(--theme-color3);
  text-align: center;
  padding: 20px;
}
.service-sidebar .download-widget a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: block;
}
.service-sidebar .download-widget a i {
  margin-right: 10px;
  font-size: 20px;
  vertical-align: middle;
}

/* --- 4. Main Content Styles --- */
.service-detail-content .main-image {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-detail-content .main-image img {
  width: 100%;
  height: auto;
}
.service-detail-content .sub-heading-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-color3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.service-detail-content .main-heading-text {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-bottom: 25px;
}
.service-detail-content .text-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-detail-content {
  /* Capabilities Grid */
}
.service-detail-content .capabilities-section {
  margin-top: 50px;
}
.service-detail-content .capabilities-section .cap-heading {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  border-left: 5px solid var(--theme-color3);
  padding-left: 15px;
}
.service-detail-content .capabilities-section .cap-box {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s;
}
.service-detail-content .capabilities-section .cap-box .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.service-detail-content .capabilities-section .cap-box .icon-blue {
  background: rgba(22, 98, 172, 0.1);
  color: var(--theme-color3);
}
.service-detail-content .capabilities-section .cap-box .cap-text h5 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}
.service-detail-content .capabilities-section .cap-box .cap-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.service-detail-content .capabilities-section .cap-box:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--theme-color3);
}
.service-detail-content {
  /* Bottom CTA */
}
.service-detail-content .detail-cta {
  margin-top: 60px;
  background: #0b0f19;
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
}
.service-detail-content .detail-cta h3 {
  font-weight: 700;
  margin-bottom: 20px;
}
.service-detail-content .detail-cta .btn-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}
.service-detail-content .detail-cta .btn-cta:hover {
  background: var(--theme-color2);
  color: #fff;
}

/* Background Utility */
.bg-light {
  background-color: #f9f9f9 !important;
}

@media (max-width: 1366px) {
  .hero-banner .hero-content h1 {
    font-size: 44px;
  }
  .hero-banner .hero-img-box img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 84%;
    margin: 30px 0;
  }
  .hero-banner {
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero-banner .faint-text {
    position: absolute;
    left: -120px;
    top: 87%;
  }
}
/* Hide Top Bar on Tablets/Mobile */
@media (max-width: 991px) {
  .top-bar {
    display: none;
  }
  header .navbar .custom-menu-btn {
    margin-left: 20px; /* Space from logo on mobile */
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  header .navbar .navbar-collapse {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
  }
  .hero-banner {
    padding: 60px 0;
  }
  .hero-banner .hero-content {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center; /* Center text on mobile for better look */
  }
  .hero-banner .hero-content h1 {
    font-size: 40px;
  }
  .hero-banner .faint-text {
    display: none; /* Hide decorative text on mobile */
  }
  .hero-banner .hero-img-box {
    margin-left: 0;
  }
  .hero-banner .hero-img-box .floating-tape {
    width: 100px;
    height: 50px;
    right: -10px;
    bottom: 30px;
  }
  .about-section {
    padding: 60px 0;
  }
  .about-section .about-img-wrapper {
    margin-bottom: 50px;
    padding-right: 0;
    text-align: center;
  }
  .about-section .about-img-wrapper .exp-badge {
    left: 0; /* Center badge on mobile if needed or keep left */
  }
  .about-section .about-content {
    padding-left: 0;
  }
  .about-section .about-content .founder-info {
    display: none; /* Hide extra contact info on small screens to save space */
  }
  .about-section .about-content .main-title {
    font-size: 30px;
  }
  .main-footer {
    padding-top: 50px;
  }
  .main-footer .social-links {
    text-align: left !important;
    margin-top: 20px;
  }
  .main-footer .social-links a {
    margin-left: 0;
    margin-right: 20px;
    display: inline-block;
    margin-bottom: 10px;
  }
  .main-footer .footer-middle .footer-cta h2 {
    font-size: 32px;
  }
  .main-footer .footer-middle .border-end-custom {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 40px !important;
  }
  .main-footer .footer-middle .ps-lg-5 {
    padding-left: 0 !important;
  }
  .page-header {
    padding: 80px 0;
  }
  .who-we-are {
    padding: 60px 0;
  }
  .who-we-are .pillars-wrapper {
    margin-top: 40px;
  }
  .mission-vision .mv-box {
    padding: 60px 30px;
  }
  .mission-vision .mv-box .bg-icon {
    font-size: 150px;
  }
  .services-list-section .service-row.reverse-row .row {
    flex-direction: column; /* Stack normally on mobile */
  }
  .services-list-section .service-img-wrapper {
    margin-bottom: 40px;
  }
  .services-list-section .service-content {
    padding: 0;
  }
  .service-cta .cta-box-inner {
    padding: 40px;
    text-align: center;
  }
  .service-cta .cta-box-inner .text-lg-end {
    text-align: center !important;
    margin-top: 30px;
  }
  .about-hero-modern {
    padding-bottom: 60px;
  }
  .about-hero-modern .hero-title {
    font-size: 40px;
  }
  .about-hero-modern .hero-banner-img img {
    height: 300px;
  }
  .story-section .story-card {
    margin-top: 0; /* Reset negative margin on mobile */
    margin-bottom: 40px;
  }
  .mission-vision-modern .border-right-custom {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .values-modern .value-row {
    flex-wrap: wrap;
    text-align: left;
  }
  .values-modern .value-row .value-number {
    margin-bottom: 15px;
    width: 100%;
  }
  .values-modern .value-row .value-icon {
    display: none; /* Hide icon on small screens to save space */
  }
  .values-modern .value-row .value-content p {
    max-width: 100%;
  }
  .ind-block {
    padding: 60px 0;
  }
  .ind-block .ind-img-box {
    margin-bottom: 40px;
  }
  .ind-block .sticky-col {
    position: static;
  }
  .ind-block .sol-grid {
    grid-template-columns: 1fr; /* 1 Column on Mobile */
  }
  .service-row.reverse-layout .row {
    flex-direction: column; /* Stack normally on mobile */
  }
  .service-thumb {
    margin-bottom: 30px;
  }
  .service-thumb img {
    height: 250px;
  }
  .service-summary {
    text-align: left;
  }
  .service-summary .serial-no {
    font-size: 50px;
  }
  .service-sidebar {
    margin-bottom: 50px;
  }
  .ind-hero-modern .hero-title {
    font-size: 40px;
  }
  .ind-hero-modern .hero-graphic {
    margin-top: 40px;
  }
  .ind-section {
    padding: 60px 0;
  }
  .ind-section .ind-visual {
    margin-bottom: 40px;
  }
  .ind-section .solutions-grid {
    grid-template-columns: 1fr;
  }
  .main-footer-pro {
    padding-top: 50px;
  }
  .main-footer-pro .footer-widget {
    margin-top: 40px;
  }
  .main-footer-pro .ps-lg-5 {
    padding-left: 0 !important;
  }
}
/* --- Wrapper & Layout --- */
.blogs-page {
  background-color: #f8f9fa; /* Light gray background for contrast */
  padding: 60px 0;
  /* --- The Main Card --- */
}
.blogs-page .blogs-box-page {
  background: #ffffff;
  border-radius: 10px; /* Modern rounded corners */
  overflow: hidden; /* Ensures image doesn't bleed out */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
  transition: all 0.3s ease-in-out;
  height: 100%; /* Ensures cards are equal height in the grid */
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.blogs-page {
  /* Card Hover Effect */
}
.blogs-page .blogs-box-page:hover {
  transform: translateY(-5px); /* Lifts the card up slightly */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.blogs-page {
  /* --- Image Wrapper --- */
}
.blogs-page .img-wras {
  height: 220px; /* Enforces specific height for uniformity */
  overflow: hidden;
  position: relative;
}
.blogs-page .img-wras img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Crucial: Prevents image stretching/distortion */
  transition: transform 0.5s ease;
}
.blogs-page {
  /* Image Zoom on Hover */
}
.blogs-page .blogs-box-page:hover .img-wras img {
  transform: scale(1.08);
}
.blogs-page {
  /* --- Content Container --- */
}
.blogs-page .bl-conts {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Pushes button to bottom if text lengths vary */
}
.blogs-page {
  /* --- Date Styling --- */
}
.blogs-page .date-wraps p {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}
.blogs-page {
  /* --- Title Styling --- */
}
.blogs-page .bl-conts h4 {
  margin-bottom: 15px;
  line-height: 1.4;
}
.blogs-page .bl-conts h4 a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.3s;
}
.blogs-page .bl-conts h4 a:hover {
  color: #007bff; /* Change this to your brand color */
}
.blogs-page {
  /* --- Excerpt Styling --- */
}
.blogs-page .bl-conts p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.blogs-page {
  /* --- Read More Button Wrapper --- */
}
.blogs-page .blo-readmore {
  margin-top: auto; /* Pushes button to the bottom of the card */
}

.blogs-inner {
  /* --- Page Wrapper --- */
}
.blogs-inner .blogs-inner {
  background-color: #f8f9fa; /* Light background for the whole section */
  padding: 60px 0;
}
.blogs-inner {
  /* --- Left Column: Main Content Wrapper --- */
}
.blogs-inner .main-contss-wraps {
  background: #ffffff;
  padding: 18px; /* Generous internal spacing */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-right: 15px; /* Spacing between content and sidebar */
}
.blogs-inner {
  /* --- Featured Image Section --- */
}
.blogs-inner .thub-wrapper {
  margin-bottom: 0px;
  border-bottom: solid 1px rgba(221, 221, 221, 0.5294117647);
}
.blogs-inner .thub-wrapper img {
  border-radius: 8px; /* Softens the image corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.blogs-inner .thub-wrapper p {
  margin-top: 15px;
  color: #888;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding-bottom: 5px;
}
.blogs-inner {
  /* --- The Actual Blog Content (Typography) --- */
  /* These styles ensure the text from the Editor looks good */
}
.blogs-inner .the-content {
  color: #333;
  font-family: "Georgia", serif; /* Optional: Serif often looks better for long reads */
}
.blogs-inner .the-content p {
  font-size: 1.1rem;
  line-height: 1.8; /* High line-height makes reading easier */
  margin-bottom: 20px;
}
.blogs-inner .the-content h2,
.blogs-inner .the-content h3,
.blogs-inner .the-content h4 {
  color: #2c3e50;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: sans-serif; /* Keep headings modern */
}
.blogs-inner .the-content ul,
.blogs-inner .the-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
.blogs-inner .the-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.blogs-inner .the-content blockquote {
  border-left: 5px solid #007bff;
  background: #f1f1f1;
  padding: 15px 20px;
  font-style: italic;
  margin: 20px 0;
}
.blogs-inner {
  /* --- Right Column: Sidebar Wrapper --- */
}
.blogs-inner .blogs-sidebar-wrapper {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-left: 15px;
  /* STICKY SIDEBAR: Keeps sidebar visible while scrolling */
  position: sticky;
  top: 20px;
}
.blogs-inner {
  /* --- Sidebar: Recent Posts Section --- */
}
.blogs-inner .sidebar-recent-blogs h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee; /* Divider line */
  position: relative;
}
.blogs-inner {
  /* Small accent line under title */
}
.blogs-inner .sidebar-recent-blogs h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #007bff;
}
.blogs-inner {
  /* --- Sidebar List Styling --- */
}
.blogs-inner .recent-blog-slistt ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blogs-inner .recent-blog-slistt ul li {
  border-bottom: 1px solid #f1f1f1;
  padding: 12px 0;
  transition: transform 0.2s;
}
.blogs-inner .recent-blog-slistt ul li:last-child {
  border-bottom: none;
}
.blogs-inner .recent-blog-slistt ul li:hover {
  transform: translateX(5px); /* Slide effect on hover */
}
.blogs-inner .recent-blog-slistt ul li a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
  display: block; /* Makes the whole area clickable */
  transition: color 0.3s;
}
.blogs-inner .recent-blog-slistt ul li a:hover {
  color: #007bff;
}

.clients-page .clinets-wraps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}
.clients-page .clinets-wraps .clients-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  padding: 10px;
  box-shadow: 0 0px 11px -6px #000;
}

/* --- Case Studies Section Styles --- */
.case-studies-section .sub-title {
  color: var(--theme-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
.case-studies-section .case-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
}
.case-studies-section .case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.case-studies-section .case-img-box {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.case-studies-section .case-img-box .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.case-studies-section .case-card:hover .main-img {
  transform: scale(1.1);
}
.case-studies-section {
  /* Logo Overlay Styling */
}
.case-studies-section .logo-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.case-studies-section .logo-overlay img {
  max-width: 80px;
  height: auto;
}
.case-studies-section .case-content {
  padding: 30px;
}
.case-studies-section .case-title {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
  transition: color 0.3s;
}
.case-studies-section .case-title a:hover {
  color: var(--theme-color);
}
.case-studies-section {
  /* Read More Button Styling */
}
.case-studies-section .read-more {
  font-family: var(--theme-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--theme-color);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.case-studies-section .read-more i {
  transition: transform 0.3s ease;
}
.case-studies-section .read-more:hover {
  color: #000;
}
.case-studies-section .read-more:hover i {
  transform: translateX(5px);
}

/* --- Case Study Details Page --- */
.case-details-area h2 {
  color: var(--theme-color);
}
.case-details-area h4 {
  color: var(--theme-color2);
}
.case-details-area .details-img-box img {
  width: 100%;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.case-details-area .case-meta {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
}
.case-details-area .meta-item .label {
  font-size: 13px;
  color: var(--theme-color);
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.case-details-area .meta-item .value {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.case-details-area {
  /* Sidebar Widgets */
}
.case-details-area .sidebar-widget {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}
.case-details-area .widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.case-details-area .widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--theme-color);
}
.case-details-area {
  /* Sidebar Case List */
}
.case-details-area .other-cases-list {
  padding: 0;
}
.case-details-area .other-cases-list li {
  padding-left: 0;
}
.case-details-area .other-cases-list li:before {
  display: none;
}
.case-details-area .side-case-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}
.case-details-area .side-case-item:last-child {
  border-bottom: none;
}
.case-details-area .side-case-img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.case-details-area .side-case-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.case-details-area .side-case-text h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}
.case-details-area .side-case-text span {
  font-size: 13px;
  color: var(--theme-color);
  font-weight: 600;
}
.case-details-area .side-case-item:hover .side-case-text h5 {
  color: var(--theme-color);
}
.case-details-area {
  /* CTA Widget Styles */
}
.case-details-area .cta-widget {
  background: #0b0f19;
  color: #fff;
}
.case-details-area .cta-widget h3 {
  color: #fff;
  margin-bottom: 15px;
}
.case-details-area .cta-widget p {
  color: #a0a6b5;
  font-size: 14px;
  margin-bottom: 25px;
}

/* Responsive */
/* --- Common UL Styling with Font Awesome Check --- */
.common-ul ul {
  padding-left: 0;
  list-style: none; /* Removes the default circle/bullet */
}

.common-ul ul li {
  position: relative;
  padding-left: 30px; /* Space for the icon */
  margin-bottom: 12px;
  line-height: 1.6;
  color: inherit;
}

.common-ul ul li::before {
  content: "\f00c"; /* Font Awesome Free Check Unicode */
  font-family: "Font Awesome 6 Free"; /* Ensure this matches your FA version */
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--theme-color); /* Uses your red theme color */
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Optional: Hover effect to move the text slightly */
.common-ul ul li:hover::before {
  transform: scale(1.2);
}

/* Responsive Font Tweak */
@media (max-width: 768px) {
  .main-contss-wraps,
  .blogs-sidebar-wrapper {
    margin: 0 0 30px 0; /* Remove side margins, add bottom margin */
    padding: 20px;
  }
  .why-choose-section .feature-box {
    padding: 30px;
    flex-direction: column; /* Stack icon on top for mobile */
  }
  .why-choose-section .feature-box .icon-wrapper {
    margin-bottom: 20px;
  }
  .industries-pro .pro-card {
    height: 400px;
  }
  .industries-pro .section-title {
    font-size: 32px;
  }
  .our-clients .clinets-wraps {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Responsive */
@media (max-width: 576px) {
  .our-clients .clinets-wraps {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-banner .hero-content .btn-hero {
    display: inline-block;
    background-color: var(--theme-color);
    color: #fff;
    font-weight: 600;
    padding: 8px 18px;
    transition: all 0.3s ease;
    font-size: 12px;
  }
  .hero-banner .hero-img-box img {
    max-width: 100%;
  }
  .hero-banner .hero-content h1 {
    font-size: 33px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 7px 12px;
    border-radius: 6px;
    margin-bottom: 19px;
    letter-spacing: 0.5px;
  }
  header .navbar .navbar-brand img {
    max-width: 145px;
  }
  .services-modern-fill .title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .common-btn {
    font-weight: 600;
    padding: 9px 26px;
    border-radius: 50px;
    font-size: 15px;
  }
  .process-section-stylish .title-process {
    font-size: 32px;
  }
  .why-choose-section .main-title {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
  }
  .testimonials-pro-section {
    padding: 60px 0;
  }
  .hero-banner .hero-content p {
    max-width: 100%;
  }
  header .navbar {
    padding: 3px 0px;
  }
  .services-modern-fill {
    padding: 60px 0;
  }
  .services-modern-fill .service-card {
    padding: 30px;
  }
  .industries-pro, .process-section-stylish, .why-choose-section {
    padding: 60px 0;
  }
  .testimonials-pro-section .main-title {
    font-size: 32px;
  }
}/*# sourceMappingURL=style.css.map */