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

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

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

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

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

.dark-background {
  --background-color: #273f49;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #395c6a;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #16537e;
}

/* Portfolio Details Page Header
------------------------------*/
.portfolio-details-page .header {
  --background-color: #16537e;
  --nav-hover-color: #1769a3;
}

/* Service Details Page Header
------------------------------*/
.service-details-page .header {
  --background-color: #16537e;
}

/* Starter Page Page Header
------------------------------*/
.starter-page-page .header {
  --background-color: #16537e;
  --nav-hover-color: #1769a3;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 15px;
    margin-left: 2px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 2px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    margin: 0;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--accent-color); 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s ease-out;
  }

  .loader-container {
    position: relative;
    width: 120px;
    height: 120px;
    text-align: center;
  }

  .loader-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    border: 2px solid transparent;
    border-top: 2px solid rgba(255, 255, 255, 0.5);  
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);  
  }

  .loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:90px;
    height:90px;
    background-image: url("/media/navbar/11115.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);  
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  } 

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

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

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

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

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

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

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

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

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

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

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 82px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
/* .section-title {
  padding-bottom: 60px;
  position: relative;
} */

/* .section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
} */

/* .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
} */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0px !important;
}

.hero .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}
.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 30%
  );
  position: absolute;
  inset: 0;
}
.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
  direction: rtl;
  text-align: center;
}
.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {
  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

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

@media (min-width: 1024px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 24%;
  right: -10%;
  width: 45%;
  height: 100px;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: absolute;
    top: 24%;
    right: -4%;
    width: 45%;
    height: 100px;
    border: 8px solid var(--surface-color);
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/* Enhanced Services CSS */
.services .section-title .title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.section-title .pre-title {
  display: block;
  font-size: 1.2rem;
  color: var(--text-color-light);
  margin-bottom: 10px;
}

.section-title .main-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  color: var(--heading-color);
  margin-bottom: 8px;
  position: relative;
}

.section-title .title-description {
  color: var(--text-light) !important;
  /* max-width: 400px; */
  /* margin: 0 auto; */
  font-size: 14px;
  text-align: center;
  justify-content: center;
}

.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 30px 0 rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
}

.services .service-item .service-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: white;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.services .service-item:hover .service-badge {
  opacity: 1;
  transform: translateY(0);
}

.services .service-item .icon {
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 42px;
  transition: all 0.3s ease;
}

.services .service-item h4 {
  margin-bottom: 15px;
  position: relative;
}

.services .service-item h4 a {
  color: var(--heading-color);
  transition: all 0.3s ease;
  font-weight: 700;
  text-decoration: none;
}

.services .service-item p {
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  color: var(--text-color);
}

.services .service-item .service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.services .service-item .read-more {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.services .service-item .service-stats {
  font-size: 0.8rem;
  color: var(--text-color-light);
}

.services .service-item .service-stats i {
  margin-left: 8px;
}

.services .service-item .service-stats .count {
  margin-left: 3px;
}

/* Hover Effects */
.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 40px 0 rgba(0, 0, 0, 0.12);
}

.services .service-item:hover h4 a,
.services .service-item:hover .icon i,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: var(--contrast-color);
}

.services .service-item:hover .service-footer .service-stats {
  color: rgba(255, 255, 255, 0.7);
}

.services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .services .service-item {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Stats 2 Section
--------------------------------------------------------------*/
.stats-2 {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), var(--heading-color) 30%) 100%
  );
  position: relative;
  overflow: hidden;
}

.stats-2::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: color-mix(in srgb, var(--contrast-color), transparent 95%);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.stats-2::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 30%;
  height: 160%;
  background: color-mix(in srgb, var(--contrast-color), transparent 97%);
  border-radius: 50%;
  transform: rotate(25deg);
}

.stats-2 .section-title h2,
.stats-2 .section-title p {
  color: var(--contrast-color);
}

.stats-2 .section-title p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.stats-2 .stats-wrapper {
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 85%);
  box-shadow: 0 20px 40px
    color-mix(in srgb, var(--heading-color), transparent 80%);
  position: relative;
  z-index: 1;
}

.stats-2 .stats-wrapper .row {
  margin-bottom: 20px;
}

.stats-2 .stats-wrapper .row:last-child {
  margin-bottom: 0;
}

.stats-2 .stat-card {
  display: flex;
  align-items: center;
  padding: 25px 20px;
  background: var(--surface-color);
  border-radius: 15px;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .stats-2 .stat-card {
    margin-bottom: 15px;
  }
}

.stats-2 .stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px
    color-mix(in srgb, var(--accent-color), transparent 70%);
  border-color: var(--accent-color);
}

.stats-2 .stat-card:hover .stat-icon i {
  transform: scale(1.1);
  color: var(--contrast-color);
}

.stats-2 .stat-card:hover .stat-icon {
  background: var(--accent-color);
}

.stats-2 .stat-card .stat-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.stats-2 .stat-card .stat-content {
  flex: 1;
}

.stats-2 .stat-card .stat-content h3 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 5px 0;
  line-height: 1;
}

.stats-2 .stat-card .stat-content p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Portfolio 2 Section
--------------------------------------------------------------*/
.portfolio-2 .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.portfolio-2 .portfolio-filters li {
  padding: 8px 20px;
  font-size: 0.91rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.portfolio-2 .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

.portfolio-2 .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.portfolio-2 .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-2 .portfolio-card:hover .portfolio-img .portfolio-overlay {
  opacity: 1;
}

.portfolio-2 .portfolio-card:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-2 .portfolio-card .portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio-2 .portfolio-card .portfolio-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.portfolio-2 .portfolio-card .portfolio-img .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-2 .portfolio-card .portfolio-img .portfolio-overlay a {
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.portfolio-2 .portfolio-card .portfolio-img .portfolio-overlay a:hover {
  background-color: color-mix(in srgb, var(--accent-color), #fff 20%);
  transform: translateY(-5px);
}

.portfolio-2 .portfolio-card .portfolio-info {
  padding: 20px;
}

.portfolio-2 .portfolio-card .portfolio-info h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.portfolio-2 .portfolio-card .portfolio-info p {
  font-size: 0.9rem;
  color: var(--default-color);
  margin-bottom: 10px;
}

.portfolio-2 .portfolio-card .portfolio-info .portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-2 .portfolio-card .portfolio-info .portfolio-tags span {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.portfolio-2 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.portfolio-2 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 15.5px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq-2 .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact 4 Section
--------------------------------------------------------------*/
.contact-4 .info-item + .info-item {
  margin-top: 40px;
}

.contact-4 .info-item h3 {
  padding: 0;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-4 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-4 .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 2.5rem;
}

.portfolio-details .portfolio-details-media {
  position: relative;
}

.portfolio-details .portfolio-details-media .main-image {
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider {
  position: relative;
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-wrapper {
  height: auto !important;
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-slide
  img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-next,
.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-prev {
  background-color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-next:after,
.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-prev:after {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: bold;
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-next:hover,
.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-prev:hover {
  background-color: var(--accent-color);
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-next:hover:after,
.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-prev:hover:after {
  color: var(--contrast-color);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img {
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-media .tech-stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 85%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 70%);
  transform: translateY(-2px);
}

.portfolio-details .portfolio-details-content {
  padding: 0 0 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-details .portfolio-details-content .project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.portfolio-details
  .portfolio-details-content
  .project-meta
  .badge-wrapper
  .project-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.portfolio-details .portfolio-details-content .project-meta .date-client {
  display: flex;
  gap: 1.5rem;
}

.portfolio-details
  .portfolio-details-content
  .project-meta
  .date-client
  .meta-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details
  .portfolio-details-content
  .project-meta
  .date-client
  .meta-item
  i {
  margin-left: 6px;
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.portfolio-details .portfolio-details-content .project-website i {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 8px;
}

.portfolio-details .portfolio-details-content .project-website a {
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .portfolio-details-content .project-website a:hover {
  letter-spacing: 0.5px;
}

.portfolio-details .portfolio-details-content .project-overview {
  margin-bottom: 16px;
}

.portfolio-details .portfolio-details-content .project-overview .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item {
  border: none;
  background: none;
  margin-bottom: 10px;
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)
  i {
  color: var(--accent-color);
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-header
  .accordion-button
  i {
  font-size: 1.1rem;
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-body {
  padding: 0.3rem;
  background-color: var(--surface-color);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-body
  p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.portfolio-details .portfolio-details-content .project-features {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-features h3 i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.1em;
}

.portfolio-details
  .portfolio-details-content
  .project-features
  .feature-list
  li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.portfolio-details
  .portfolio-details-content
  .project-features
  .feature-list
  li
  i {
  color: var(--accent-color);
  margin-left: 10px;
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project {
  padding: 10px 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 14px;
}

.portfolio-details
  .portfolio-details-content
  .cta-buttons
  .btn-view-project:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project {
  padding: 10px 20px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project i {
  transition: transform 0.3s ease;
}

.portfolio-details
  .portfolio-details-content
  .cta-buttons
  .btn-next-project:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
}

.portfolio-details
  .portfolio-details-content
  .cta-buttons
  .btn-next-project:hover
  i {
  transform: translateX(3px);
}

@media (max-width: 1199.98px) {
  .portfolio-details .portfolio-details-content {
    padding-left: 1rem;
  }
}

@media (max-width: 991.98px) {
  .portfolio-details .portfolio-details-content .cta-buttons {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .portfolio-details .project-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .portfolio-details .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .portfolio-details .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about-2 .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about-2 .about-title {
    font-size: 2rem;
  }
}

.about-2 .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-2 .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about-2 .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-2 .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-2 .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about-2 .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about-2 .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about-2 .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about-2 .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about-2 .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about-2 .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about-2 .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about-2 .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about-2 .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about-2 .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about-2 .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about-2 .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about-2 .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about-2 .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about-2 .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about-2 .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about-2 .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about-2 .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-toggle {
  position: relative;
  margin-bottom: 2rem;
}

.pricing .pricing-toggle span {
  font-size: 1rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.pricing .pricing-toggle span.active {
  color: var(--accent-color);
  font-weight: 600;
}

.pricing .pricing-toggle span .badge {
  background-color: color-mix(in srgb, #4caf50, transparent 70%);
  color: #4caf50;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  margin-left: 0.5rem;
}

.pricing .pricing-toggle .form-check-input {
  width: 3rem;
  height: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  border: none;
  cursor: pointer;
}

.pricing .pricing-toggle .form-check-input:checked {
  background-color: var(--accent-color);
}

.pricing .pricing-toggle .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem
    color-mix(in srgb, var(--accent-color), transparent 70%);
  border-color: transparent;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-item.popular {
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px
    color-mix(in srgb, var(--accent-color), transparent 85%);
}

.pricing .pricing-item.popular .popular-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: color-mix(in srgb, #9c27b0, transparent 80%);
  color: #9c27b0;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.pricing .pricing-item .pricing-header {
  margin-bottom: 1.5rem;
}

.pricing .pricing-item .pricing-header .pricing-category {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.pricing .pricing-item .pricing-header .price-wrap {
  margin-bottom: 0.5rem;
}

.pricing .pricing-item .pricing-header .price-wrap .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0;
}

.pricing .pricing-item .pricing-header .price-wrap .price sup {
  font-size: 1.25rem;
  position: relative;
  top: -0.75rem;
}

.pricing .pricing-item .pricing-header .price-wrap .price span {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-item .pricing-header .price-wrap .yearly {
  display: none;
}

.pricing .pricing-item .pricing-header .pricing-description {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.pricing .pricing-item.yearly-active .pricing-header .price-wrap .monthly {
  display: none;
}

.pricing .pricing-item.yearly-active .pricing-header .price-wrap .yearly {
  display: block;
}

.pricing .pricing-cta {
  margin-bottom: 1.5rem;
  min-width: 200px;
}

.pricing .pricing-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.pricing .pricing-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.pricing .pricing-features {
  flex-grow: 1;
}

.pricing .pricing-features h6 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.pricing .pricing-features .feature-list {
  list-style: none;
  /* padding-right: 0; */
  padding: 0px !important;
  margin-bottom: 0;
}

.pricing .pricing-features .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--default-color);
}

.pricing .pricing-features .feature-list li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing .pricing-features .feature-list li .feature-highlight {
  color: #9c27b0;
  font-weight: 600;
}

.pricing.yearly-active .pricing-toggle .monthly {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.pricing.yearly-active .pricing-toggle .yearly {
  color: var(--accent-color);
  font-weight: 600;
}

.pricing.yearly-active .pricing-item .price-wrap .monthly {
  display: none;
}

.pricing.yearly-active .pricing-item .price-wrap .yearly {
  display: block;
}

@media (max-width: 992px) {
  .pricing .pricing-item {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .pricing .row.gy-4 > [class*="col-"] {
    margin-bottom: 2rem;
  }

  .pricing .pricing-item,
  .starter-section {
    padding: 16px;
    margin: 0px 20px;
  }

  .pricing .pricing-header .price-wrap .price {
    font-size: 20px !important;
  }
}

@media (max-width: 576px) {
  .pricing .pricing-toggle {
    flex-direction: column;
  }

  .pricing .pricing-toggle .form-check {
    margin: 1rem 0;
  }

  .pricing .pricing-toggle span .badge {
    display: block;
    margin: 0.5rem auto 0;
    width: fit-content;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
}
/* *********** */

.nav {
  padding-right: 0px !important;
}
.stats-2 .stat-card .stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.contact-4 .php-email-form input[type="text"],
.contact-4 .php-email-form input[type="email"],
.contact-4 .php-email-form textarea {
  border-radius: var(--bs-border-radius);
}
.contact-4 .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-left: 15px;
}
.page-title {
  margin-top: 70px;
}
.section-title.section-small {
  padding-top: 30px;
  padding-bottom: 5px;
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .page-title {
    margin-top: 60px;
  }
  .hero p {
    font-size: 14px;
    padding: 0 10px;
  }
  .hero .btn-get-started {
    font-size: 14px;
    padding: 6px 24px;
    margin: 8px auto;
    display: block;
    text-align: center;
  }
  .section-title h2 {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .section-title div {
    font-size: 18px;
  }
  .header .logo img {
    max-height: 26px;
    margin-right: 4px;
  }
  .section-title {
    padding-bottom: 18px;
  }
  .about .about-meta {
    font-size: 14px;
    margin-bottom: 0.55rem;
  }
  .about .about-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .about .about-description {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
  .nav-tabs .nav-link {
    font-size: 13px;
    padding: 4px 12px;
  }
  .about .profile .profile-image {
    width: 50px;
    height: 50px;
  }
  .about .profile .profile-name {
    font-size: 0.85rem;
  }
  .about .profile .profile-position {
    font-size: 0.6rem;
  }
  .about .contact-info i {
    font-size: 1.3rem;
  }
  .about .contact-info .contact-label {
    font-size: 0.6rem;
  }
  .about .contact-info .contact-number {
    font-size: 0.85rem;
  }
  .about .contact-info {
    padding: 8px 10px;
  }
  .about .image-wrapper .images {
    padding: 2.5rem;
  }
  section,
  /*.section {*/
  /*  padding: 0px !important;*/
  /*}*/
  .about .image-wrapper {
    padding-left: 0;
    /* margin-top: 3rem; */
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .services .service-item {
    padding: 20px 20px;
    margin: 0px 32px;
  }
  .services .service-item h4 {
    font-size: 15px !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
  }
  .services .service-item p {
    font-size: 13px;
    line-height: 22px;
  }
  .services .service-item .icon {
    font-size: 13px;
  }
  .stats-2 .stat-card .stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  .stats-2 .stat-card {
    padding: 16px;
  }

  .stats-2 .stat-card .stat-icon {
    margin-bottom: 10px;
  }

  .stats-2 .stat-card .stat-content h3 {
    font-size: 18px;
  }
  .portfolio-2 .portfolio-filters {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 8px 10px;
  }

  .portfolio-2 .portfolio-filters li {
    flex: 0 0 auto;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    white-space: nowrap;
  }
  .portfolio-2 .portfolio-card .portfolio-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .portfolio-2 .portfolio-card .portfolio-info p {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .portfolio-2 .portfolio-card .portfolio-info .portfolio-tags span {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 16px;
  }
  .portfolio-2 .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .faq-2 .faq-container .faq-item h3 {
    font-size: 14px;
    line-height: 20px;
    margin-right: 15px;
  }
  .faq-2 .faq-container .faq-item .faq-content p {
    font-size: 0.85rem;
  }
  .contact-4 .info-item i {
    font-size: 16px;
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }

  .contact-4 .info-item h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .contact-4 .info-item p {
    font-size: 13px;
  }
  .form-select {
    font-size: 0.9rem;
    padding: 0.35rem 2rem 0.35rem 0.6rem;
  }
  .contact-4 .php-email-form button[type="submit"] {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  .footer .footer-about .logo img {
    max-height: 30px;
    margin-right: 4px;
  }
  .footer .footer-about p {
    font-size: 12px;
  }
  .footer .footer-newsletter .newsletter-form {
    padding-left: 0px;
  }
}

/*k*/

.hero h2 {
  margin-bottom: 30px;
  font-size: 19px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}
.header .logo img {
  max-height: 28px;
  margin-right: 8px;
}
.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
  text-align: -webkit-center;
}
.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 17px;
}
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 17px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header.colored-header {
  background-color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 19px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 130px;
  z-index: 1000;
  background-color: #4b99bb;
  border-radius: 20px 0px 15px 20px;
  /* text-transform: lowercase !important; */
  /* border-radius: 50%; */
  /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
  padding: 0px 1px;
  color: #ffffff;
}

.ttt {
  font-size: 14px;
  font-weight: 600;
  padding: 5px 0px 6px 10px;
}
.bi.bi-whatsapp {
  font-size: 20px;
}

@media (max-height: 500px), (max-width: 580px) {
  .whatsapp-float {
    width: 120px;
    font-size: 12px;
    right: 11px;
  }
  .ttt {
    font-size: 14px;
    font-weight: 600;
    padding: 5px 0px 5px 7px;
  }
  .bi.bi-whatsapp {
    font-size: 17px;
  }

  .whatsapp-floata a:hover {
    color: #ffffff;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  .whatsapp-icon {
    width: 55px;
    height: 55px;
  }

  .hidden {
    opacity: 0;
    transform: translateY(100px);
  }
}
/* ********** */
.our-stats-section {
  background: linear-gradient(90deg, #16537e 0%, var(--heading-color) 100%);
  padding: 60px 20px;
  /* text-align: center; */
  color: var(--contrast-color);
  margin-bottom: 40px;
}
.our-stats {
  display: flex;
  text-align: center;
  justify-content: center;
}
.section-title-static h2::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 20%);

  margin: 4px 10px;
  border-radius: 2px;
}

.section-title-static h2 {
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  position: relative;
  font-size: 14px;
}
.section-title-static span {
  color: var(--contrast-color);
  margin: 0;
  display: flex;
  justify-self: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}
.section-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--contrast-color);
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 40px 20px 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 220px;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  margin-bottom: 20px;
  font-size: 50px;
  color: #fff !important;
}

.stat-icon img {
  max-width: 60px;
  filter: brightness(0) invert(1);
}

.stat-number {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.gradient-icon {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-danger i {
  margin-left: 6px;
  color: #dc3545;
}

.input-error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.captcha-error {
  font-size: 14px;
  color: var(--bs-form-invalid-color);
}
section,
.section {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  padding: 30px 0;
  scroll-margin-top: 74px;
  overflow: clip;
}
.section-title {
  padding-bottom: 24px !important;
  position: relative;
}
/* Base: XS - 1 card */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 0 !important;
}

/* SM: 2 cards per row */
@media (min-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MD: 3 cards per row */
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* LG and XL: 4 cards per row */
@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-top: 40px;
  }

  .about .image-wrapper .main-image {
    margin-left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}


  .about .image-wrapper .main-image {
    margin-left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}


/* .about .image-wrapper .small-image {
  position: absolute;
    top: 24%;
    right: -4%;
    width: 45%;
    height: 100px;
    border: 8px solid var(--surface-color);
} */

@media (max-width: 992px) {
  /* .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  } */
}
.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  left: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    max-width: 90px;
    padding: 16px;
    min-width: auto;
    bottom: 15%;
    left: 20%;
  }
  .about .image-wrapper .experience-badge h3 {
    font-size: 16px !important;
  }
  .about .image-wrapper .experience-badge h3 span {
    font-size: 12px !important;
  }
  .about .image-wrapper .experience-badge p {
    font-size: 10px !important;
  }
}

@media (max-width: 576px) {
  .hero .carousel {
    min-height: 68vh;
  }
  .section-title-static {
    text-align: center;
  }

  .section-title-static h2::after {
    margin: 4px auto;
  }

  .section-title-static h2 {
    justify-content: center;
    text-align: center;
    font-size: 12px;
  }

  .section-title-static span,
  .section-title div {
    font-size: 15px;
  }

  .section-title-static div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about .feature-list li i {
    font-size: 1rem;
  }



  .stat-card {
    display: flex;
    flex-direction: row; /* 👈 makes content inside side by side */
    align-items: center;
    justify-content: flex-start;
    gap: 15px; /* space between icon and text */
    padding: 20px 10px;
    text-align: start;
  }

  /* Make sure icon doesn't grow or shrink */
  .stat-icon {
    flex: 0 0 auto;
    margin-bottom: 0; /* Remove bottom margin */
    font-size: 30px;
  }

  /* Allow text to take the remaining space */
  .stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .stat-icon img {
    max-width: 50px;
  }

  .stat-number {
    font-size: 20px;
    margin-bottom: 0px;
  }

  .stat-label {
    font-size: 14px;
    margin-bottom: 0px;
  }
}


@media (max-width: 768px) {
  .header .logo img {
    max-height: 24px !important;
    margin-right: 4px !important;
  }
  .footer .footer-about .logo img {
    max-height: 26px;
    margin-right: 6px;
  }
}

/*kk*/
.footer .footer-about .logo img {
  max-height: 28px;
  margin-right: 6px;
}
.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}
.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 1px;
}
.footer h4 {
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}
@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
    padding: 0px 0px 0px 80px;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 20.666667%;
  }
  .footer-newsletter {
    flex: 0 0 auto;
    width: 25.333333%;
  }
}
@media (max-width: 768px) {
  .footer .footer-about .logo img {
    max-height: 24px;
    margin-right: 6px;
  }

  .footer .footer-links {
    margin-bottom: 3px;
  }
  /*.faq-container {*/
  /*  margin-bottom: 15px;*/
  /*}*/
  .about .feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*gap: 0.75rem 1.5rem;*/
    padding: 0;
    list-style: none;
  }
  .about .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
    font-size: 14px;
  }
  .pricing .pricing-item .pricing-header .pricing-category {
    font-size: 15px;
  }
  .pricing .pricing-item .pricing-header .pricing-description,
  .pricing .pricing-features h6,
  .pricing .pricing-features .feature-list li {
    font-size: 13px;
  }
  .starter-section .title {
    font-size: 15px;
    padding-top: 24px !important;
  }
  .starter-section .description {
    font-size: 13px;
  }
  .pricing .pricing-cta .btn-primary {
    font-size: 14px !important;
    padding: 10px 20px;
  }
}

/* *****11/7*****/
.portfolio-details .portfolio-details-content .project-features .feature-list {
  list-style: none;
  padding-right: 12px;
  padding-left: 0px;
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-header
  .accordion-button::after {
  background-size: 14px;
  width: 14px;
  background-image: none;
  height: 14px;
}

.accordion-button {
  gap: 8px;
}
.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-header
  .accordion-button {
  padding: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 70%);
  border-radius: 8px !important;
  box-shadow: none;
}
.portfolio-details .portfolio-details-content .project-features h3 {
  display: flex;
  align-items: center;
  font-size: 19px;
  margin-bottom: 1.2rem;
  gap: 8px;
}
.portfolio-details .portfolio-details-content .project-website {
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
  gap: 8px;
}
.portfolio-details .portfolio-details-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
  justify-content: end;
}
.stretched-link {
  font-size: 16px;
}

@media (max-width: 991.98px) {
  .portfolio-details .portfolio-details-content {
    padding: 16px 0 0 0;
  }
  .portfolio-details .project-meta .date-client {
    gap: 0.5rem;
  }
  .portfolio-details .portfolio-details-content .project-title,
  .portfolio-details .portfolio-details-content .project-features h3 {
    font-size: 16px;
  }
  .portfolio-details
    .portfolio-details-content
    .project-overview
    .project-accordion
    .accordion-item
    .accordion-header
    .accordion-button:not(.collapsed) {
    font-size: 14px;
  }
  .portfolio-details
    .portfolio-details-content
    .project-overview
    .project-accordion
    .accordion-item
    .accordion-body {
    font-size: 13px;
  }
  .portfolio-details .portfolio-details-content .project-overview {
    margin-bottom: 16px;
  }
  .portfolio-details .portfolio-details-content .project-features h3 {
    margin-bottom: 12px;
  }
  .portfolio-details .portfolio-details-content .cta-buttons {
    margin-top: 0px;
  }
  .services .section-title .main-title {
    font-size: 15px;
    margin-bottom: 0px;
  }
  .services .section-title .title-description {
    font-size: 12px;
  }
  .section-title {
    padding-bottom: 0px !important;
  }
  .services .section-title .title-wrapper {
    margin-bottom: 0px;
  }
  .services .service-item .icon {
    margin-bottom: 8px;
    transition: all 0.3s ease;
  }
  .stretched-link {
    font-size: 14px !important;
  }
  .services .service-item .read-more {
    font-size: 13px !important;
  }
}
@media (max-width: 576px) {
  .portfolio-details .portfolio-details-content .cta-buttons {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
  }

  .portfolio-details .portfolio-details-content .cta-buttons .btn-view-project,
  .portfolio-details .portfolio-details-content .cta-buttons .btn-next-project {
    padding: 8px 16px;
    font-size: 12px;
    /* flex: 1 1 auto;  */
    text-align: center;
    width: auto;
  }
  .left-feature {
    margin-top: -26px;
  }
  .portfolio-details
    .portfolio-details-content
    .project-features
    .feature-list
    li {
    font-size: 13px;
  }
  .portfolio-details .portfolio-details-content .project-website a {
    font-size: 13px;
  }
  .our-stats-section {
    padding: 40px 10px;
    margin-bottom: 20px;
  }
  .section-title .main-title,.section-title-static span, .section-title div{
    font-size: 15px;
    gap: 15px;
  }
  .section-title .title-description{
    font-size: 13px;
  }
}