﻿/* Jost Font*/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
/* Website developed by Hals Tech Solutions - https://halstechsolutions.com/ */


*{
  box-sizing:border-box;
  transition: all .3s linear;
  text-decoration:none;
  outline:none;
  border:none;
  margin:0;
  padding:0;
  list-style-type:none;
  font-family: "Marcellus", serif;
  font-family: "Poppins", sans-serif;
  font-family: "EB Garamond", serif;
  font-family: "Jost", Arial, Helvetica, sans-serif;
  font-weight:400;
}

html {
  scroll-padding-top:1rem;
  scroll-behavior:smooth;
  overflow-x:hidden;
  scroll-padding-top:1rem;
}

ul li {
    list-style: none;
}

a {
    color:var(--darkgrayColor);
    text-decoration: none;
}

b {
    color:var(--redColor);
    text-decoration: none;
    font-weight: 700;
}

:root {
  --whiteColor: #ffffff;
  --animate-duration: 2s;
	--blackColor: rgb(0, 0, 0);
	--darkgrayColor: #222222;
	--grayColor: rgb(88, 87, 87);
  --redColor: #D40000;
  --formgrayColor:#F3F3F3;
  --blackColor-rgb: 0, 0, 0; 
  --redColor-rgb: 197, 170, 49;
  --redColor-rgb: 212, 0, 0;
  --greenColor-rgb: 2, 122, 2;
}

body {
  background: linear-gradient(135deg, #f6f9fc 0%, #eef4f9 100%);
  background:#f8f9fa;
	min-height: 100vh;
}

::-webkit-scrollbar {
    width:10px;
}
::-webkit-scrollbar-thumb {
    background:rgba(var(--redColor-rgb), 0.6);
    border-radius:6px;
}
::-webkit-scrollbar-track {
    background:var(--whiteColor);
}
.container {
    padding: 20px 32px;
    max-width: 1200px;
    margin:0 auto;
}
@media (max-width: 768px) {
  .container {
    padding:1rem;
}
}
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--redColor);
  z-index: 9999;
  transition: width 0.4s ease-out;
}
/* Context for relative positioning */
label {
  position: relative;
}

/* Base styles for both types of inputs */
input[type="radio"],
input[type="checkbox"] {
  appearance: none;
  background: #fff;
  border: 1.5px solid #777;
  height: 1em;
  width: 1em;
  border-radius: 100%;
  vertical-align: middle;
  position: relative;
}
input[type="radio"] {
  vertical-align: text-top;
}
/* Remove the circular shape from checkboxes */
input[type="checkbox"] {
  border-radius: 0;
}

/* Styles for the pseudo-elements */
input[type="radio"]::before,
input[type="checkbox"]::before {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  top:0;
}

/* Center of the checked radio button */
input[type="radio"]:checked::before {
  border: 2px solid transparent;
  border-radius: 100%;
  background: var(--redColor);
  margin:1px;
}

/* The checkmark shape */
input[type="checkbox"]:checked::before {
  border-right: 2px solid var(--redColor);
  border-bottom: 3px solid var(--redColor);
  height: 110%;
  width: 30%;
  transform: rotate(50deg) translateY(-20%) translateX(-10%);
}

/* Some focus styles for accessibility */
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: solid 1px;
  outline-offset: 1px;
}
#back-to-top-btn {
  position: fixed;
  bottom:5px;
  right:15px;
  background-color: var(--redColor);
  color:var(--whiteColor);
  padding:8px 12px;
  font-size:12px;
  text-align: center;
  z-index: 3000;
  cursor:pointer;
  display: none;
  justify-content: center;
  align-items: center;
  gap:3px;
  border-radius:5px;
  flex-wrap:nowrap;
}
#back-to-top-btn:hover {
  background-color: var(--blackColor);
}

.main_heading_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding:10px 0;
}
.service_heading_container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding:20px 0;
}
.dot-pattern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.dot-pattern .dot {
  width: 8px;
  height: 8px;
  background-color: var(--redColor);
  border-radius:  3px 0 3px 0;
}

.heading-text {
  font-size: 25px;
  font-weight: 500;
  margin: 0;
  text-align: left;
}
@media (max-width: 500px) {
  .main_heading_container {
    padding:5px 0;
  }
  .heading-text {
    font-size: 20px;
}
}

.sub-headline {
  display:grid;
  grid-template-columns:1fr auto 1fr;
  justify-content:center;
  align-items:center;
  max-width:600px;
  width:100%;
  margin:0 auto;
  gap:15px;
  font-size: 17px;
  color:var(--redColor);
  font-weight:600;
  padding:10px 0;
  text-align: center;
  text-transform: uppercase;
  &:after,
  &:before {
      content:"";
      height:1px;
      background-color:var(--redColor);
      opacity:1;
  }
}

.whatsapp-button {
	position:fixed;
	bottom:40px;
	right:10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width:50px;
  height:50px;
	padding:3px;
	background:green;
	border-radius:50%;
	z-index:500;
  animation: greenpulsing 2s infinite;
}
.whatsapp-button .fa-whatsapp {
	font-size:24px;
	color:var(--whiteColor);
}
.whatsapp-button:hover {
	background:var(--blackColor);
	color:var(--whiteColor); 
	border-radius:50%;
	transform: scale(1.1);
}
.whatsapp-button:hover .fa-whatsapp {
	color:var(--redColor);
}
/* Home styling starts */
 .service-details-hero-wrap::after,
 .details-hero-wrap::after,
 .blog-details-hero-wrap::after,
 .about-hero-wrap::after,
 .contact-hero-wrap::after,
 .blog-hero-wrap::after,
 .services-hero-wrap::after,
 .blogpage-hero-wrap::after,
 .services-bg3::after,
 .project-bg3::after,
 .academy-bg3::after,
 .projects-hero-wrap::after,
 .academy-hero-wrap::after,
 .project-details-hero-wrap::after,
 .about-bg3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.breadcrumb-animate {
  position: absolute;
  z-index: 100;
  bottom:14%;
  left:6%;
  color:var(--whiteColor);
 }

 .breadcrumbs {
  text-transform: uppercase;
  font-size: 14px;
  color:var(--whiteColor);
  padding:10px 20px;
  opacity: 70%;
 }

.bread {
  font-size: 40px;
  color:var(--whiteColor);
  line-height: 1.1;
  padding:10px 20px;
  font-weight: 500;
}
.chevron {
  font-size: 14px;
  padding:0 3px;
  color:var(--whiteColor)
}
.home-page a{
  color:var(--redColor);
  font-weight:700;
}
.home-page a:hover {
  color:var(--whiteColor);
}

 @media (max-width: 768px) {
  .bread {
    font-size: 29px;
  }
 }

 .home-hero-products-grid-swiper {
  position: relative;
  padding: 0 20px;
  padding-bottom:40px;
  margin-top: -1.4rem;
  margin-bottom:10px;
  
}

.hero-product-card {
  padding: 20px;
  min-height: 240px;
  max-height: fit-content;
  border-radius: 2px;
  background:var(--whiteColor);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-product-card::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width:0;
height: 2.5px;
background:var(--redColor);
transition: width 0.3s ease;
}
.hero-product-card.middle_card::after {
width:50%;
}

.hero-product-card.middle_card:hover::after {
width:100%;
}

.hero-product-card:hover::after {
width: 100%;
}
.hero-product-icon {
  width:40px;
  margin-bottom: 10px;
}
.hero-product-icon.microsoft-dynamics-365 {
  width:100px;
}
.home-hero-product-title {
font-size: 20px;
margin-bottom: 8px;
color:var(--blackColor);
}

.home-hero-product-description {
color: var(--grayColor);
line-height: 1.5;
}
/*home hero products grid swiper ends*/

/* Benefits styling starts */
 .benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 10px;
  perspective: 1000px;
  padding:10px;
}
.benefit-card {
  padding:20px;
  border-radius: 1px;
  background: #fff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width:100%;
  height:3px;
  background: var(--redColor);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
  transform-origin: right;
}
.icon-container {
  position: absolute;
  bottom:0px;
  right:0px;
  width: 40px;
  height: 20px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
  z-index:20;
}

.benefit-card:hover .icon-container {
  transform: scale(1.1) rotate(-5deg);
}
.benefit-card:hover {
  transform: translateY(-10px) rotateX(4deg);
}
.benefit-icon {
  font-size: 26px;
  color: var(--whiteColor);
}

.benefit-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color:var(--redColor);
}
.benefit-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--grayColor);
  margin-bottom: 12px;
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background:var(--redColor);
  border-radius: 50%;
  transform: translate(50%, 50%);
  z-index: 0;
  animation: redpulsing 2s infinite;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding:10px 5px;
    margin-top:5px;
  }
  .benefit-card {
    padding: 20px;
  }
  .benefit-title {
    font-size:22px;
  }
  .benefit-description {
    font-size: 15px;
  }
  .benefit-icon {
    font-size: 22px;
  }
  
}
@media (max-width: 500px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.home-about-section {
  background: var(--whiteColor);
}
.home-about-img {
  clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%,0 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height:100%;
  width:90%;
}
.home-about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  justify-content: center;
}

.home-about-subheading {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--redColor);
  margin-bottom: 8px;
  font-weight:500;
}

.home-about-heading {
  font-size: 34px;
  font-weight: 700;
  color: var(--blackColor);
  margin-bottom: 22px;
  line-height: 1.2;
}

.body-text {
  font-size: 16px;
  line-height: 30px;
  color: var(--darkgrayColor);
  margin-bottom:24px;
  text-align: justify;
}

.button, .orange_button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border:2px solid var(--redColor);
  border-radius: 50px;
  color: var(--whiteColor);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease;
  animation: blackpulsing 2s infinite;
  box-shadow: 0 0 0 0 rgba(var(--blackColor-rgb), 0.5);
  z-index:20;
  font-size:16px;
}
.button::after, .orange_button::after{
  content:"";
  position: absolute;
  left:0;
  bottom:0;
  width:0;
  height:100%;
  border-radius: 50px;
  background:rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 0 rgba(0,0,0, 0.5);
  z-index:-1;
  transition: 0.3s ease-in-out;
}

.button:hover::after, .orange_button:hover::after {
  width:100%;
  box-shadow: 0 0 0 0 rgba(0,0,0, 0.5);
}

.button-arrow {
  margin-left: 12px;
  transition: transform 0.3s ease;
  transform: translateY(30px);
  display:none;
}
.button-arrow {
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95em;
  line-height: 1;
}


.button,
.orange_button,
.submit-button,
.details-hero-wrap-cta-button,
.search-button,
.home-button,
.project-overlay-button,
#message-button,
.subscribe-button {
  border-radius: 50px;
}

.submit-button,
.details-hero-wrap-cta-button,
.home-button,
#message-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.button:hover .button-arrow, .orange_button:hover .fa-arrow-right {
  transform: translateY(0);
  opacity:1;
}
.button:hover .button-arrow, .orange_button:hover .fa-arrow-right {
  transform: translateX(4px);
}
.orange_button {
  animation: none;
  background:var(--redColor);
  box-shadow: 0 0 0 0 rgba(var(--redColor-rgb), 0.5);
  animation: redpulsing 2s infinite;
}

@keyframes blackpulsing {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--blackColor-rgb), 0.8);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(var(--blackColor-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--blackColor-rgb), 0);
  }
 
}

@keyframes redpulsing {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--redColor-rgb), 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(var(--redColor-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--redColor-rgb), 0);
  }
 
}
@keyframes greenpulsing {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--greenColor-rgb), 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(var(--greenColor-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--greenColor-rgb), 0);
  }
 
}
@media (max-width: 768px) {
  .home-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-about-img {
    height: 30vh;
    width:100%;
  }

  .home-about-heading {
    font-size: 32px;
  }
}

@media screen and (max-width:500px) {
  .button, .orange_button { 
    width:80%;
    justify-content: center;
    text-align: center;
  }
}

/*Counter styling here */
.counter-container-row {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:40px;
 
}
.counter {
  padding:50px 0;
 
}

.counter-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter-icon-container .counter-icon {
  font-size:25px;
  color:var(--redColor);
  padding-bottom:10px;
}

.counter-items {
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
  align-items: center;
  gap:15px;
  font-size:18px;
}
.counter-items .number {
  font-size:21px;
  color:var(--blackColor);
}

.counter-items .plus-superscript {
  vertical-align: top;
  font-size:24px;
  color:var(--redColor);
  font-weight: 400;
}

.counter-items span {
  font-size:15px;
  color:var(--grayColor);
}

@media (max-width: 768px) {
.counter-container-row {
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
}
.counter {
  padding-top:30px;
  padding-bottom:30px;
}

}
@media (max-width: 320px) {
.counter-container-row {
  grid-template-columns: 100%;
  gap:5px;
}
.counter {
  padding-top:20px;
  padding-bottom:20px;
}
}
/*Counter styling ENDS here */

 /* Header Styling Starts */
.header-section {
  display: block;
  top:0;
  left:0;
  width:100%;
  z-index:2000;
}
.header_top {
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  gap:15px;
  align-items: center;
  background:var(--blackColor);
  color:var(--whiteColor);
}
 .header__top__items {
  display:flex;
  gap:10px;
  padding:8px 25px;
  align-items:center;
  justify-content: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.header__top__items .header-contact-icon {
  color:var(--whiteColor);
  font-size:17px;
} 

.header__top__items .subheading-title {
  color:var(--whiteColor);
  font-size:14px;
  line-height: 20px;
  font-weight:300;
}

.header-phone-links {
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
@media (max-width: 768px) {
  .header__top__items {
    border-right: none;
    padding:8px 12px;
  }
  .header__top__items.location {
    display:none;
  }
}
/*main header */
.header {
  display:flex;
  justify-content: space-between;
  gap:20px;
  align-items: center;
  width:100%;
  z-index: 2000;
  background:var(--whiteColor);
  padding:10px 20px;
}
.header.sticky {
  position: fixed;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
}
.logo-img {
  width:250px;
}
.nav ul {
  display:flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap:wrap;
  gap:5px;
  padding-right:30px;
}

.nav-item .nav-link {
  color:var(--blackColor);
  font-size: 16px;
  padding:18px 11px;
  font-weight: 700;
  position: relative;
  z-index:20;
}
.nav-item .nav-link .chevron {
  display:none;
}

.nav-item .nav-link.utility-item {
  padding:2px 16px;
  padding-right:6px;
}
.nav-item .nav-link::after {
  content:"";
  position: absolute;
  bottom:0;
  left:17%;
  width:70%;
  height:3px;
  background:var(--redColor);
  z-index:-1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav-item .nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-item .nav-link.active {
  color:var(--redColor);
  font-weight: 800;
}
.nav-item .nav-link.grid-outline {
  color:var(--darkgrayColor);
  font-size: 19px;
}
.nav-item .nav-link.grid-outline:hover {
  color:var(--redColor);
  cursor: pointer;
}
.nav-item .nav-link.grid-outline:hover::after {
  transform: scaleX(0);
}
.nav-item .nav-link.active::after {
  transform: scaleX(1);
}
.nav-item .nav-link:hover {
  color:var(--redColor);
}
.menubars, .menuclosebtn {
  display:none;
}

   /* Mega Menu Styling */
   .mega-menu {
    position: relative;
  }
  
  .mega-menu-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 120%;
    width: 1000px;
    background: var(--whiteColor);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    padding: 30px;
    z-index: 1000;
  }
  
  .mega-menu:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 17px);
  }
  
  .mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .mega-menu-section h3 {
    color: var(--blackColor);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--redColor);
  }
  
  .mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mega-menu-item {
    display: block;
    padding:8px;
    color: var(--darkgrayColor);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 15px;
    border-bottom: 1px solid #f3f3f3;
    border-radius: 8px;
  }
  
  .mega-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--redColor);
    transition: height 0.2s ease;
  }
  
  .mega-menu-item:hover {
    color: var(--redColor);
    padding-left: 20px;
  }
  
  .mega-menu-item:hover::before {
    height: 50%;
  }
  
  .mega-menu-item.active {
    color: var(--redColor);
    font-weight: 500;
  }
  


/* Dropdown Styling */
.dropdown {
  position: relative;
  z-index:6000;
}
.dropdown .dropdown-content {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
  top: 120%;
  background: var(--whiteColor);
  min-width: 250px;
  padding: 15px 0;
  border-radius: 1px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index:6000;
}

/* Admin Dropdown Specific Styling */
.admin-dropdown .dropdown-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-width: 400px;
  padding: 20px;
  gap: 10px;
}

.admin-dropdown .dropdown-content li {
  padding: 8px;
}

.admin-dropdown .dropdown-content .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 14px;
}

.admin-dropdown .dropdown-content .nav-link:hover {
  background: rgba(var(--redColor-rgb), 0.1);
  transform: translateX(5px);
}

/* Services Dropdown Specific Styling */
.services-dropdown .dropdown-content {
  min-width: 400px;
}

.services-dropdown .service-section {
  padding: 15px 20px;
}

.services-dropdown .service-title {
  color: var(--blackColor);
  font-weight: 600;
  font-size: 16px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.services-dropdown .services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services-dropdown .service-item {
  padding: 8px 12px;
  width: 100%;
  color: var(--blackColor);
  font-size: 16px;
  font-weight:500;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
  border-bottom:1px solid #eee;
}
.services-dropdown .service-item:hover {
  background: rgba(var(--redColor-rgb), 0.1);
  color: var(--redColor);
  padding-left: 10px;
}
.services-dropdown .service-item.active {
  background: rgba(var(--redColor-rgb), 0.1);
  color: var(--redColor);
}

/* Shared Dropdown Hover Effects */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      top: calc(100% + 17px);
      z-index: 1000;
  }
  .services-dropdown.dropdown-1, .services-dropdown.dropdown-2, .services-dropdown.dropdown-3 {
    display: none;
  }
  .mega-menu {
    position: relative;
    display: block;
  }
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
  .dropdown .dropdown-content {
    position: absolute;
    left:0;
    box-shadow:none;
    min-width: fit-content;
    width:100%;
    max-height:0;
    transform: none;
    overflow-x: hidden; 
    overflow-y: auto;
    border-radius: 1px;
    pointer-events: all;
  }
  .mega-menu {
    display: none;
  }
  .services-dropdown.dropdown-1, .services-dropdown.dropdown-2, .services-dropdown.dropdown-3 {
    display: block;
  }
  .dropdown .dropdown-content.show {
    position: relative;
    max-height:500px;
    transform: max-height 0.3s ease-in-out;
    visibility: visible;
    opacity: 1;
    top:120%;
    z-index:2500;
    pointer-events: all;
  }

  /* Admin Dropdown Mobile Styles */
  .admin-dropdown .dropdown-content {
    display: flex;
    flex-direction: column;
    padding: 5px;
  }

  .admin-dropdown .dropdown-content li {
    padding: 5px;
  }
  .admin-dropdown .dropdown-content .nav-link {
    padding: 8px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
  }
  /* Services Dropdown Mobile Styles */
  .services-dropdown .service-section {
    padding: 8px;
  }

  .services-dropdown .services-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .services-dropdown .service-item {
    padding: 8px;
    border-bottom: 1px solid #ccc;
  }

  .services-dropdown .service-item:hover {
    background: rgba(var(--redColor-rgb), 0.1);
    color: var(--redColor);
  }
}

@media (max-width: 768px) {
  .menubars {
    display: block;
    font-size: 20px;
    color: var(--blackColor);
  }
  .menuclosebtn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 800;
    font-size: 30px;
    color: var(--blackColor);
  }
  .nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    max-height:100vh;
    overflow:hidden;
  }
  .nav ul::-webkit-scrollbar {
    width:2px;
  }

  .nav ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--whiteColor);
  }
  .nav-link {
    color: var(--blackColor);
    font-size: 16px;
    font-weight: 500;
  }
  .nav-item .nav-link .chevron {
    display:inline-block;
    transition: 0.3s ease-in-out;
    font-size: 13px;
    color:var(--blackColor);
    padding-left:5px;
  }
.nav-item .nav-link.active {
    color:var(--redColor);
  }
.nav-item .nav-link:hover {
    color:var(--redColor);
  }
.nav-item .nav-link::after {
    display:none;
  }
  .header {
    position: sticky;
    background: var(--whiteColor);
    padding: 10px 20px;
  }
  .logo-img {
    width:150px;
  }
  .nav {
    position: fixed;
    visibility: hidden;
    pointer-events: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: var(--formgrayColor);
    opacity: 0;
    padding: 40px 20px; /* Reduce horizontal padding */
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 9999;
  }
  .nav::-webkit-scrollbar {
    width:2px;
    background: var(--whiteColor);
  }
  .nav::-webkit-scrollbar-thumb {
    background: var(--redColor);
  }
  .nav.active {
    visibility: visible;
    pointer-events: auto;
    height: 100vh;
    opacity: 1;
  }

  .nav ul {
    width: 100%;
    padding-right: 0; /* Remove right padding */
  }

  .nav-item {
    width: 100%; /* Ensure items take full width */
  }

  /* Update dropdown styles */
  .dropdown .dropdown-content {
    width: calc(100% + 40px); /* Account for nav padding */
    margin-left: -20px; /* Offset the nav padding */
    padding: 10px 20px;
  }

  /* Update services dropdown styles */
  .services-dropdown .service-section {
    width: 100%;
  }

  .services-dropdown .service-item {
    width: 100%;
    white-space: normal; /* Allow text to wrap */
  }

  /* Update admin dropdown styles */
  .admin-dropdown .dropdown-content {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}

/* Footer */
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding:10px 50px;
  justify-content: center;
  border-top: 1px solid #ccc;
  align-items:start;
  gap:30px;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--whiteColor);
  color: var(--blackColor);
}

.footer-content {
  color: var(--blackColor);
  font-size: 15px;
}
.footer-logo {
  width: 220px;
}
.footer-content ul li {
  padding: 8px 0;
}
.footer-content ul li a {
  color: var(--blackColor);
  font-size: 15px;
}
.footer-content ul li a:hover {
  color: var(--redColor);
  text-decoration: underline;
  padding-left:3px;
}

.ftco-heading-2 {
  padding: 10px 0;
  font-size: 22px;
  font-weight:600;
}

.footer-content p {
  color: var(--blackColor);
  font-size: 15px;
  line-height: 25px;
  padding-bottom:20px;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blackColor);
  font-size: 15px;
  padding: 20px;
  border-top: 1px solid var(--formgrayColor);
}
.footer-copyright a span {
  color:var(--redColor);
}
.footer-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.ft-icon {
  color: var(--redColor);
  font-size: 18px;
}

.footer-content .ft-com-icon {
  color: var(--redColor);
  font-size: 19px;
}

.ft-icon:hover {
  color: var(--redColor);
}

.copyright-mark {
  color: var(--redColor);
  padding-left: 10px;
}
.text {
  font-size: 16px;
  padding-left: 5px;
}
.footer-communication-info li {
  display:flex;
  gap:12px;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 20px ;
    gap:10px;
  }
  .footer-logo {
    width: 140px;
  }
}
/* Footer ends */
.homeSwiper {
  width: 100%;
  height: 70vh;
  position: relative;
}
.home-hero-wrap_1,
.home-hero-wrap_2,
.home-hero-wrap_3 {
  position: relative;
  height: 70vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index:600;
}

.home-hero-wrap_1::after,
.home-hero-wrap_2::after,
.home-hero-wrap_3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.welcome-note {
  position: absolute;
  top: 50%;
  left: 0;
  padding:60px;
  transform: translateY(-50%);
  max-width: 1000px;
  width: 100%;
  z-index: 100;
}

.welcome-note-title {
  font-size: 42px;
  color: var(--whiteColor);
  padding: 35px 0;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
  text-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}
.welcome-note .swiper-information-text {
  padding-bottom: 30px;
  font-size: 17px;
  line-height: 20px;
  color: var(--whiteColor);
  font-weight: 500;
}
.hero-button-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.button-arrow {
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.button:hover .button-arrow {
  transform: translateX(4px);
}
.swiper-button-next::after, 
.swiper-button-prev::after {
  content: '';
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--whiteColor);
  background:rgba(214, 203, 182,0.8);
  border-radius:50%;
  font-size:18px;
  height: 32px;
  width:32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.homeSwiper:hover.swiper-button-prev,
.homeSwiper:hover.swiper-button-next {
  opacity: 1;
}
.swiper-pagination-bullet {
  color:var(--redColor);
  background: var(--redColor);
  z-index: 5000;
}
.swiper-pagination-active {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .welcome-note {
    padding:30px;
  }
  .welcome-note-title {
    font-size: 32px;
  }

  .welcome-note .swiper-information-text {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
.homeSwiper,
.home-hero-wrap_1,
.home-hero-wrap_2,
.home-hero-wrap_3 {
  height: 70vh;
}
.welcome-note {
  padding:30px;
}
.welcome-note-title {
  font-size: 30px;
  padding: 18px 0;
}

.welcome-note .swiper-information-text {
  font-size: 17px;
  font-weight: 400;
  padding-bottom: 12px;
}
}


/*Why choose section */
.why-choose-section {
  padding: 40px 10px;
  background: var(--whiteColor);
}
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.choose-us-image {
  border-radius: 20px;
  width:100%;
  height:auto;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.choose-us-image img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}
.description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--darkgrayColor);
  margin: 20px auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.stat-box {
  padding: 24px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 2px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 23px;
  font-weight:500;
  color: var(--blackColor);
}
.support-text {
  font-size: 18px;
  color: var(--blackColor);
  font-weight:500;
  line-height: 30px;
}
.stat-text {
  font-size: 16px;
  color: var(--darkgrayColor);
  font-weight:400;
  line-height: 1.4;
}
.stats-utilities-container {
  display:flex;
  justify-content: flex-start;
  align-items: center;
  gap:6px;
  font-size:22px;
  color:var(--blackColor);
}
.stats-utilities-container ion-icon{
  color:var(--redColor);
  font-size:25px;
}
.stats-utilities-container span {
  color:var(--redColor);
  font-size:25px;
  padding-bottom:16px;
}
@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stat-box {
    padding: 10px;
  }
  .stats-grid {
    gap: 20px;
  }
  .stat-number {
    font-size: 19px;
  }
}

/* Home-Services Starts */
.home-services-headline-container {
    padding:20px;
    text-align: center;
  }
  .home-services-headline-container .services-headline {
    font-size:30px;
    color:var(--blackColor);
    text-align: center;
    padding:10px;
  }

  .home-services-headline-container .services-highlight {
    font-size:16px;
    color:var(--grayColor);
    text-align: center;
    line-height: 30px;
    padding:10px;
  }

.home-services-container {
	display:grid;
	grid-template-columns: repeat(3, 1fr);
	padding:10px;
	gap:30px;
  }
/* Service card */
	@media(min-width:768px) and (max-width:1024px) {
.home-services-container {
		grid-template-columns:repeat(2, 1fr);
		padding:0px;
		gap:10px;
	}
	}
	
@media(max-width:768px) {
.home-services-container {
		grid-template-columns: 1fr;
		padding:0px;
		gap:10px;
	}
}

/* Home BLOG starts */
.home-blogs-container {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
  justify-content: center;
  align-items: start;
  padding:20px 0;
}

@media (min-width:768px) and (max-width:1024px) {
.home-blogs-container {
 grid-template-columns: repeat(2, 1fr);
 gap:20px;
}
}

@media (max-width:768px) {
.home-blogs-container {
 grid-template-columns: 100%;
 gap:10px;
}
}
/* Testimonial FAQ section starts */
.testimony-faq-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--whiteColor);
  background-attachment: fixed;
}
.testimony-faq-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.about-testimony-section {
  background:var(--formgrayColor);
}
/* testimonials start */
.testimonial-grid {
  max-width:1400px;
  margin:0 auto;
  z-index: 200;
  position: relative;
}
.review-swiper-container {
  width:50%;
}
.testimonial-card {
    background: var(--whiteColor);
    border-radius:0 40px 0 40px;
    padding: 20px;
    height: auto;
    margin:20px 0;
  }

  .testimonial-header {
    display: flex;
    align-items: center;
  }

  .client-image {
    width: 50px;
    height: 50px;
    padding:4px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 2px solid #ccc;
  }
  .client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .client-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #45011a;
    margin: 0 0 5px 0;
  }

  .client-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
  }

  .quote-icon {
    font-size: 48px;
    color: #45011a;
    opacity: 0.1;
    margin-bottom: 10px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grayColor);
    margin-bottom: 24px;
  }

  .rating {
    color: #ffd700;
    font-size: 20px;
    margin-top: 20px;
  }

  @media (max-width: 768px) {
    .testimonial-card {
      padding: 15px;
    }
    .review-swiper-container {
      width:100%;
      border-radius:10px;
    }
  }
/* testimonials end */
/*  faq starts */
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 10px auto;
  gap:20px;
  z-index: 200;
  position: relative;
}
.faq-image {
  height:auto;
  width:100%;
  background: var(--redColor);
  border-radius: 20px;
}
.faq-image img {
  height:100%;
  width:100%;
  object-fit: cover;
  border-radius: 20px;
}
.faq-list {
  padding: 20px;
  max-width: 600px;
  width:100%;
  max-height:460px;
  overflow-y: auto;
  border-left: 2px dotted var(--redColor);
}
.faq .heading {
  font-size:3.5rem;
  text-align: center;
  color:var(--blackColor);
  opacity:80%;
  padding-bottom: 3rem;
}

.faq-item {
    background: white;
    background:rgb(239, 235, 215);
    border-radius: 1px;
    margin-bottom: 4px;
    overflow: hidden;
    border-bottom: 2px solid var(--redColor);
}

.faq-question {
    padding: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--blackColor);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color:var(--blackColor);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color:var(--grayColor);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px 20px;
    color:var(--grayColor);
    background: #f8fafc;
}
@media screen and (max-width:768px) {
  .faq-container {
    grid-template-columns:1fr;
  }
  .faq-list {
    padding: 10px;
    width:100%;
    max-height:600px;
    overflow-y: auto;
    border-left: none;
  }
}

  /*partners section */
.partners-section {
  background: var(--whiteColor);
  margin:40px 0;
  padding:20px 0;
}
.partner-logo-container {
  width:100%;
  height:14vh;
  padding:10px;
  background: var(--whiteColor);
}
.partner-logo-container:hover {
  cursor:grabbing;
}
.partner-logo-container img {
  width:100%;
  height:100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partner-logo-container {
    padding:10px;
    height:9vh;
  }

}

/*Subscription starts */
.subscribe-section {
  background: var(--blackColor);
  padding:30px
}

.subscribe-to-newsletter-heading {
  text-align: center;
  font-size:30px;
  color:var(--whiteColor);
  font-weight: 700;
  padding-bottom: 10px;
}

.subscribe-to-newsletter-subheading {
  text-align: center;
  font-size:17px;
  line-height: 25px;
  color:var(--whiteColor);
  font-weight: 500;
}

.subscribe-form {
  max-width:600px;
  width:100%;
  margin:20px auto;
  border-radius: 1px;
}
.subscribe-form .input {
  width:100%;
  padding:15px;
  background: var(--whiteColor);
  border-radius: 1px;
  font-size: 15px;
  color:var(--blackColor);
  border-radius:1px;
}

.subscribe-form .input-submit-container {
  display:flex;
  justify-content: center;
  align-items: center;
  gap:20px;
  width:100%;
  color:var(--whiteColor);
}
.subscribe-form .input-submit-container .sub-form {
  width:100%;
  border-radius:8px;
}
.subscribe-button {
  padding:14px 20px;
  border-radius:50px;
  font-size:15px;
  background: var(--redColor);
  color:var(--whiteColor);
  outline:none;
  cursor:pointer;
}

.subscribe-button:hover {
  transform: scale(1.03);
  background: var(--grayColor);
  color:white;
  cursor:pointer;
}

@media (max-width: 400px) {
  .subscribe-form .input-submit-container {
    display:flex;
    flex-wrap: wrap;
  }
  .subscribe-to-newsletter-heading {
    font-size:25px;
  }
  .subscribe-button {
    width:100%;
  }
  
}

/*about-page-styles */
.about-hero-wrap {
  position: relative;
  height:50vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-bg2 { 
  height:80%;
  width:100%;
}
.about-bg2 img {
  width:100%;
  height:100%;
  object-fit: cover;
  /* border: 4px solid var(--redColor); */
}
@media (max-width: 768px) {
  .about-bg2 { 
    height:30vh;
  }
}
.about-page-section {
  padding-top:40px;
}
.about-section {
  position: relative;
  display: grid;
  grid-template-columns:1fr 1fr;
}
.about-paragraph-section {
  padding:50px;
  padding-top:0px;
  font-size: 16px;
  box-shadow:var(--boxShadow2);
}
.about-paragraph-section .subheading {
  text-transform: uppercase;
  color:var(--blackColor);
  font-size: 16px;
  font-weight: 700;
}
.about-paragraph-section .heading {
  color:var(--blackColor);
  font-size: 40px;
  font-weight: 700;
}
.about-paragraph-section > p {
  word-spacing: 3px;
  line-height: 30px;
  font-size: 17px;
  color:var(--grayColor);
  margin-bottom: 20px;
  margin-top:20px;
  text-align: justify;
}

.about-intro-section {
  font-size:17px;
  height:50vh;
}

.heading-section-wordings {
  position: relative;
  text-align: center;
  max-width:600px;
  margin:auto;
  z-index: 200;
  padding:50px 20px;
}
.heading-section-wordings > h2 {
  font-size:32px;
  font-weight:600;
  padding-bottom: 20px;
  color:var(--whiteColor);
}

@media (max-width: 768px) {

  .about-bg3 {
    margin-left:0;
  }
  .heading-section-wordings > h2 {
    font-size:22px;
    font-weight:600;
    padding-bottom: 20px;
  }
  .about-section {
    grid-template-columns:100%;
  }

  .color-blank-container {
    display:none;
  }
  .about-paragraph-section {
    padding:10px;
    padding-top:20px;
    font-size: 16px;
  }
}


/*Our History starts */
.about-us-container {
  overflow: hidden;
}
.about-tabs {
  display: flex;
  gap: 8px;
  background: var(--formgrayColor);
  padding: 8px;
  border-radius: 50px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  flex-wrap:wrap;
  width:100%;
}

.about-tabs .about-item {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.about-tabs .about-item:hover {
  background: rgba(var(--redColor-rgb), 0.5);
}

.about-tabs .about-item.active {
  background: var(--redColor);
  color: var(--white);
}
.about-container1, .about-container2, .about-container3, .about-container4 {
  background-color: var(--whiteColor);
  padding:40px;
  border-radius:1px;
  margin:30px 0;
}
 .about-container2, .about-container3, .about-container4 {
  display:none;
}
.about-container4 ul li {
  list-style-type: none;
}
.vision-body, .mission-body, .core-values-body, .history-body {
  font-size:16px;
  font-weight:400; 
  line-height:30px; 
  color:var(--darkgrayColor);
}
.about-header {
  color:var(--blackColor); 
  font-weight:800;
  font-size:22px;
  padding:4px 0;
  position: relative;
  z-index:50
}
.about-underline {
  height:3px;
  width:50px;
  background-color: var(--redColor);
  margin-bottom:20px;
}
.history-body, .vision-body, .mission-body {
  border-radius: 10px;
  padding-left:20px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--redColor);
}
.core-values-body li {
  margin-bottom: 12px;
  padding: 14px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--redColor);
}
.core-values-body li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.core-values-body strong {
  color: var(--blackColor);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
.about-tabs {
  border: none;
  gap:4px;
  justify-content: flex-start;
  align-items: center;
}
.about-container1, .about-container2, .about-container3, .about-container4 {
  padding:15px;
  border-radius:0px;
}
}
.erp-images {
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:30px;
  justify-content:center;
  align-items: center;
  margin:50px auto;
}
.erp-image-container {
  height:50vh;
  width:100%;
}
.erp-image-container img {
  width: 100%;
  height:100%;
  object-fit: contain;
}
.certification-image-container {
  height:auto;
  width:100%;
}
.certification-image-container img {
  width: 100%;
  height:100%;
  object-fit: cover;
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* Adjust ratio for better balance */
  gap: 60px;
  align-items:start;
  margin: 20px 0;
}

.industry-image-container {
  position: relative;
  width: 100%;
  height: 90%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-image-container:hover img {
  transform: scale(1.05);
}

.sector-grid-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sector-card {
  background: var(--whiteColor);
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--redColor);
  transition: height 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sector-card:hover::before {
  height: 100%;
}

.icon {
  background: rgba(var(--redColor-rgb), 0.1);
  border-radius: 12px;
  padding:3px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.icon ion-icon {
  font-size: 24px;
  color: var(--blackColor);
}
.sector-card:hover .icon {
  background: var(--redColor);
  color: var(--whiteColor);
  transform: rotate(360deg);
}

.industry-name {
  font-weight: 600;
  color: var(--darkgrayColor);
  font-size: 16px;
  transition: color 0.3s ease;
}

.sector-card:hover .industry-name {
  color: var(--redColor);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .sector-grid-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .industry-image-container {
    height: 300px;
  }
}

@media screen and (max-width: 500px) {
  .sector-grid-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .sector-card {
    padding: 15px;
    gap: 10px;
  }

  .icon {
    width: 24px;
    height: 24px;
    font-size: 18px;
  }
  .icon ion-icon {
    font-size: 18px;
  }
  .industry-name {
    font-size: 14px;
  }
}

@media screen and (max-width: 360px) {
  .sector-grid-content {
    grid-template-columns: 1fr;
  }
}

.cta-button-container {
  display:flex;
  justify-content: center;
  align-items: center;
  margin:20px 0;
}
@media screen and (max-width:768px) {
  .erp-images {
    grid-template-columns: 1fr;
    gap:20px;
    margin:10px auto;
    margin-bottom:40px;
  }
}
@media screen and (max-width:500px) {
  .erp-image-container {
    height:30vh;
    width:100%;
  }
  .industries-grid {
    grid-template-columns: 1fr;
    gap:10px;
  }
  .industry-image-container {
    width:100%;
    height:30vh;
  }
  .industries-grid .sector-grid-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .sector-card {
    background: white;
    padding: 10px;
    gap: 16px;
  }
  .industry-name {
    font-weight: 400;
    font-size: 15px;
    }
}
@media screen and (max-width:300px) {
  .industries-grid .sector-grid-content {
    grid-template-columns: 1fr;
  }
}
/* blog page */
.blog-hero-wrap {
  position: relative; 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 50vh;
  }
  .blog-post-body {
   text-align: center;
   padding:40px;
   padding-top:0px;
   margin:20px auto;
   font-size:17px;
  }
  .blog-post-body .blog-text {
   margin:20px auto;
   font-size:18px;
   line-height:30px;
   color:rgb(99, 96, 96);
  }
  .blog-author-details {
   display:flex;
   flex-wrap:wrap;
   gap:12px;
   justify-content: center;
   align-items: center;
   margin-bottom: 15px;
   color:var(--redColor);
   font-size:16px;
  }
  .blog-author-details a {
   color:var(--redColor);
   font-size:16px;
   font-weight: bold;
  }
 .blog-heading a {
   color:var(--blackColor);
   font-size:20px;
   font-weight: bold;
  }
 .pagination-buttons {
   display:flex;
   flex-wrap: wrap;
   gap:15px;
   justify-content: center;
   align-items: center;
   padding-bottom:10px;
 }
 .pagination-buttons>li a {
   color:var(--redColor);
   font-size:15px;
   border-radius:50%;
   padding:10px 15px;
   border:.1px solid #ccc;
   background-color:var(--whiteColor);
   cursor:pointer;
 }
 .pagination-buttons>li a:hover {
   background-color:var(--redColor);
   color:var(--whiteColor);
 }
 .pagination-buttons>li a.active {
   background-color:var(--redColor);
   color:var(--whiteColor);
 }
 
 @media (max-width:768px) {
   .blog-post-body {
     padding:10px;
   }
   .blog-img-container {
     padding:20px;
     padding-bottom:10px;
   }
 }
/*Service-card*/
.services-section {
  background: var(--formgrayColor);
  padding: 20px 0;
}
.services-grid {
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  perspective: 1000px;
}

.service_card {
  background: var(--whiteColor);
  border-radius: 5px;
  padding: 2rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1;
}

.service_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffd700, #daa520);
  opacity: 0;
  z-index: -1;
  transition: 0.5s;
  transform: translateY(100%);
}
.service_card:hover::before {
  opacity: 0.1;
  transform: translateY(0);
}

.service_card:hover {
  transform: translateY(-5px) rotateX(3deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  cursor: pointer;
}

.icon-wrapper {
  /*background: #fff8e7;*/
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.service_card:hover .icon-wrapper {
  transform: rotateY(180deg);
  background: #fff8e7;
}

.icon-wrapper .service-icon {
  width:62px;
  transition: 0.3s;
}
.service_card:hover .icon-wrapper .service-icon {
  color: var(--whiteColor);
  transform: rotateY(-180deg);
}

.service_card_title {
  color: var(--blackColor);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 14px;
  transition: 0.3s;
  position: relative;
}

.service_card_title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #daa520;
  transition: 0.3s;
}

.service_card:hover .service_card_title::after {
  width: 50px;
}

.service-description {
  color: var(--grayColor);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: 0.3s;
}

.service_card:hover .service-description {
  color: var(--darkgrayColor);
}

/* Shine effect */
.service_card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
      45deg,
      transparent,
      rgba(255,255,255,0.6),
      transparent
  );
  transform: rotate(45deg);
  transition: 0.5s;
  opacity: 0;
}

.service_card:hover::after {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

@media (max-width: 768px) {
    .services-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      margin: 15px auto;
      gap: 10px;
    }
    .icon-wrapper {
      margin-bottom: 20px;
    }
    .icon-wrapper ion-icon {
      font-size:24px;
    }
}
/* End Service-card */

/* Services page */
.services-hero-wrap {
  position: relative; 
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
  }
  .services-bg3 {
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center center;
   z-index: 5;
   position: relative;
 }
 .services-headline-container {
  padding:20px;
  text-align: center;
 }
 .services-headline-container .services-headline {
  font-size:30px;
  font-weight: 700;
  color:var(--blackColor);
  text-align: center;
  padding:10px;
 }
 .services-container {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  padding:20px;
  gap:30px;
  background:var(--whiteColor);
 }

@media(min-width:768px) and (max-width:1024px) {
.services-container {
 grid-template-columns:repeat(2, 1fr);
 padding:0px;
 gap:20px;
}
}

@media(max-width:768px) {
.services-container {
 grid-template-columns: 1fr;
 padding:0px;
 gap:10px;
}
}

/* Service detail page */

.service-details-hero-wrap,
.details-hero-wrap {
	position: relative;
	background-attachment: fixed;
  background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	height:50vh;
}
.openformmodal {
  cursor: pointer;
}
.service-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-content: center;
  align-items: start;
}
.image-section {
  height: 80%;
  width:90%;
}

.image-section img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%,0 100%);
}
@media (max-width:768px) {
  .image-section {
    height: 30vh;
    width:100%;
  }
}
.service-content-section h1 {
  font-size: 24px;
  color: var(--darkgrayColor);
}

.service-content-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grayColor);
  margin-bottom: 20px;
  text-align: justify;
}
.workflow-section {
  background: var(--whiteColor);
}
.section-subtitle {
  font-size:26px;
  color:var(--blackColor);
  font-weight:700;
  padding:15px 0;
  text-align: center;
  line-height:1.7;
}
.service-features {
  background: var(--formgrayColor);
}
.service-features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-feature-item {
  background: rgba(var(--redColor-rgb), 0.1);
  background:var(--whiteColor);
  padding: 20px;
  text-align: center;
  border-radius:2px;
  transition: 0.3s ease-in-out;
  position: relative;
}
.service-feature-item::after {
 content:"";
 position: absolute;
 height:20%;
 width:3px;
 left:0;
 bottom:0;
 background:var(--redColor);
 transition: 0.3s ease-in-out;
}
.service-feature-item::before {
  content:"";
  position: absolute;
  height:3px;
  width:20%;
  left:0;
  bottom:0;
  background:var(--redColor);
  transition: 0.3s ease-in-out;
}
.service-feature-item:hover::before {
  width:100%;
}
.service-feature-item:hover::after {
  height:100%;
}
.service-feature-item ion-icon {
  font-size: 30px;
  color: var(--redColor);
  margin-bottom: 10px;
}

.service-feature-item h3 {
  color:var(--darkgrayColor);
  font-size:19px;
  font-weight:500;
  padding:6px 0;
}
.service-feature-item p {
  color:var(--grayColor);
  font-size:16px;
  padding:6px 0;
}
/* Use Cases */
.service-use-cases .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-case-item {
  background: var(--whiteColor);
  padding: 24px;
  border-radius: 2px;
  text-align: center;
}

.service-case-item ion-icon {
  color:var(--redColor);
  font-size:26px;
}
.service-case-item h3 {
  color:var(--darkgrayColor);
  font-size:19px;
  font-weight:500;
  padding:6px 0;
}
.service-case-item p {
  color:var(--grayColor);
  font-size:16px;
  padding:6px 0;
}
.upgrade-process-section {
  background: var(--whiteColor);
}
  .step-container {
      max-width: 800px;
      margin: 0 auto;
      border-radius: 50px 0 50px 0;
      background:var(--formgrayColor);
      padding:30px;
  }
  .step {
      display: flex;
      gap: 26px;
      margin-bottom: 14px;
  }

  .step-number {
      font-size: 30px;
      font-weight: 800;
      color: var(--redColor);
  }
.step-content h3 {
  color:var(--blackColor);
  font-size:18px;
  font-weight:600;
  padding:5px 0;
  line-height: 1.7;
}
.step-content p {
  color:var(--darkgrayColor);
  font-size:16px;
  line-height:30px;
  font-weight:400;
  padding:5px 0;
}
.contact-section {
  text-align: center;
  padding: 3px 0;
  
}
.contact-section p {
  font-size: 17px;
  color: var(--darkgrayColor);
  line-height: 1.7;
}
@media screen and (max-width:500px) {
  .service-use-cases .grid {
      grid-template-columns: 1fr;
      gap: 10px;
  }
  .section-subtitle {
    font-size:20px;
    padding:10px 0;
  }
}
@media (max-width: 768px) {
 
  .details-hero-wrap {
    height:50vh;
  }
  .service-details-hero-wrap {
    height:34vh;
  }
  .service-detail-container {
      grid-template-columns: 1fr;
      gap: 20px;
  }
}
/* end of service page */

/* projects page */
.projects-hero-wrap,
.academy-hero-wrap  {
  position: relative; 
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment:fixed;
  background-position: top right;
  height: 60vh;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 50% 100%,0 94%);
}
.project-bg3, .academy-bg3 {
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center center;
   z-index: 5;
   position: relative;
   height:44vh;
}
.projects-headline-container {
  padding:20px;
  text-align: center;
}
.projects-headline-container .projects-headline {
  font-size:25px;
  color:var(--blackColor);
  font-weight:700;
  text-align: center;
  padding:10px;
}
.projects-container {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  padding:20px;
  gap:20px;
}
.project-overlay-button {
 background: none;
 color:var(--redColor);
 font-size:15px;
 border:2px solid var(--redColor);
  border-radius:50px;
 padding:10px 16px;
 transition: .4s ease-in-out;
}

.project-overlay-button:hover {
 background: var(--redColor);
 color:var(--whiteColor);
}
.project-category {
   color:var(--whiteColor);
   background: var(--blackColor);
   font-size:15px;
   padding:14px 20px;
   border-radius: 2px;
   cursor:pointer;
}
.project-category.selected {
   color:var(--whiteColor);
   background: var(--redColor);
   cursor:pointer;
}
.project-category:hover {
   color:var(--whiteColor);
   background: var(--redColor);
   transform: scale(1.07);
}
@media(min-width:768px) and (max-width:1024px) {
.projects-container {
   grid-template-columns:repeat(2, 1fr);
   padding:0px;
   gap:20px;
}
}

@media(max-width:768px) {
.projects-container {
   grid-template-columns: 1fr;
   padding:0px;
   gap:10px;
}
.project-bg3 {
   margin-left:0px;
   }
}
/* Projects Start */
.project-card {
  position: relative;
  min-height:350px;
  overflow: hidden;
  border-radius:1px;
}
.project-card img {
  position: absolute;
  width:100%;
  height:100%;
  object-fit: cover;
  transition: .4s ease-in-out;
}
.project-card::after {
  content: "";
  position: absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.4);
}

.project-card:hover img {
  transform: scale(1.1);
  cursor: pointer;
}
.project-card-body {
  position: relative;
  transition: .4s ease-in-out;
  padding:20px;
  z-index:2;
}
.project-card-body h3 {
  color:var(--redColor);
  background: rgba(0, 0, 0, 0.4);
  font-size: 20px;
  font-weight: 800;
  padding:10px;
  padding-bottom:20px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 55% 90%, 50% 100%, 45% 90%, 0% 90%);
}

.project-card-body p {
  color:var(--whiteColor);
  font-weight: 500;
  font-size: 15px;
  line-height:27px;
  padding-bottom:30px;
}

.project-overlay-button {
  background: var(--redColor);
  color:var(--whiteColor);
  font-size:15px;
  border:2px solid var(--redColor);
  border-radius:50px;
  padding:11px 16px;
  transition: .3s ease-in-out;
  }

.project-overlay-button:hover {
 opacity:0.8;
}

.view-more-projects-btn {
  display:flex;
  justify-content: center;
  align-items: center;
  margin-top:20px;
}
.view-more-projects-link {
  color:var(--redColor);
  font-size:18px;
}
/* Project details */
.project-details-hero-wrap {
	position: relative; 
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 50vh;
}

.project-details-intro-container {
	display:grid;
	grid-template-columns: 3fr 1fr;
	gap:30px;
}

.project-details-intro-text-container {
	padding:30px;
	align-items: center;
	background:var(--whiteColor);
}

.project-details-intro-text-container .project-details-welcome-heading {
	font-size:23px;
	line-height:30px;
	color:var(--blackColor);
	font-weight:600;
	padding-bottom:5px;
	margin-bottom:15px;
	border-bottom: 2px dotted var(--redColor);
}

.project_detail {
	font-size:15px;
	line-height:30px;
	color:var(--blackColor);
	font-weight:600;
	padding-bottom:20px;
}
.project_detail p {
	font-size:15px;
	line-height:30px;
	color:var(--blackColor);
	font-weight:600;
}
 .project_detail .project-detail-text {
	font-size:15px;
	color:var(--grayColor);
	font-weight:400;
	padding-bottom:20px;
}
.project-details-img-container {
	width:100%;
}
.project-details-img-container img {
	width:100%;
}

.contact-us-container {
	margin-top:-5px;
	background-color: var(--redColor);
	padding:25px;
	padding-top:20px;
}

.contact-us-container .head-text {
	font-size: 20px;
	font-weight: 700;
	color:var(--whiteColor);
	padding:10px 0;
}
.contact-us-container p {
	font-size: 15px;
	font-weight: 400;
	color:var(--blackColor);
	padding-bottom:20px;
	line-height: 25px;
}
.operation-schedule-container {
	margin:20px auto;
	padding:10px;
	font-size: 17px;
}

.operation-schedule-container .open-time-headline {
	padding:10px 0;
	font-size: 20px;
	color:var(--blackColor);
	font-weight: 600;
}

.operation-schedule-container p {
	padding:10px 0;
	font-size: 15px;
	color:var(--darkgrayColor);
	font-weight: 500;
}

.operation-schedule-container .operation-time-icon {
	padding-right:10px;
	font-size: 14px;
}

.site-statistics {
	margin:20px auto;
	padding:10px;
	font-size: 16px;
	color:var(--blackColor);
}

.site-statistics h3 {
	font-size:20px;
	color:var(--blackColor);
	font-weight:600;
	padding-bottom:15px;
}
.site-statistic-detail {
	color:var(--blackColor);
	font-weight:600;
	font-size:16px;
	line-height:30px;
}

.site-statistic-detail span {
	color:var(--darkgrayColor);
	font-weight:400;
	font-size:16px;
	margin-left:10px;
}

.detailed-project-item-list {
	line-height:30px;
	font-size:15px;
	font-weight:normal;
	color:var(--blackColor);
	margin-left: 30px;
}

.detailed-project-item-list li {
	list-style-type: disc;
}

.project-image-container {
	margin:30px auto;
	width:100%;
	height:80vh;
}
.project-image-container img {
	width:100%;
	height:100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.project-details-intro-container {
		grid-template-columns: 1fr;
		gap:5px;
	}
  .project-details-img-container {
    display: none;
  }
  .project-image-container {
    height:30vh;
  }
	.project-details-intro-text-container {
		padding:10px;
		align-items: center;
	}
	.project-details-intro-text-container .project_detail {
		font-size:15px;
		line-height:25px;
		padding-bottom:10px;
	}
}

/*Blogs list page styling */
.home-blog-section {
  background:var(--whiteColor);
}
.blogpage-hero-wrap {
  position: relative; 
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
  background-position: center center;
  }
.blogs-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.all_blogs_container {
  display: grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}
@media (max-width: 768px) {
  .all_blogs_container {
    grid-template-columns: 1fr;
  }
}
.post-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.post-card::after {
  content:"";
  position: absolute;
  background: var(--redColor);
  left:0;
  width:4px;
  top:0;
  height:0;
  transition: 0.3s ease-in-out;
  z-index:-1;
}
.post-card:hover::after {
  height:100%;
}
.post-card:hover .post-image-container .post-image {
  transform: scale(1.04);
}
.post-image-container {
  overflow: hidden;
  border-radius: 1px 1px 0 0;
  position: relative;
  height: 180px;
  width:100%;
}

.post-image-container .post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:0.3s linear;
}
.post-content {
  padding: 24px;
}

.post-tag {
  display: inline-block;
  padding:6px 10px;
  background: var(--formgrayColor);
  color: var(--redColor);
  border-radius: 2px;
  font-size: 13px;
  margin-bottom: 8px;
}

.post-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blackColor);
  padding:10px 0;
  line-height:30px;
  position: relative;
}
.post-title:hover {
  color: var(--blackColor);
}
.post-title::after {
  content: "";
  position: absolute;
  width: 10%;
  left:0;
  bottom:0;
  height: 1.8px;
  margin-bottom:10px;
  background: var(--redColor);
}
.post-title:hover::after {
  width:100%;
  transition: width 0.3s ease-in-out;
}
.post-excerpt {
  padding:10px 0;
  color: var(--grayColor);
  line-height: 1.6;
  text-align: justify;
}
.blog-post-tags {
  margin-top:14px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.post-meta {
  margin-top:15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #636e72;
  font-size: 14px;
}

.author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border:1px solid #ccc;
  background:#f3f3f3;
  padding:2px;
  object-fit: cover;
}
/* Admin controls */
.admin-controls {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 10px 5px;
  padding-top:8px;
  border-top: 1px solid rgba(0,0,0,0.1);
  position: relative;
  z-index:20;
}

.admin-controls .admin-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  border-radius: 4px;
  background: rgba(var(--greenColor-rgb), 0.1);
  transition: all 0.3s ease;
  border:1px dotted var(--greenColor);
}
.admin-controls .admin-link.project {
  background: var(--redColor);
  transition: all 0.3s ease;
}
.admin-controls .admin-link:hover {
  background: var(--redColor);
  color: white;
}

.admin-controls .admin-link:hover::after {
  display: none;
}
/*Blogs Sidebar */
.blogs-sidebar {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 70px;
  gap:20px;
  height: fit-content;
 
}
.sidebar-section {
  border-radius: 2px;
  padding: 24px;
  background:var(--formgrayColor);
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color:var(--darkgrayColor);
}

.section-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--redColor);
  border-radius: 50%;
}

.blogs-search-form {
  display: flex;
  flex-wrap: wrap;
  border:1.4px solid var(--redColor);
  border-radius: 2px;
}
.blogs-search-input {
  flex: 1;
  padding: 8px;
  font-size:14px;
  outline: none;
}
.search-button {
  padding: 8px;
  color: var(--redColor);
  background: var(--whiteColor);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.recent-post-item-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.related-blog-image {
  width: 60px;
  height: 60px;
  object-fit:contain;
}

.blogs_categories_list {
  max-height:200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.all_tags-list {
  display: flex;
  flex-wrap: wrap;
  gap:5px;
} 

.recent-post-item {
  text-decoration: none;
  padding-bottom:5px;
  color: var(--darkgrayColor);
  transition: color 0.1s ease;
  border-bottom: 1px solid rgba(204, 204, 204,0.5);
}
.recent-post-item span {
  margin-right:10px;
  font-size:25px;
  color: var(--redColor);
  transition: color 0.1s ease;
}
.recent-post-item:hover span {
  transform:translateX(-10px);
}
.recent-post-item:hover {
  color: var(--redColor);
}
.search_query_title {
  font-size:22px;
  font-weight:500;
  color:#232323;
  padding:10px 0;
}
.search_query_title>span {
  color:var(--redColor);
}
.search_results_count {
  font-size:17px;
  color:#232323;
  font-weight:400;
}
.search_results_count>span {
  color:#000000;
  font-weight:500;
}
.no_blogs_found {
  display:flex; 
  justify-content: center; 
  align-items: center; 
  min-height:50vh;
}
.no_blogs_found .no_blogs_text {
  color:#2d3436;
  font-size:18px;
}

@media (max-width: 768px) {
  .blogs-container {
    grid-template-columns: 1fr;
    padding-bottom:20px;
  }

  .post-image-container {
    height: 200px;
  }
  .post-content {
    padding: 10px;
  }
  
  .post-image-container .post-image {
   object-fit: cover;
  }
}


/*Blog detail page */
.blog-detail-section {
  background:var(--whiteColor);
}
.blog_details_grid {
  display:grid;
  grid-template-columns: 4fr 2fr;
  gap:20px;
  align-items: start;
  justify-content:center;
}
.blog-detail {
  line-height: 30px;
  color:#333;
}
.blog-detail .blog_detail_title {
  color: var(--blackColor);
  font-size: 23px;
  padding: 15px 0;
  font-weight:600;
  line-height: 30px;
  position: relative;
  transition:all 0.4s linear;
}
.blog-detail .blog_detail_title::after {
  position: absolute;
  content: "";
  height: 2px;
  width:30%;
  left:0;
  bottom: 0;
  background-color: var(--redColor);
  border-radius: 2px;
  transition:all 0.4s linear;
}
.blog-detail .blog_detail_title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--redColor);
  border-radius: 50%;
  left:0;
  top:50%;
  margin-right:6px;
  transform: translateY(-50%);
}
.blog-detail .blog_detail_title:hover::after{
  width:100%;
}
.post-meta .dot {
  color: var(--redColor);
  font-size: 16px;
}

.blog-cover-image-container {
  display:flex;
  justify-content:center;
  align-items: center;
  width: 100%;
  height: 400px;
  padding:10px 0;
}
.blog-cover-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:5px;
}

.blog-content img {
 width:100%;
 height:auto;
 object-fit: cover;
}
  .comments_container h4 {
    text-align: left;
    font-size:20px;
    font-weight:500;
    color:#000000;
    padding:15px 0;
  }
  .comments_container .blog-comment {
    display:flex;
    flex-direction: column;
    gap:4px;
    color:#000000;
    padding-bottom:8px;
    border-bottom:1px solid #f3f3f3;
  }
  .comments_container .no-blog-comments-container {
    display:flex;
    justify-content: center;
    align-items: center;
    color:#313030;
  }
  .blog_comment_form .form-group {
    display:flex;
    gap:10px;
    }
  .blog_comment_form input {
    width:100%;
    border:1px solid #ccc;
    padding:12px;
    color:var(--darkgrayColor);
    font-size:16px;
    margin:10px 0;
    border-radius:1px;
  }
  .blog_comment_form textarea {
    width:100%;
    border-radius:1px;
    border:1px solid #ccc;
    padding:12px;
    color:var(--darkgrayColor);
    font-size:16px;
    margin:10px 0;
    resize: vertical;
    height:120px;
  }
  .blog_comment_form input::placeholder,
  .blog_comment_form textarea::placeholder {
    color:#2d3436;
  }
  .blog_comment_form input:focus,
  .blog_comment_form textarea:focus {
    border:1px solid var(--redColor);
  }
  .blog_comment_form .blog_comment_btn {
    width:30%;
    border:2px solid transparent;
    background:var(--redColor);
    color:#ffffff;
    padding:14px 20px;
    font-size:15px;
    border-radius:1px;
    animation: redpulsing 2s infinite;
  }
  .blog_comment_form .blog_comment_btn:hover {
    border:2px solid var(--redColor);
    background:#ffffff;
    color:var(--redColor);
    cursor: pointer;
  }
@media (max-width:600px) {
  .blog_comment_form .blog_comment_btn {
    width:100%;
  }
}
@media (max-width:430px) {
  .blog-cover-image-container {
    margin-top:20px;
    height: 200px;
    padding:0;
  }
  .blog-cover-image-container img {
   border-radius:2px;
  }
}
@media screen and (max-width:768px) {
  .blog_details_grid {
    grid-template-columns: 1fr;
}
}
/* Blog post container styles */
.blog-content {
  margin:10px auto;
  line-height:30px;
  padding:20px 0;
}

/* Headings */
.blog-content h1 {
  color: #003C7E;
  font-size: 28px;
  margin: 22px 0;
  font-weight: 600;
  line-height: 30px;
}
.blog-content h1:hover {
  color: var(--redColor);
}
.blog-content h2 {
  font-size: 24px;
  color: var(--redColor);
  margin: 22px 0;
  font-weight: 400;
}

.blog-content h3 {
  font-size: 1.65rem;
  color: #000000;
  margin: 1.5rem 0 1rem;
  font-weight: 500;
}

.blog-content h4 {
  font-size: 1.5rem;
  color: #4a4a4a;
  margin: 1.5rem 0 1rem;
  font-weight: 400;
}

/* Paragraphs */
.blog-content p {
  margin: 1.2rem 0;
  color: #444;
  line-height: 1.8;
}

/* Links */
.blog-content a {
  color: var(--redColor);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.blog-content a:hover {
  border-bottom-color: var(--redColor);
}

/* Lists */
.blog-content ul,
.blog-content ol {
  margin:16px 0;
  padding-left: 24px;
}

.blog-content li {
  list-style-type: disc;
  margin: 6px 0;
  color: #444;
}

/* Images */
.blog-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Blockquotes */
.blog-content blockquote {
  padding: 1rem 2rem;
  border-left: 4px solid var(--redColor);
  background: #f8f9fa;
  font-style: italic;
  color: #555;
}
.blog-content blockquote>p {
  background: #f8f9fa;
}

/* Code blocks */
.blog-content pre {
  background: #f6f8fa;
  background:#2d1052;
  padding: 1rem;
  border-radius: 4px;
  max-width: 100%;
  width:100%;
  font-size: 16px;
  white-space: pre-wrap; /* Allows wrapping of text inside <pre> */
  word-wrap: break-word; /* Break long words if needed */
  overflow-x: scroll;
  margin: 1.5rem auto;
  box-sizing: border-box;
}
.blog-content code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
  font-weight:700;
  color:white;
  color: #ffcc00;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  overflow-x: auto;
}

/* Tables */
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.blog-content th,
.blog-content td {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  text-align: left;
}

.blog-content th {
  background: #f8f9fa;
  font-weight: 600;
}

/* Figure and captions */
.blog-content figure {
  margin: 2rem 0;
}

.blog-content figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Horizontal rule */
.blog-content hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid #dee2e6;
}

/* Custom classes for alignment */
.blog-content .text-left {
  text-align: left;
}

.blog-content .text-center {
  text-align: center;
}

.blog-content .text-right {
  text-align: right;
}

/* Meta information styling */
.post-meta {
  margin-top:15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #636e72;
  font-size: 14px;
}

.author-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.detailed_blog_tags .post-tag {
  display: inline-block;
  padding: 1px 20px;
  background: #f3f3f3;
  color: var(--redColor);
  border-radius: 2px;
  font-size: 13px;
  margin-bottom: 16px;
}


/* Responsive design */
@media (max-width: 768px) {
  .blog-content {
      padding: 20px 0;
  }

  .blog-content h1 {
      font-size: 2rem;
  }

  .blog-content h2 {
      font-size: 1.75rem;
  }

  .blog-content h3 {
      font-size: 1.5rem;
  }

  .blog-content h4 {
      font-size: 1.25rem;
  }

  .blog-content img {
      margin: 1.5rem auto;
  }

  .post-meta {
      flex-wrap: wrap;
      gap: 0.5rem;
  }
  .blog-content pre {
      padding: 0.5rem;
      max-width: 100%;
      font-size: 13px;
      overflow-x: scroll;
      margin: 1.5rem auto;
  }
}

/*---Contact Page */ 
.contact-hero-wrap {
  height:50vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index:10;
}
/* Contact Info Cards */
.contact-cards {
  max-width: 1200px;
  padding:20px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background:var(--whiteColor);
}

.contact-card {
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 20;
  border-right: 1.2px dotted var(--redColor);
}
.contact-card:last-child {
  border-right: none;
}
.contact-card ion-icon {
  font-size: 32px;
  color: var(--redColor);
  margin-bottom: 16px;
}

.contact-card h3 {
  color: var(--blackColor);
  margin-bottom: 10px;
  font-size:18px;
  font-weight:600;
}

.contact-card p, .contact-card a {
  color: var(--darkgrayColor);
  text-decoration: none;
  line-height: 1.5;
}
.contact-card a:hover {
  color: var(--redColor);
}

.contact-form-map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  background:var(--whiteColor);
  border-bottom:1px solid #ccc;
  margin-bottom:40px;
}

/*---Contact Form */ 
.contact-form-spad {
  padding:20px;
  border-right: 1.4px dotted var(--redColor);
}

.contact__form__title h2 {
margin-bottom:10px;
  padding-left:10px;
  font-size:25px;
  font-weight:700;
  color:var(--redColor);
}
.contact__form__title p {
margin-bottom:10px;
  padding-left:10px;
  font-size:17px;
  line-height:30px;
  color:var(--grayColor);
}
.contact-form {
  max-width:700px;
  margin:0 auto;
  padding:10px;
}

.contact-form input, .contact-form select {
  width: 100%;
  font-size: 15px;
  color: var(--grayColor);
  padding: 12px;
  margin-bottom:20px;
  border: 1px solid #ddd;
  border-radius: 1px;
  }
.contact-form select:focus {
  border: 1px solid var(--redColor);
  cursor: pointer;
}
.contact-form input::placeholder {
color: var(--grayColor);
}

.contact-form textarea {
width: 100%;
height:140px;
font-size: 15px;
color: var(--darkgrayColor);
padding-left: 20px;
margin-bottom: 24px;
border: 1px solid #ddd;
border-radius: 1px;
padding-top:12px;
resize: vertical;
}

.contact-form input:focus, 
.contact-form textarea:focus {
border: 1px solid var(--redColor);
}
.contact-form form textarea::placeholder {
color: var(--grayColor);
  font-size:14px;
}

#message-button {
  width:100%;
  padding:14px 14px;
  color:var(--whiteColor);
  border-radius:50px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  background:var(--redColor);
  animation: redpulsing 2s infinite;
}

#message-button:hover {
  opacity:0.8;
}
.map {
  border: 2px solid #ccc;
}
.map iframe {
  width: 100%;
  height:500px;
}
@media (max-width: 768px) {
  .contact-form-map-container {
      grid-template-columns: 1fr;
  }
  .contact-details-grid {
      flex-direction: column;
      align-items: center;
  }
  .contact-form-spad {
  padding:8px;
  border-right: none;
}
}
@media (max-width: 400px) {
  .contact-cards {
      grid-template-columns: 1fr;
      padding:10px;
  }
  .map iframe {
    height:40vh;
  }
  .contact-card {
      padding: 12px;
      border-right: none;
      border-bottom: 1.2px dotted var(--redColor);
  }
}

@media screen and (max-width:400px) {
  .blog-details-hero-wrap,
  .about-hero-wrap,
  .contact-hero-wrap,
  .blog-hero-wrap,
  .services-hero-wrap,
  .blogpage-hero-wrap,
  .projects-hero-wrap,
  .academy-hero-wrap {
    height:30vh;
  }
}

/* Academy page */
.training-container {
  max-width: 1300px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.training-card {
  position: relative;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom:20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.training-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-content {
  padding:16px;
}

.card-title {
  font-size: 21px;
  color: var(--blackColor);
  margin-bottom: 8px;
  font-weight: 600;
}

.card-description {
  color: var(--grayColor);
  line-height: 30px;
  font-size: 16px;
  text-align: justify;
}

.training-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  height: 6px;
  width:50%;
  background: linear-gradient(to right, #c5aa31, #8e7b00);
  transition: all 0.3s ease;
}

.training-card:hover::before {
  width:100%;
}
.training-intro-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0px;
  margin-bottom:60px;
  background: var(--whiteColor);
}
.training-intro-col1 {
  height:90%;
  width:90%;
  position: relative;
  overflow: hidden;
}
.training-intro-col1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%,0 100%);
}
.training-intro-col1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%,0 100%);
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}
@media screen and (max-width:768px) {
.training-intro-container {
  grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
  .training-container {
    padding: 0px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card-content {
    padding: 15px;
  }
  .training-card::before {
    width:100%;
  }
  
}
/* Academy page end */

/* Contact Form Modal */ 
.modal-overlay { 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(0, 0, 0, 0.5); 
  z-index: 7000; 
  opacity: 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  pointer-events: none; 
  transition: all 0.5s ease-in-out; /* Smoothed transition */
  visibility: hidden; 
} 

.modal-overlay.active { 
  transform: translateX(0);
  opacity: 1; 
  pointer-events: auto; 
  visibility: visible;
} 

.modal { 
  position: relative;
  opacity: 0;
  transform: translateX(-100%);
  padding: 2rem; 
  border-radius: 1px; 
  width: 98%; 
  max-width: 600px; 
  max-height: 97%; 
  overflow-y: auto; 
  background-size: cover; 
  background-position: center; 
  background-repeat: repeat;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 7001;
} 

.modal-overlay.active .modal {
  opacity: 1;
  transform: translateX(0);
}

.modal-close {
  position: absolute;
  right: 15px;
  top: 2px;
  font-size:24px;
  cursor: pointer;
  background:transparent;
}

.modalForm .contact-form-grid {
  display: grid;
  gap: 14px;
  margin: 8px 0;
}

.modalForm .contact-form-grid .full-width {
  grid-column: 1 / -1;
}
.modalForm h2 {
font-weight: 700;
color:var(--redColor);
font-size: 24px;
}
.modalForm .contact-form-grid input, 
.modalForm .contact-form-grid textarea, 
.modalForm .contact-form-grid select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 16px;
}
.modalForm .contact-form-grid input:focus, 
.modalForm .contact-form-grid textarea:focus, 
.modalForm .contact-form-grid select:focus {
  border-color: var(--redColor);
}
.modalForm .contact-form-grid textarea {
  height: 100px;
  resize: vertical;
}
.orange_button.book-button {
  cursor: pointer;
  font-size: 16px;
} 

#openModalBtn {
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 25px; 
  background: var(--redColor);
  color: var(--whiteColor);
  white-space: wrap;
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
}

/* Side Menu */
.side-menu-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width:100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 8000;
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.5s ease;
}

.side-menu-popup {
  position: relative;
  background: white;
  padding: 2rem;
  max-width: 500px;
  max-height: 100%;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.8s ease-out;
}

/* Rest of your existing popup styles */
.sidemenu-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 28px;
  background: none;
  cursor: pointer;
  border: none;
  padding: 0.5rem;
}

.side-menu-popup img {
  max-width: 180px;
  margin-bottom: 1rem;
}

.side-menu-popup h2 {
  margin-bottom: 18px;
  color: var(--blackColor);
}

.side-menu-contacts {
  margin-top: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-icons ion-icon,
.social-icons i {
  font-size:17px;
  padding:4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  text-decoration: none;
}

.linkedin { background: #0077b5; }
.facebook { background: #3b5998; }
.tiktok { background: #000; }
.twitter { background: #000000; }

/* Show popup when active */
.side-menu-popup-overlay.active {
  transform: translateX(0);
  pointer-events: auto;
}
.side-menu-popup-overlay.active .side-menu-popup {
  transform: translateX(0);
}


/* Individual Services Styling */
 /* Automated Biometric Time And Attendance */
 .service-feature-item {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(var(--redColor-rgb), 0.1);
}
.service-feature-item:hover {
  transform: translateY(-5px);
}
.progress-indicator {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(var(--redColor-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
  text-align: center;
}
.stat-item {
  padding: 20px;
  background: var(--formgrayColor);
  border-radius: 2px;
}
.stat-number {
  font-size: 24px;
  color: var(--redColor);
  font-weight:600;
  margin-bottom: 10px;
}
.stat-label {
  color: var(--darkgrayColor);
  font-size: 16px;
}

/* Business Intelligence */
 .service-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.data-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px 0;
}
.metric-item {
  text-align: center;
  padding: 20px;
  background: var(--whiteColor);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.metric-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--redColor);
}
.metric-number {
  font-size: 23px;
  font-weight: 600;
  color: var(--redColor);
  margin-bottom: 10px;
}
.metric-label {
  color: var(--darkgrayColor);
  font-size: 16px;
  font-weight: 500;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.tool-item {
  background: var(--whiteColor);
  padding: 20px;
  border-radius: 2px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}
.tool-item h3 {
  font-size:18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--blackColor);
}
.tool-item:hover {
  border-color: var(--redColor);
}
.tool-icon {
  width: 50px;
  margin-bottom: 15px;
}
.tool-icon.ssis {
  width: 130px;
}
/* Customer Relationship Management */
.crm-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px 0;
}
.stat-card {
  background: var(--whiteColor);
  padding: 25px;
  text-align: center;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 3px;
  background: var(--redColor);
  transition: width 0.3s ease;
}
.stat-card:hover::after {
  width: 80%;
}
.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--redColor);
  margin-bottom: 8px;
}
.stat-text {
  color: var(--darkgrayColor);
  font-size: 16px;
}
.feature-comparison {
  margin: 20px 0;
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.comparison-table td ion-icon {
font-size:24px;
}
.comparison-table th {
  background: var(--formgrayColor);
  color: var(--darkgrayColor);
  font-weight: 600;
}
.comparison-table tr:hover {
  background: #f8f9fa;
}
.check-icon {
  color: var(--redColor);
}

/* Electronic Document Management */
 /* Enhanced styling */
 .feature-workflow {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 0;
}
.feature-workflow::-webkit-scrollbar {
  display: none;
}
.feature-workflow::-webkit-scrollbar-thumb {
  background: var(--redColor);
}
.workflow-step {
  min-width: 250px;
  background: var(--whiteColor);
  padding: 25px;
  border-radius: 2px;
  box-shadow: 0 6px 6px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid var(--redColor);
}
.workflow-step  h3 {
  font-size: 20px;
  margin: 5px 0;
  font-weight: 600;
  color:var(--blackColor);
}
.workflow-step p {
  font-size: 16px;
  color: var(--darkgrayColor);
}
.workflow-step ion-icon {
  font-size: 24px;
  color: var(--redColor);
}
.workflow-step::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--redColor);
}
.workflow-step:last-child::after {
  display: none;
}
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.stat-box {
  background: var(--formgrayColor);
  padding:20px 30px;
  text-align: center;
  border-radius: 2px;
}
.service-stat-number {
  font-size: 24px;
  color: var(--redColor);
  font-weight: 600;
  margin-bottom: 5px;
}
.service-detail-benefit-card {
  background: var(--whiteColor);
  padding: 25px;
  margin: 15px 0;
  border-radius: 2px;
  box-shadow: 0 4px 6px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}
.service-detail-benefit-card h3 {
  font-size: 20px;
  margin: 10px 0;
  font-weight: 600;
  color: var(--redColor);
}
.service-detail-benefit-card p {
  font-size: 16px;
  color: var(--darkgrayColor);
}
.service-detail-benefit-card:hover {
  transform: translateY(-5px);
}
.security-features {
  background: var(--whiteColor);
  padding: 25px;
}

/* Microsoft Dynamics nav upgrade */
.version-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 20px 0;
}
.version-card {
  background: var(--whiteColor);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}
.version-card:hover {
  transform: translateY(-5px);
}
.version-card h3 {
  color: var(--blackColor);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--redColor);
}
.version-card ul {
  list-style-type: none;
  padding: 0;
}
.version-card ul li {
  padding: 8px 0;
  margin: 8px 0;
  padding-left: 30px;
  position: relative;
  color: var(--darkgrayColor);
}
.version-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--redColor);
  color: orange;

}
.upgrade-benefits {
  background: var(--formgrayColor);
  margin-bottom:20px;
}
.timeline-container {
  position: relative;
  padding: 40px 0;
}
.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--redColor);
  opacity: 0.2;
}
.timeline-item {
  padding: 25px;
  margin: 30px 0;
  background: var(--whiteColor);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
}
.timeline-item:hover {
  transform: translateX(10px);
}
.timeline-item h3 {
  color: var(--redColor);
  margin-bottom: 10px;
  font-size: 20px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--redColor);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(36, 36, 36, 0.2);
}
.service-feature-item {
  border: none;
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.service-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.service-feature-item ion-icon {
  font-size: 40px;
  color: var(--redColor);
  margin-bottom: 15px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}
.metric-card {
  background: white;
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.metric-value {
  font-size: 23px;
  font-weight: 600;
  color: var(--redColor);
  margin-bottom: 10px;
}
.metric-label {
  color: var(--darkgrayColor);
  font-size: 16px;
}

/* Microsoft Dynamics 365 Business Central Implementation */
 /* Enhanced styling */
 .module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.module-card {
  background: var(--whiteColor);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-height: fit-content;
}

.module-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.module-icon {
  width: 50px;
  height: 50px;
  background: rgba(var(--redColor-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-icon ion-icon {
  color: var(--redColor);
  font-size: 24px;
}

.module-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  flex-grow: 1;
}

.module-card > p {
  color: var(--darkgrayColor);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.expand-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.expand-btn ion-icon {
  font-size: 24px;
  color: var(--darkgrayColor);
}

.expand-btn.active {
  transform: rotate(180deg);
}

.submodules-container {
  display: none;
  grid-gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.submodules-container.active {
  display: grid;
}

.submodule {
  background: rgba(var(--redColor-rgb), 0.05);
  padding: 15px;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.submodule:hover {
  transform: translateX(5px);
}

.submodule h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--redColor);
}

.submodule p {
  font-size: 14px;
  margin: 0;
  color: var(--darkgrayColor);
}

@media (max-width: 768px) {
  .module-grid {
      grid-template-columns: 1fr;
  }
}
.implementation-phases-grid {
 max-width:800px;
 width:100%;
 margin: 0 auto;
}
.implementation-phases {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
}
.phase-card {
  background: var(--whiteColor);
  padding: 25px;
  margin: 15px 0;
  border-radius: 2px;
  position: relative;
  padding-left: 50px;
}
.phase-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.phase-card p {
  color: var(--darkgrayColor);
  font-size: 16px;
  line-height: 1.6;
}
.phase-number {
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(var(--redColor-rgb), 0.9);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.success-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
  text-align: center;
}
.metric-item {
  padding: 20px;
  background: var(--formgrayColor);
  border-radius: 2px;
}
.metric-value {
  font-size: 24px;
  color: var(--redColor);
  font-weight: 600;
  margin-bottom: 10px;
}

/* ERP Implementation */
.erp-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.erp-image-section img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%,0 100%);
  transition: transform 0.5s ease;
}

.erp-content-section p {
  margin-bottom: 16px;
  font-size:17px;
  line-height: 1.8;
  color: var(--grayColor);
}
.erp-benefits {
  background-color: var(--formgrayColor);
}

.erp-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.erp-feature-item {
  text-align: center;
  padding: 20px;
  background: var(--whiteColor);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
}

.erp-feature-item:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid var(--redColor);
}

.erp-feature-item ion-icon {
  font-size: 40px;
  color: var(--redColor);
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}

.erp-feature-item:hover ion-icon {
  transform: scale(1.2);
}

.erp-feature-item h3 {
  color: var(--blackColor);
  font-size: 19px;
  font-weight: 600;
  margin-bottom:8px;
}

.erp-feature-item p {
  color: var(--grayColor);
  font-size: 15px;
  line-height: 1.5;
}

.erp-process-section {
  padding: 20px 0;
  background-color: var(--whiteColor);
}

.erp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.erp-process-card {
  background: var(--whiteColor);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid var(--redColor);
}

.erp-process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(var(--redColor-rgb), 0.1);
}

.erp-process-card h3 {
  color: var(--blackColor);
  font-size: 20px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.erp-process-card h3:before {
  content: attr(data-number);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--redColor);
  color: var(--whiteColor);
  border-radius: 50%;
  margin-right: 15px;
  font-size: 1.2rem;
  font-weight: 700;
}

.erp-process-card ul {
  list-style: none;
  padding: 0;
}

.erp-process-card ul li {
  margin-bottom: 0.8rem;
  color: var(--grayColor);
  position: relative;
  padding-left: 1.5rem;
}

.erp-process-card ul li:before {
  content: "→";
  color: var(--redColor);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.erp-faq-section {
  background: var(--formgrayColor);
}

.erp-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.erp-faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--redColor-rgb), 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.erp-faq-question {
  padding: 1.5rem;
  background-color: var(--whiteColor);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--blackColor);
}

.erp-faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--grayColor);
}

.erp-faq-item.active .erp-faq-answer {
  padding: 1.5rem;
  max-height: 500px;
  border-top: 1px solid rgba(var(--redColor-rgb), 0.2);
}

@media (max-width: 1200px) {
  .erp-feature-grid,
  .erp-process-grid,
  .erp-industries-erp-industries-industry-cards {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .erp-detail-container {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .erp-feature-grid,
  .erp-process-grid,
  .erp-industries-erp-industries-industry-cards {
      grid-template-columns: 1fr;
  }
}

/* Erp Support */
.erp-support-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.erp-support-image-section {
 width:100%;
 height: 80%;
 display: flex;
 justify-content: center;
 border-radius:25px;
}
.erp-support-image-section img {
  width: 100%;
  height: 100%;
  border-radius:25px;
  transition: transform 0.5s ease;
}
.erp-support-image-section img:hover {
  transform: scale(1.02);
}

.erp-support-content-section p {
  color: var(--grayColor);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Support Services Section */
.erp-support-services {
  background-color: var(--formgrayColor);
}

.erp-support-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding:20px 0;
}

.erp-support-feature-item {
  text-align: center;
  padding: 20px;
  background: var(--whiteColor);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border-top: 4px solid var(--redColor);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.erp-support-feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(var(--redColor-rgb), 0.2);
}

.erp-support-feature-item ion-icon {
  font-size: 40px;
  color: var(--redColor);
  margin-bottom: 1.5rem;
}

.erp-support-feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom:10px;
  color: var(--darkgrayColor);
}

.erp-support-feature-item p {
  color: var(--grayColor);
  font-size: 16px;
  line-height: 1.6;
}

/* Support Levels */
.erp-support-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 20px 0;
  justify-content: center;
}

.erp-support-level-card {
  background: var(--whiteColor);
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.erp-support-level-card :hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(var(--redColor-rgb), 0.2);
}
.erp-support-level-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--darkgrayColor);
  margin-bottom: 1rem;
}
.erp-support-level-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--redColor);
}
.erp-support-level-card ul {
 padding-top: 12px;
}

.erp-support-level-card ul li {
  margin-bottom: 0.8rem;
  color: var(--grayColor);
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.05rem;
}

.erp-support-level-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--redColor);
  font-weight: bold;
}

/* Benefits Section */
.erp-support-benefits-section {
  background-color: var(--whiteColor);
}

.erp-support-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding:20px 0;
}

.erp-support-benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom:20px;
  padding: 20px;
  background: var(--formgrayColor);
  border-radius: 15px;
  
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.erp-support-benefit-icon {
  font-size: 40px;
  color: var(--redColor);
  margin-right:14px;
  flex-shrink: 0;
}

.erp-support-benefit-content h4 {
  color: var(--darkgrayColor);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}

.erp-support-benefit-content p {
  color: var(--grayColor);
  font-size: 16px;
  line-height: 1.6;
}

/* FAQ Section */
.erp-support-faq-section {
  background: var(--formgrayColor);
}

.erp-support-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.erp-support-faq-item {
  background: var(--whiteColor);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(var(--grayColor-rgb), 0.2);
  padding: 16px 14px;
}

.erp-support-faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--darkgrayColor);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.erp-support-faq-question ion-icon {
  font-size: 1.3rem;
  color: var(--redColor);
  transition: transform 0.3s ease;
}

.erp-support-faq-question.active ion-icon {
  transform: rotate(180deg);
}

.erp-support-faq-answer {
  color: var(--grayColor);
  font-size: 1rem;
  line-height: 1.6;
  display: none;
  padding: 8px 14px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(var(--redColor-rgb), 0.1), rgba(var(--redColor-rgb), 0.1)), var(--whiteColor);
}

.erp-support-faq-answer.show {
  display: block;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .erp-support-feature-grid,
  .erp-support-metrics-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .erp-support-benefits-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .erp-support-levels-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .erp-support-contact-info {
      flex-direction: column;
      gap: 1.5rem;
  }
  
}

@media (max-width: 768px) {
  .erp-support-detail-container {
      grid-template-columns: 1fr;
      gap: 3rem;
  }
  
  .erp-support-feature-grid,
  .erp-support-levels-grid,
  .erp-support-metrics-grid {
      grid-template-columns: 1fr;
  }
}

/* Data Analysis */
.data-analysis-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 50px;
  padding:20px 0;
}
.data-analysis-image-section  {
  height: 80%;
  width: 100%;
  background: var(--whiteColor);
}
.data-analysis-image-section img {
  width:100%;
  height: 100%;
  clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%,0 100%);
  transition: transform 0.5s ease;
}

.data-analysis-image-section img:hover {
  transform: scale(1.02);
}
.data-analysis-content-section p {
  font-size: 16px;
  margin-bottom: 1.5rem;
  color: var(--grayColor);
  line-height:30px;
}
.data-analysis-services {
  background-color: var(--formgrayColor);
}

.data-analysis-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding:20px 0;
}

.data-analysis-feature-item {
  text-align: center;
  padding: 20px;
  background: var(--whiteColor);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(var(--blackColor-rgb), 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.data-analysis-feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--redColor), var(--darkgrayColor));
}

.data-analysis-feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(var(--blackColor-rgb), 0.1);
}

.data-analysis-feature-item ion-icon {
  font-size: 3rem;
  color: var(--redColor);
  margin-bottom: 1.2rem;
}

.data-analysis-feature-item h3 {
  color: var(--blackColor);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.data-analysis-feature-item p {
  color: var(--grayColor);
  font-size: 16px;
}

.data-analysis-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 30px 0;

}

.data-analysis-process-card {
  background: var(--whiteColor);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(var(--blackColor-rgb), 0.05);
  border-left: 4px solid var(--redColor);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.data-analysis-process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(var(--blackColor-rgb), 0.1);
}

.data-analysis-process-card::before {
  content: attr(data-number);
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: var(--redColor);
  color: var(--whiteColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.data-analysis-process-card h3 {
  color: var(--blackColor);
  font-size: 20px;
  font-weight: 600;
  margin-bottom:10px;
}

.data-analysis-process-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.data-analysis-process-card ul li {
  margin-bottom: 0.8rem;
  color: var(--grayColor);
  position: relative;
  padding-left: 1.8rem;
  font-size: 1rem;
}

.data-analysis-process-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--redColor);
  font-weight: 700;
}

.data-analysis-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 20px 0;
}

.data-analysis-tool-item {
  text-align: center;
  padding: 20px;
  background: var(--whiteColor);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(var(--blackColor-rgb), 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid transparent;
}

.data-analysis-tool-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(var(--blackColor-rgb), 0.1);
  border-bottom: 4px solid var(--redColor);
}

.erp-support-tool-icon {
  width: 72px;
  height: 72px;
  margin-bottom:16px;
  transition: transform 0.3s ease;
}

.data-analysis-tool-item:hover .erp-support-tool-icon {
  transform: scale(1.15);
}

.data-analysis-tool-item h3 {
  color: var(--blackColor);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.data-analysis-tool-item p {
  color: var(--grayColor);
}

.section-subtitle-heading {
  font-size: 1.2rem;
  color: var(--redColor);
  text-align: center;
  margin:10px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.data-analysis-benefits {
  padding: 20px 0;
  background-color: var(--whiteColor);
}

.data-analysis-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding:20px 0;
}

.data-analysis-benefit-item {
  background: var(--formgrayColor);
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.data-analysis-benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(var(--blackColor-rgb), 0.1);
  background: var(--whiteColor);
}

.data-analysis-benefit-icon {
  font-size: 2.5rem;
  color: var(--redColor);
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(var(--redColor-rgb), 0.1);
  padding: 1rem;
  border-radius: 50%;
}

.data-analysis-benefit-item h3 {
  color: var(--blackColor);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.data-analysis-benefit-item p {
  color: var(--grayColor);
  margin-bottom: 1.5rem;
}

.data-analysis-faq-section {
  padding: 20px 0;
  background:var(--formgrayColor);
}

.data-analysis-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.data-analysis-faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--blackColor-rgb), 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.data-analysis-faq-question {
  padding: 1.5rem;
  background: var(--whiteColor);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.data-analysis-faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--blackColor);
}

.data-analysis-faq-question-icon {
  color: var(--redColor);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.data-analysis-faq-question.active .data-analysis-faq-question-icon {
  transform: rotate(180deg);
}

.data-analysis-faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.data-analysis-faq-answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

@media (max-width: 1200px) {
  .data-analysis-feature-grid,
  .data-analysis-process-grid,
  .data-analysis-tools-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .data-analysis-benefits-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .data-analysis-detail-container {
      grid-template-columns: 1fr;
      gap:20px;
  }
  
  .data-analysis-feature-grid,
  .data-analysis-process-grid,
  .data-analysis-tools-grid,
  .data-analysis-benefits-grid {
      grid-template-columns: 1fr;
  }
  .data-analysis-feature-item ion-icon {
      font-size: 2rem;
      margin-bottom:10px;
  }
  .erp-support-tool-icon {
      width: 40px;
      height: 40px;
      margin-bottom:10px;
  }
}

/* Firewall Installation and Security */
.firewall-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding:20px 0;
}
.firewall-image-section {
  width: 100%;
  height:80%;
  border-radius:25px;
}
.firewall-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  border: 5px solid var(--whiteColor);
}
.firewall-content-section p {
  margin-bottom: 10px;
  color: var(--grayColor);
  font-size: 16px;
  line-height: 30px;
}
.firewall-services {
  background: var(--formgrayColor);
}
.firewall-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding:20px 0;
}

.firewall-feature-item {
  text-align: center;
  padding:20px;
  background: var(--whiteColor);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(var(--blackColor-rgb), 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.firewall-feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--redColor-rgb), 0.05) 0%, rgba(var(--redColor-rgb), 0.2) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.firewall-feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(var(--redColor-rgb), 0.2);
}

.firewall-feature-item:hover::before {
  opacity: 1;
}

.firewall-feature-item ion-icon {
  font-size: 40px;
  color: var(--redColor);
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.firewall-feature-item:hover ion-icon {
  transform: scale(1.2);
}

.firewall-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding:20px 0;
}

.firewall-process-card {
  background: var(--whiteColor);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(var(--blackColor-rgb), 0.05);
  border-bottom: 3px solid var(--redColor);
  transition: transform 0.3s ease;
}

.firewall-process-card:hover {
  transform: translateY(-5px);
}

.firewall-process-card h3 {
  color: var(--redColor);
  font-size: 1.5rem;
  margin-bottom:10px;
}
.firewall-process-card p {
  color: var(--grayColor);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.firewall-process-card ul {
  list-style: none;
  padding: 0;
}

.firewall-process-card ul li {
  margin-bottom: 0.8rem;
  color: var(--grayColor);
  position: relative;
  padding-left: 1.5rem;
}

.firewall-process-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--redColor);
  font-size: 1.2rem;
}

.firewall-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
 padding:20px 0;
}

.firewall-feature-card {
  background: var(--whiteColor);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(var(--blackColor-rgb), 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.firewall-feature-card::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
  background: var(--redColor);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.firewall-feature-card:hover {
  transform: translateY(-5px);
}

.firewall-feature-card:hover::after {
  transform: scaleX(1);
}

.firewall-feature-card h3 {
  color: var(--darkgrayColor);
  font-size: 1.5rem;
  margin-bottom: 12px;
  border-bottom: 1px dashed #eee;
}

.firewall-feature-card ul {
  list-style: none;
  padding: 0;
}

.firewall-feature-card ul li {
  margin-bottom: 0.5rem;
  color: var(--grayColor);
  position: relative;
  padding-left: 1.5rem;
}

.firewall-feature-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--redColor);
}

.firewall-benefits-section {
  background: var(--formgrayColor);
  padding:20px 0;
}

.firewall-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.firewall-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--whiteColor);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(var(--blackColor-rgb), 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.firewall-benefit-icon {
  color: var(--redColor);
  font-size: 60px;
}

.firewall-benefit-content h3 {
  color: var(--darkgrayColor);
  margin-bottom: 0.5rem;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 1px dotted var(--redColor);
}

.firewall-benefit-content p {
  color: var(--grayColor);
  line-height: 1.6;
}

.firewall-faq-section {
  background: var(--whiteColor);
}

.firewall-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding:20px 0;
}

.firewall-faq-item {
  background: var(--whiteColor);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(var(--blackColor-rgb), 0.1);
}

.firewall-faq-item h3 {
  color: var(--redColor);
  margin-bottom: 1rem;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}

.firewall-faq-item p {
  font-size: 16px;
  color: var(--grayColor);
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .firewall-feature-grid,
  .firewall-process-grid,
  .firewall-features-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .firewall-benefits-grid {
      grid-template-columns: 1fr;
      gap:20px;
  }
}

@media (max-width: 768px) {
  .firewall-detail-container {
      grid-template-columns: 1fr;
  }
  .firewall-image-section {
      height:36vh;
  }
  .firewall-feature-grid,
  .firewall-process-grid,
  .firewall-features-grid,
  .firewall-faq-grid {
      grid-template-columns: 1fr;
  }
  
}

/* Solutions Section */
.solutions-service-detail-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.solutions-image-section {
  flex: 1;
}

.solutions-image-section img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.solutions-service-content-section {
  flex: 1;
}

.solutions-service_heading_container {
  margin-bottom: 30px;
}

.solutions-service-content-section p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.solutions-grid-section {
  background-color: #ffffff;
  padding:50px 0;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding:20px; 
}

.solution-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--redColor);
}

.solution-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--redColor);
}

.solution-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.solution-card p {
  color: #666;
  line-height: 1.6;
}

.solution-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.solution-features ul {
  list-style: none;
  padding: 0;
}

.solution-features li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
}

.solution-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--redColor);
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
.solution-card {
  animation: fadeInUp 0.5s ease;
  animation-fill-mode: both;
}


/* Sectors */
 /* Core styles */
 .sector-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero enhancement */
.sector-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding:30px 0;
  align-items: start;
  justify-content: center;
}
.highlight-image {
  overflow: hidden;
  width: 90%;
  height:90%;
  clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%,0 100%);
}
.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.highlight-content {
  padding-right: 40px;
}
.highlight-content p {
  margin-bottom: 8px;
  color: var(--darkgrayColor);
  font-size:16px;
}
.highlight-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sectors-stat-box {
  background: var(--whiteColor);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sectors-stat-box .number {
  font-size: 22px;
  font-weight: 500;
  color: var(--redColor);
}

.sectors-stat-box .label {
  color: var(--darkgrayColor);
  margin-top: 5px;
}
@media (max-width: 500px) {
  .highlight-image {
    width: 100%;
    height:30vh;
  }
}
/* Interactive Sector Grid */
.all-sectors-container {
  background: #f3f3f3;
}
.sector-expertise {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.expertise-card {
  background: var(--whiteColor);
  border-radius: 8px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  max-height:fit-content;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.expertise-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(var(--redColor-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon ion-icon {
  font-size: 30px;
  color: var(--redColor);
}

.expertise-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
}
.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.expertise-content {
  max-height: 500px;
  opacity: 1;
  transition: all 0.3s ease;
  overflow: hidden;
}

.expertise-card.active .expertise-content {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}

.capability-list {
  margin-top: 15px;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 8px;
  background: rgba(var(--redColor-rgb), 0.05);
  border-radius: 4px;
}

.capability-item ion-icon {
  color: var(--redColor);
}

/* Solutions Section */
.sector-solutions {
  padding: 60px 0;
}

.solution-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.solution-tab {
  padding: 12px 24px;
  border: none;
  background: var(--formgrayColor);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.solution-tab:hover {
  background: rgba(var(--redColor-rgb), 0.1);
}

.solution-tab.active {
  background: var(--redColor);
  color: white;
}

.solution-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.solution-content.active {
  display: block;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.solution-item {
  background: var(--whiteColor);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.solution-item h4 {
  color: var(--redColor);
  margin-bottom: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 992px) {
  .sector-highlight {
      grid-template-columns: 1fr;
  }
  
  .expertise-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .expertise-grid {
      grid-template-columns: 1fr;
  }
  
  .highlight-content {
      padding-right: 0;
  }
}


/* Error Page */
.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 2rem;
  text-align: center;
}

.error-image {
  width: 300px;
  max-width: 80%;
  animation: float 6s ease-in-out infinite;
}

.error-title {
  color: var(--redColor);
  font-size: 34px;
  margin: 12px 0;
  animation: fadeIn 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-message {
  font-size: 20px;
  color: var(--darkgrayColor);
  max-width: 600px;
  margin: 0 auto;
  padding: 8px 0;
  animation: fadeIn 1.5s ease-out;
}

.home-button {
  display: inline-block;
  padding: 1rem 2rem;
  margin-top: 16px;
  background: linear-gradient(45deg, hsl(39, 93%, 52%), #ff6b6b);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 2s ease-out;
}

.home-button:hover {
  transform: translateY(-3px);
  opacity:0.8;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .error-title {
    font-size: 28px;
  }

  .error-message {
    font-size: 19px;
    padding: 10px;
  }

  .error-container {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .error-title {
    font-size: 24px;
  }

  .error-message {
    font-size: 17px;
  }

  .home-button {
    padding: 0.8rem 1.6rem;
  }
}

/* products section */ /* Hero Section */
 .details-hero-wrap {
  min-height: 50vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.details-hero-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.details-hero-wrap-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.details-hero-wrap-content h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--whiteColor);
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.details-hero-wrap-content p {
  font-size: 19px;
  color: var(--whiteColor);
  margin-bottom: 22px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* License Details Section */
.license-section {
  padding-top:20px;
  background: var(--whiteColor);
}


.product-heading_container {
  display: flex;
  gap:10px;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.product-dot-pattern {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.product-dot-pattern .dot {
  width: 8px;
  height: 8px;
  background: var(--redColor);
  border-radius: 50%;
}

.product-heading-text {
  font-size: 29px;
  color: var(--blackColor);
  font-weight:600;
  position: relative;
  display: inline-block;
  padding-bottom:3px;
}

.product-heading-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--redColor);
}
.product-license-section {
  background: var(--formgrayColor);
}
.product-license-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 auto;
}
.license-image-container {
  width:90%;
  height:80%;
}
.license-image-container img {
  width: 100%;
  height:100%;
  object-fit: cover;
  border-radius: 8px;
  clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%,0 100%);
}

.license-content h1 {
  color: var(--blackColor);
  font-size:25px;
  font-weight:600;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.license-content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--redColor);
}
.license-content p {
  color: var(--darkgrayColor);
  margin-bottom: 20px;
  line-height:30px;
  font-size:16px;
  text-align: justify;
}
/* License Cards */
.license-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-license-card {
  background: var(--whiteColor);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.product-license-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--redColor);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-license-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.product-license-card:hover::before {
  transform: scaleX(1);
}

.product-license-card h3 {
  font-size: 1.5rem;
  padding: 15px;
  margin: 0;
  color: var(--blackColor);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-license-card-content {
  padding: 1.5rem;
}

.product-license-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.product-license-card ul li {
  padding: 0.5rem 0;
  color: var(--grayColor);
  position: relative;
  padding-left: 1.5rem;
}
.product-license-card ul li>span {
 font-weight:500;
 color:var(--darkgrayColor);
}
.product-license-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--redColor);
}

/* Features Section */
.product-features-section {
  padding-top:20px;
  background: var(--formgrayColor);
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-feature-item {
  background: var(--whiteColor);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.product-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-feature-icon {
  font-size: 3rem;
  color: var(--redColor);
  margin-bottom: 1.5rem;
}

.product-feature-item h3 {
  color: var(--blackColor);
  font-weight:600;
  margin-bottom: 12px;
  font-size: 20px;
}

/* CTA Button */
.details-hero-wrap-cta-button {
  background: var(--redColor);
  color: var(--whiteColor);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 2rem;
}

.details-hero-wrap-cta-button:hover {
  background: #b19729;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(197, 170, 49, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .details-hero-wrap-content h1 {
      font-size: 2.5rem;
  }
  .product-license-details {
      grid-template-columns: 1fr;
  }
  .details-hero-wrap-content p {
      font-size: 1.2rem;
  }

  .product-heading-text {
      font-size: 28px;
  }
  .license-image-container {
      width:100%;
      height:90%;
  }
  .license-grid {
      gap: 1.5rem;
  }

  .product-feature-grid {
      gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .details-hero-wrap-content h1 {
      font-size: 2rem;
  }

  .details-hero-wrap-content p {
      font-size: 1.1rem;
  }

  .product-heading-text {
      font-size: 26px;
  }
}

/*Products consultation form*/
.product-consult-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: var(--whiteColor);
  box-shadow: 0 10px 10px 5px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
}

.licencing-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 8px 0;
}

@media (max-width: 768px) {
  .licencing-form-grid {
      grid-template-columns: 1fr; /* Stack on mobile */
  }
}
.licencing-form-grid .full-width {
  grid-column: 1 / -1; /* Spans all columns */
}

.product-consult-form input[type="text"],
.product-consult-form input[type="email"],
.product-consult-form input[type="number"],
.product-consult-form select,
.product-consult-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--redColor);
  border-radius: 2px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--whiteColor);
  margin-bottom: 12px;
}

.product-consult-form input[type="text"]:focus,
.product-consult-form input[type="email"]:focus,
.product-consult-form input[type="tel"]:focus,
.product-consult-form select:focus,
.product-consult-form textarea:focus {
  border-color: var(--redColor);
  box-shadow: 0 0 0 3px rgba(197, 170, 49, 0.2);
  outline: none;
}

.product-consult-form textarea {
  height:80px;
  resize: vertical;
}

.product-consult-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.product-consult-form button[type="submit"] {
  background: var(--redColor);
  color: var(--whiteColor);
  padding: 15px 24px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight:500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  margin-top: 1rem;
}

.product-consult-form button[type="submit"]:hover {
  background: #b19729;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 170, 49, 0.3);
}

/* Error states */
.product-consult-form .errorlist {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  color: #dc3545;
  font-size: 0.875rem;
}

.product-consult-form input.error,
.product-consult-form select.error,
.product-consult-form textarea.error {
  border-color: #dc3545;
}

/* Loading state */
.product-consult-form button[type="submit"].loading {
  position: relative;
  color: transparent;
}

.product-consult-form button[type="submit"].loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--whiteColor);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
      transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Success message */
.form-success-message {
  text-align: center;
  color: #28a745;
  padding: 1rem;
  border-radius: 6px;
  background: #d4edda;
  margin-bottom: 1rem;
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-consult-form {
      padding:5px;
      margin: 0 10px;
  }

  .product-consult-form button[type="submit"] {
      padding: 14px 22px;
      font-size: 15px;
  }
}

   /* Hero Section */
  .case-studies-hero-wrap {
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--whiteColor);
  }

  .case-studies-hero-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .case-studies-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
  }

  .case-studies-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .case-studies-content p {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 300;
  }

  /* Overview Section */
  .case-study-overview {
    background-color: var(--whiteColor);
  }

  .overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-top:30px;
  }
  .overview-image-container {
    position: relative;
    height:80%;
    width:90%;
  }
.overview-image-container img {
    width: 100%;
    height:100%;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    object-fit: cover;
}
@media (max-width: 768px) {
  .overview-image-container {
    position: relative;
    height:30vh;
    width:100%;
  }
}
  .overview-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--darkgrayColor);
    position: relative;
  }

  .overview-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: var(--redColor);
  }

  .overview-content p {
    font-size: 16px;
    line-height: 30px;
    color: var(--grayColor);
    margin-bottom: 5px;
  }

  /* Challenge & Solution Section */
  .challenge-solution {
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
  }

  .challenge-solution::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(var(--redColor-rgb), 0.1);
    border-radius: 50%;
    transform: translate(100px, -100px);
  }

  .section-header {
    text-align: center;
    margin: 30px 0;
  }

  .case-study-heading_container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .case-study-dot-pattern {
    display: flex;
    gap: 5px;
    margin-right: 15px;
  }

  .case-study-dot {
    width: 10px;
    height: 10px;
    background-color: var(--redColor);
    border-radius: 50%;
  }
  .section-header h2 {
    font-size:22px;
    text-transform: uppercase;
    color: var(--darkgrayColor);
  }

  .section-header p {
    font-size: 18px;
    color: var(--grayColor);
    max-width: 700px;
    margin: 10px auto;
  }

  .cs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .cs-card {
    background-color: var(--whiteColor);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }

  .cs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .cs-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(var(--redColor-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }

  .cs-card-icon i {
    font-size: 30px;
    color: var(--redColor);
  }

  .cs-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--darkgrayColor);
  }

  .cs-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grayColor);
  }
  .cs-card ul {
      margin-left: 20px;
      margin-top: 15px;
      color: var(--grayColor);
      line-height: 1.7;
  }
  .cs-card ul li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 20px;

  }
  .cs-card ul li::before {
      content: "\2713";
      color: var(--redColor);
      font-weight: bold;
      display: inline-block;
      width: 1em;
      margin-left: -1em;
      padding-right: 7px;
  }
  /* Results Section */
  .results-section {
    padding: 20px 0;
    background-color: var(--whiteColor);
  }
  .case-study-outcomes {
    padding-top: 30px;
  }
  .results-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .results-header h2 {
    font-size: 29px;
    color: var(--darkgrayColor);
    margin-bottom: 10px;
  }

  .results-header p {
    font-size: 17px;
    color: var(--grayColor);
    max-width: 700px;
    margin: 0 auto;
  }

  .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
  }

  .result-card {
    background-color: #f8f8f8;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .result-card:hover {
    transform: translateY(-10px);
  }

  .result-text {
    font-size: 18px;
    color: var(--darkgrayColor);
  }
  .result-text::before {
      content: "\2713";
      color: var(--redColor);
      font-weight: bold;
      display: inline-block;
      width: 1em;
      margin-left: -1em;
      padding-right: 7px;
  }
  /* Timeline Section - Redesigned for all screen sizes */
.case-study-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
}

/* Timeline vertical line */
.case-study-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 4px;
  height: 100%;
  background-color: var(--redColor);
}

.case-study-timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 45px; /* Space for dot and line */
}

.case-study-timeline-item:last-child {
  margin-bottom: 0;
}

/* Timeline dot */
.case-study-timeline-dot {
  position: absolute;
  top: 0;
  left: 8px; /* Center dot on the line */
  width: 18px;
  height: 18px;
  background-color: var(--redColor);
  border-radius: 50%;
  z-index: 1;
}

/* Content box */
.case-study-timeline-content {
  position: relative;
  padding: 20px;
  background-color: var(--whiteColor);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.case-study-timeline-date {
  font-size: 16px;
  font-weight: 600;
  color: var(--redColor);
  margin-bottom: 8px;
}

.case-study-timeline-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--darkgrayColor);
}

.case-study-timeline-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grayColor);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  /* Optional: For larger screens, we can make it a bit more spacious */
  .case-study-timeline {
    padding: 40px 0;
  }
  
  .case-study-timeline::before {
    left: 20px;
  }
  
  .case-study-timeline-item {
    padding-left: 60px;
  }
  
  .case-study-timeline-dot {
    left: 13px;
    width: 22px;
    height: 22px;
  }
  
  .case-study-timeline-content {
    padding: 25px;
  }
}

/* Even larger screens */
@media (min-width: 992px) {
  .case-study-timeline-item {
    max-width: 90%;
  }
}
  /* Testimonial Section */
  .testimonial-section {
    padding: 10px 0;
    background-color: var(--darkgrayColor);
    color: var(--whiteColor);
    text-align: center;
  }
  .testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 10px;
    position: relative;
    padding: 0 50px;
  }

  .testimonial-quote::before,
  .testimonial-quote::after {
    content: '"';
    font-size: 80px;
    color: var(--redColor);
    line-height: 0;
    position: absolute;
  }

  .testimonial-quote::before {
    top: 30px;
    left: 0;
  }

  .testimonial-quote::after {
    bottom: -20px;
    right: 0;
  }

  .testimonial-author {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .testimonial-position {
    font-size: 16px;
    color: var(--redColor);
  }

  /* CTA Section */
  .cta-text {
    font-size: 18px;
    color: var(--grayColor);
    max-width: 700px;
    margin: 0 auto 40px;
  }
  /* Responsive Styles */
  @media (max-width: 992px) {
    .overview-grid, .cs-grid, .results-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .case-studies-content h1 {
      font-size: 36px;
    }
  .overview-grid {
      gap: 15px;
      align-items: start;
      padding:5px 0;
    }
    .case-studies-content p {
      font-size: 18px;
    }

    .overview-content h1 {
      font-size: 28px;
    }

    .section-header h2, .results-header h2 {
      font-size: 23px;
    }

    .testimonial-quote {
      font-size: 22px;
      padding: 0 30px;
    }

    .cta-title {
      font-size: 28px;
    }
  }

  @media (max-width: 576px) {
    .case-studies-hero-wrap {
      height: 30vh;
    }

    .case-studies-content h1 {
      font-size: 28px;
    }

    .overview-content h1 {
      font-size: 24px;
    }

    .section-header h2, .results-header h2 {
      font-size: 22px;
    }

    .cs-card, .result-card {
      padding: 30px 20px;
    }

    .testimonial-quote {
      font-size: 18px;
    }
  }
  /* Waitlist Modal - Reimagined */
.waitlist-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  perspective: 1000px;
}

.waitlist-modal.active {
  display: block;
}

.waitlist-modal-content {
  background: linear-gradient(135deg, #fff, #f5f5f5);
  margin: 10% auto;
  padding: 40px 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1), 
              0 -10px 50px rgba(255, 255, 255, 0.1);
  position: relative;
  animation: modalReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-left: 4px solid var(--redColor);
  overflow: hidden;
}

@keyframes modalReveal {
  0% {
    opacity: 0;
    transform: rotateX(10deg) translateY(50px);
  }
  100% {
    opacity: 1;
    transform: rotateX(0) translateY(0);
  }
}

.modal-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--redColor) 0%, rgba(255, 153, 0, 0.3) 100%);
  opacity: 0.1;
  z-index: 1;
}

.modal-decoration-2 {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--redColor) 0%, rgba(255, 153, 0, 0.3) 100%);
  opacity: 0.1;
  z-index: 1;
}
/* Perforated Edge Effect */
/* .ticket-perf {
  height: 20px;
  background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 5px,
      var(--redColor) 5px,
      var(--redColor) 10px
  );
} */
.fanisi-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.fanisi-logo-container img {
  width: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.waitlist-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  color: #555;
  z-index:20;
}
.waitlist-close:hover {
  background-color: rgba(255, 100, 50, 0.1);
  color: var(--redColor);
  transform: rotate(90deg);
}
.waitlist-modal-content h2 {
  padding-bottom: 15px;
  color: var(--darkgrayColor);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.waitlist-modal-content h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--redColor);
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.waitlist-modal-content p {
  color: var(--grayColor);
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.waitlist-modal-content p span {
  color: var(--redColor);
  font-weight: 700;
  font-size:19px;
  position: relative;
  white-space: nowrap;
}

.waitlist-modal-content p span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: rgba(255, 153, 0, 0.1);
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 2px;
}

.waitlist-form {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.input-submit-container {
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.waitlist-form-field {
  flex-grow: 1;
  width: 100%;
  position: relative;
  z-index: 1;
}

.waitlist-form-field input {
  width: 100%;
  font-size: 15px;
  transition: all 0.3s ease;
  color: var(--blackColor);
  padding: 16px 20px;
  border: none;
  background-color: white;
  border-radius: 8px 0 0 8px;
}

.waitlist-form-field input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--redColor);
}

.waitlist-form-field input::placeholder {
  color: #aaa;
  transition: all 0.3s ease;
}

.waitlist-form-field input:focus::placeholder {
  opacity: 0.7;
  transform: translateY(-5px);
}

.waitlist-submit-btn {
  background: linear-gradient(45deg, var(--redColor), #ff8c4d);
  border: none;
  padding: 0 10px;
  border-radius: 50px;
  cursor: pointer;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  gap:5px;
  align-items: center;
  justify-content: center;
}

.waitlist-submit-btn:hover {
  background: linear-gradient(45deg, #ff8c4d, var(--redColor));
  transform: translateX(2px);
}

.waitlist-submit-btn ion-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.waitlist-submit-btn:hover ion-icon {
  transform: translateX(3px);
}

/* Success message animation for future use */
@keyframes successPulse {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Redesigned Floating Action Button */
.waitlist-fab {
  position: fixed;
  bottom:100px;
  right: 0px;
  background: linear-gradient(135deg, var(--redColor), #ff8c4d);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 130, 50, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  gap: 8px;
  animation: redpulsing 2s infinite;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.waitlist-fab:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 130, 50, 0.4);
}

.waitlist-fab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
  border-radius: 50px;
}

.waitlist-fab ion-icon {
  font-size: 20px;
}

/* Mobile responsiveness improvements */
@media (max-width: 480px) {
  .waitlist-modal-content {
    margin: 15% auto;
    padding: 30px 20px;
  }
  
  .waitlist-fab {
    padding: 10px;
  }
}
