

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Questrial",  sans-serif;
  --nav-font: "Noto Sans",  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: #0a0f14; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0f2943; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #010101; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #0a0f14;  /* The default color of the main navmenu links */
  --nav-hover-color: #ff6762; /* 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: #0a0f14; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff6762; /* 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: #faf9fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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);
}
.section_padding{
  padding: 80px 0;
}
/* 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
}

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

.header .logo img {
  max-height: 70px;
}

.header .logo h1 {
      font-size: 30px;
    margin: 0;
    padding-left: 5px;
    font-weight: 800;
    color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

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

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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:last-child a {
    padding-right: 0;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    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;
    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(--nav-dropdown-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;
  }
}

/* Navmenu - Mobile */
@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;
  padding: 40px 0;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

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

.footer .social-links {
  margin-top: 20px;
  margin-bottom:20px;
}

.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 50%);
  margin: 0 5px;
  transition: 0.3s;
}

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

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 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 {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(358deg, #d1d1d1, transparent);
}
.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

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

@media (max-width: 1199px) {

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

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

/*.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(120deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}*/
.section-title h2 {

font-size: 42px;

font-weight: 700;

margin-bottom: 10px;

background: linear-gradient(120deg, var(--heading-color), var(--accent-color));

-webkit-background-clip: text;

-webkit-text-fill-color: transparent;

background-clip: text;

position: relative;
  margin-top: -12px;


}
/*.section-title.special h2{
  color: #fff;
  -webkit-text-fill-color:unset;
}*/
.section-title .title-shape {
  width: 200px;
  height: 20px;
  margin: 0 auto;
  color: var(--accent-color);
  opacity: 0.5;
  display: none;
}

.section-title .title-shape svg {
  width: 100%;
  height: 100%;
}

.section-title p {
  margin: 15px auto 0;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 32px;
  }

  .section-title .subtitle-wrapper .subtitle {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero .content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .hero .content h2 {
    font-size: 2.5rem;
    margin-top: 12px;
    text-align: left;
  }
  .services {
    padding: 80px 0!important;
}
section, .section {
        padding: 80px 0;
    }
    .service-details-page .services {
    padding: 80px 0;
}
}

.hero .content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    text-align: justify;
}
.hero .content .lead span{
  font-weight: 600;
}
.hero .cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .hero .cta-buttons {
    flex-direction: column;
  }
}

.hero .cta-buttons .btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .cta-buttons .btn.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%);
  transform: translateY(-2px);
}

.hero .cta-buttons .btn.btn-outline {
  border: 1px solid #000000; /* or #d0d0d0 */;
  background: transparent;
}

.hero .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.hero .hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .hero .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.5rem;
  display: block;
}

.hero .hero-image {
  position: relative;
  padding-top: 30px;
}

.hero .hero-image img {
  position: relative;
  z-index: 2;
}

.hero .hero-image .shape-1,
.hero .hero-image .shape-2 {
  position: absolute;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: 1;
}

.hero .hero-image .shape-1 {
width: 250px;

height: 250px;

background-color: 


color-mix(in srgb, var(--accent-color), transparent 85%);
top: 0px;

right: -20px;

animation: morphShape 15s linear infinite;

}



.hero .hero-image .shape-2 {

width: 200px;

height: 200px;

background-color: color-mix(in srgb, var(--heading-color), transparent 90%);

bottom: -20px;

left: -20px;

animation: morphShape 20s linear infinite reverse;

}


@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding: 10px 0;
  }
  .hero .hero-image .shape-1 {
    width: 220px;
    height: 220px;
    right: -10px;
}
.hero .hero-image .shape-2 {
    width: 150px;
    height: 160px;
    bottom: 22px;
    left: 0px;
}

  .hero .cta-buttons {
    justify-content: start;
  }

  .hero .hero-stats {
    justify-content: center;
  }

  .hero .hero-image {
    margin-top: 1rem;
  }
}

@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }

  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }

  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
  }

  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }

  100% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }
}

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

.about .about-image img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about .about-content {
  padding-left: 2rem;
}

@media (max-width: 991.98px) {
  .about .about-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.about .about-content .subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.about .about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about .about-content .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .personal-info {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.about .personal-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about .personal-info .info-item .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .personal-info .info-item .value {
  font-weight: 600;
  color: var(--heading-color);
}

.about .signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about .signature .signature-image {
  max-width: 150px;
}

.about .signature .signature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

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

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skill-box {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.skills .skill-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.skills .skill-box p {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  opacity: 0.6;
}

.skills .skill-box .progress {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50px;
  height: 8px;
  margin-top: 5px;
  overflow: hidden;
}

.skills .skill-box .progress .progress-bar {
  background-color: var(--accent-color);
  height: 100%;
  position: relative;
  border-radius: 50px;
  transition: 0.9s;
  width: 1px;
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-wrapper .resume-block {
  margin-bottom: 3rem;
}

.resume .resume-wrapper .resume-block:last-child {
  margin-bottom: 0;
}

.resume .resume-wrapper .resume-block h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.resume .resume-wrapper .resume-block h2 span {
  color: var(--accent-color);
}

.resume .resume-wrapper .resume-block .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

.resume .resume-wrapper .timeline {
  position: relative;
}

.resume .resume-wrapper .timeline::before {
  content: "";
  position: absolute;
  left: 20%;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.resume .resume-wrapper .timeline .timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}

.resume .resume-wrapper .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-left {
  width: 20%;
  padding-right: 3rem;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-left .company {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-left .period {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: calc(20% + 1px);
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right {
  width: 70%;
  padding-left: 3rem;
  margin-top: -4px;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right .position {
  color: var(--heading-color);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right .description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right ul {
  padding-left: 15px;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right ul li {
  padding-bottom: 12px;
}

@media (max-width: 992px) {
  .resume .resume-wrapper .resume-block h2 {
    font-size: 2rem;
  }

  .resume .resume-wrapper .timeline::before {
    left: 1rem;
  }

  .resume .resume-wrapper .timeline .timeline-item {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .resume .resume-wrapper .timeline .timeline-item .timeline-left {
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-left: 2.5rem;
    margin-bottom: 1.6rem;
    margin-top: -4px;
  }

  .resume .resume-wrapper .timeline .timeline-item .timeline-dot {
    left: calc(1rem + 1px);
  }

  .resume .resume-wrapper .timeline .timeline-item .timeline-right {
    width: 100%;
    padding-left: 2.5rem;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-container {
  margin-bottom: 40px;
}

.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 30px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  color: var(--default-color);
  transition: all 0.3s ease-in-out;
}

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

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

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

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

.portfolio .portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card:hover .portfolio-overlay .portfolio-actions {
  transform: translateY(0);
}

.portfolio .portfolio-card .portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio .portfolio-card .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

.portfolio .portfolio-card .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions {
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  display: flex;
  gap: 15px;
}

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

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio .portfolio-card .portfolio-content {
  padding: 25px;
}

.portfolio .portfolio-card .portfolio-content .category {
  font-size: 14px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.portfolio .portfolio-card .portfolio-content h3 {
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.portfolio .portfolio-card .portfolio-content h3:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-card .portfolio-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    padding: 6px 15px;
  }

  .portfolio .portfolio-card .portfolio-content {
    padding: 20px;
  }

  .portfolio .portfolio-card .portfolio-content h3 {
    font-size: 18px;
  }

  .portfolio .portfolio-card .portfolio-content p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 100px 0;
  position: relative;
}
.shadow-for-service::before{
      position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    clear: both;
    content: "";
    height: 20px;
    background-color: #0000008f;
    filter: blur(20px);
}

.services .servies-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.services .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.services .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-item {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
    text-align: center;
    height: 250px;
    display: grid;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.services .service-item:hover {
  transform: scale(1.05);
}

.services .service-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 15px;
}

.services .service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.services .service-item h3 a {
  color: var(--heading-color);
}

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

.services .service-item p {
     font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    text-align: justify;
    padding: 0;
    margin: 0;
    transition: 0.4s ease-in-out;
}
/*.services .service-item:hover p{
  display: block;
}*/
@media (max-width: 991px) {
  .services h2 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .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 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .section-category {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .content h2 {
  font-weight: 700;
  line-height: 1.2;
}

.contact .content .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact .contact-info .info-item {
  font-size: 1.1rem;
}

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

.contact .contact-info .map-link {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact .contact-info .map-link i {
  transition: transform 0.3s ease;
}

.contact .contact-info .map-link:hover {
  color: var(--accent-color);
}

.contact .contact-info .map-link:hover i {
  transform: translateX(5px);
}

.contact .contact-form {
  background-color: var(--surface-color);
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.75rem 1.25rem;
  border-color: #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

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

.contact .contact-form .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact .contact-form .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.contact .contact-form .btn-submit:active {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-details-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.service-details .service-details-slider .swiper-wrapper {
  height: auto !important;
}

.service-details .service-details-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2;
}

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--contrast-color);
  opacity: 0.5;
  transition: 0.3s;
}

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 20px;
  border-radius: 5px;
}

.service-details .content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-details .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.service-details .content .features .feature-box {
  padding: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s;
}

.service-details .content .features .feature-box:hover {
  transform: translateY(-5px);
}

.service-details .content .features .feature-box i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
}

.service-details .content .features .feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.service-details .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.service-details .service-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-info .info-item {
  margin-bottom: 25px;
}

.service-details .service-info .info-item:last-child {
  margin-bottom: 0;
}

.service-details .service-info .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.service-details .service-info .info-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.service-details .service-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.service-details .related-services {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.service-details .related-services h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .related-services .service-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .related-services .service-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-details .related-services .service-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.service-details .related-services .service-item h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-details .related-services .service-item h5 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.service-details .related-services .service-item h5 a:hover {
  color: var(--accent-color);
}

.service-details .related-services .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-size: 14px;
}

@media (max-width: 991px) {

  .service-details .service-info,
  .service-details .related-services {
    margin-top: 30px;
  }
}

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












/* Section */
.pr-section {
  background: #f9fafc;
  font-family: 'Inter', sans-serif;
}

.pr-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pr-subtitle {
  max-width: 800px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 1rem;
}

/* Layout wrapper */
.pr-wrapper {
  display: flex;
  gap: 1.5rem;
}

/* Columns */
.pr-left,
.pr-middle,
.pr-right {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  flex: 1;
  min-width: 280px;
}
.pr-left.special
{
      display: grid;
    align-items: center;
    align-content: space-between;
}
/* Left */
.pr-left-title {
  font-weight: 600;
}
.pr-left-text {
  font-size: 0.95rem;
  color: #374151;
}
.pr-btn {
  background: #000000;
  border: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.2s ease;
}
.pr-btn:hover {
  background: #0056b3;
}

/* Middle */
.pr-subheading {
  font-weight: 600;
  margin-bottom: 1rem;
}
.pr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pr-list li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #374151;
  position: relative;
  padding-left: 1.2rem;
}
.pr-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}

/* Right */
.pr-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pr-impact-box {
  background: #f9fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pr-impact-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.pr-impact-box h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}
.pr-impact-box p {
  font-size: 0.9rem;
  color: #374151;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .pr-wrapper {
    flex-direction: column;
  }
}




/* ============================================ */
/* BLOG SECTION CSS              */
/* ============================================ */

/* Section background for a light, clean feel */
.blog-section {
    background-color: #fff; /* A very light grey, Bootstrap's 'bg-light' color */
}

/* Custom styling for the blog cards */
.blog-card {
    border: none;
    border-radius: 1rem; /* Softer, more modern rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* A very subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
    overflow: hidden; /* Ensures the image corners are also rounded */
}

/* The sleek 'lift' effect on hover */
.blog-card:hover {
    transform: translateY(-8px); /* Lifts the card up slightly */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* A more pronounced shadow on hover */
}

/* Styling for the blog card image */
.blog-card-img {
    height: 220px;
    object-fit: cover; /* Ensures images fill the space without distortion */
}

/* Custom badge styling for categories */
.blog-badge {
    background-color: var(--bs-primary-bg-subtle);
    color: var(--bs-primary-text-emphasis);
    padding: 0.5em 0.75em;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Styling for the blog post title link */
.blog-title-link {
    color: var(--bs-body-color); /* Inherits the default text color */
    transition: color 0.2s ease-in-out;
}

.blog-title-link:hover {
    color: var(--bs-primary); /* Changes color to the primary theme color on hover */
}

/* Bootstrap's stretched-link makes the whole card clickable.
   This ensures the title link is visually prioritized. */
.blog-card .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}




.footer-menu{
      padding-left: 0;
    gap: 30px;
    font-weight: 600;
    margin: 0;
    list-style: none;
}

.footer-menu li a{
  color: #6c6f72;
}


@media (max-width: 768px) {
  .footer-menu {
  
    justify-content: center !important;
    margin-bottom: 12px;
}
.social-links{
  justify-content: center !important;
}

}
@media (max-width: 991px){
  .footer-menu li a{
        font-size: 12px;
  }
  .footer .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
}
}


.service-details-page .services{
  padding: 100px 0;
}




/* ====== PROCESS SECTION ====== */
.process {
  position: relative;
}

.text-gradient {
  background: linear-gradient(90deg, #2a9df4, #9b5cf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-timeline {
  position: relative;
  justify-content: space-between;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  height: 4px;
  background: #dcdcdc;
  z-index: 0;
}

.step {
      text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
    max-width: 180px;
    height: 200px;

}

.step .circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #dcdcdc;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.step.active .circle {
  background: linear-gradient(135deg, #808e99, #230946);
    box-shadow: 0 0 20px rgba(146, 81, 255, 0.4);
}

.step h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
  }
  .process-timeline::before {
    display: none;
  }
  .step {
    margin-bottom: 40px;
  }
}



/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .process-timeline {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
  }

  .process-timeline::before {
    display: none; /* Hide line on smaller devices */
  }

  .step {
    flex: 0 0 45%;
    max-width: 45%;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .step {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .step .circle {
    width: 70px;
    height: 70px;
    font-size: 20px;
  }
}



/* ====== PROGRESS CIRCLE SECTION ====== */
.progress-section {
  background: #f6fbff;
}

.progress-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(#2a9df4 0deg, #dcdcdc 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.circle-inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-value {
  font-size: 22px;
  font-weight: 600;
  color: #444;
}

/* Hover glow effect */
.progress-circle:hover {
  box-shadow: 0 6px 25px rgba(42, 157, 244, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .progress-circle {
    width: 130px;
    height: 130px;
  }
  .circle-inner {
    width: 100px;
    height: 100px;
  }
}





/* ===== BLOG DETAILS SECTION ===== */
.blog-details-section {
  background: #fafcff;
}

.blog-main img {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    border: 8px solid #FFF;
}

.blog-main h1 {
  font-size: 2rem;
}

.blog-main .meta span {
  font-size: 0.9rem;
  color: #777;
}

.blog-main p {
  color: #555;
  line-height: 1.7;
}

.blog-sidebar h4,
.top-blogs h4 {
  border-left: 4px solid #0d6efd;
  padding-left: 10px;
}

.blog-nav-item {
  text-decoration: none;
  color: #222;
  transition: all 0.3s ease;
}

.blog-nav-item:hover {
  color: #0d6efd;
  transform: translateX(5px);
}

.top-blog-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.top-blog-slider::-webkit-scrollbar {
  height: 6px;
}

.top-blog-slider::-webkit-scrollbar-thumb {
  background: #c8d6e5;
  border-radius: 5px;
}

.top-blog-item {
  min-width: 250px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 10px;
  transition: all 0.3s ease;
}

.top-blog-item:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
  .blog-details-section .row {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .blog-main h1 {
    font-size: 1.6rem;
  }
  .top-blog-item {
    min-width: 200px;
  }
}



.blog-sidebar .blog-nav a img
{
    width: 70px;
    box-shadow: 2px 2px 6px 0px #00000045;
    border: 3px solid #fff;
}




/* ===== CALL TO ACTION SECTION ===== */
.cta-section {
  position: relative;
  background:#f1f1f1;
  color: #fff;
  padding: 90px 0;
  overflow: hidden;
}

.cta-section .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(#0000008c, #262222);
    z-index: 0;
    backdrop-filter: blur(2px);
  }
.cta-section .r-image{
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
    opacity: 0.4;
}
.cta-section .l-image{
    position: absolute;
    z-index: 9;
    left: 0;
    bottom: 0;
    opacity: 0.4;
}
.cta-section .r-image img{
    height: 100%;
    width: 200px;
}
.cta-section .l-image img{
    height: 100%;
    width: 200px;
    transform: rotate(180deg);

}

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

.cta-section h3 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: #fff;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-section .btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  background: #fff;
  color:#000;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cta-section {
    padding: 80px 20px;
    background-attachment: scroll; /* disable fixed on mobile for smoothness */
  }

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



.counter-section {
    color: #fff;
    padding: 80px 0;
    position: relative;
    background: radial-gradient(#0000008c, #02020a);
  }
    .counter-box {
      padding: 30px 10px;
    border-radius: 0;
    transition: transform 0.3s 
ease, background 0.3s 
ease;
    border-right: 2px solid #fff;
    }
    /*.counter-box:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.12);
    }*/
    .counter {
      font-size: 4rem;
      font-weight: 700;
      color: #fff;
    }
    .counter-box p {
      margin-top: 10px;
      font-size: 1.1rem;
      color: #ccc;
    }

    .counter-section .r-image{
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
    opacity: 0.4;
}
.counter-section .l-image{
    position: absolute;
    z-index: 9;
    left: 0;
    bottom: 0;
    opacity: 0.4;
}

.counter-section .r-image img{
    height: 100%;
    width: 200px;
}
.counter-section .l-image img{
    height: 100%;
    width: 200px;
    transform: rotate(180deg);

}

.counter-box.special{
  border:none;

}

.services .service-item img{

    width: 4.5rem;
    color: var(--accent-color);
    display: inline-block;
    margin: 0 auto;
    margin-bottom: 15px;
}

.medium_class svg{
  margin-bottom: 3px;


}

.medium_class svg path{
fill: #6c6f72;


}

.medium_class:hover svg path{
  fill:#000;
}

#hero .container{
  position: relative;
  z-index: 99;
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgb(197 197 197);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}


.service-details .service-details-slider img{
  height: 300px;
  object-fit: cover;
}
.service-details .service-details-slider.special img{
  margin-top: 40px;
  border-radius: 10px;
}
.service-details .content{
  margin-top: 40px;
}

.service-details .cta-buttons .btn.btn-outline {
    border: 2px solid
 color-mix(in srgb, var(--accent-color), transparent 70%);
    color: var(--accent-color);
    background: transparent;
}
.service-details .cta-buttons .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.service-details .cta-buttons .btn.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}


.cta-new .bg-cta img{
  width: 100%;
  border-radius: 20px;

}

.cta-new{
  position: relative;
  z-index: 9;
}

.cta-content{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  z-index: 99;
  width: 60%;
}
.cta-button-new
{
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 30px;
    border-radius: 30px;
    transition: 0.3s;
}
.cta-button-new:hover{
  background: #fff;
}
.cta-head
{
    font-size: 1.5rem;
}

.cta-content .stat-wrap{
  display: grid;
  grid-template-columns:repeat(3, 1fr) ;
  justify-content: center;
  align-items: center;
  position: relative;

}
.cta-content .stat-wrap:before{
     position: absolute;
    content: "";
    clear: both;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    z-index: -1;
}
.cta-content .stat-wrap .stat-box h4{
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.cta-content .stat-wrap .stat-box p{
  text-align: center;
  margin:0;
}
.services.business .service-item
{
    background-image: linear-gradient(45deg, #626262, #000000);
    position: relative;
    overflow: hidden;
}

.services.business .service-item::before{
  position: absolute;
  clear: both;
  content: "";
  right: 0;
  top: 0;
  background-image: url('assets/img/bgsn.png');
  background-size:100% ;

}
.services.business .service-item h3{
  color: #fff;
}
.services.business .service-item p{
  color: #fff;
}
.services.business .service-item img
{
  filter: brightness(0) saturate(100%) invert(91%) sepia(10%) saturate(0%) hue-rotate(199deg) brightness(111%) contrast(100%);
}
.workflow-process {
      min-height: 356px;
      position: relative;
    }

    .workflow-process .workflow-process-item {
      height: 178px;
      padding-bottom: 2.8rem;
      padding-top: 0;
      text-align: center;
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-direction: column !important;
      flex-direction: column !important;
      position: relative;
    }

    .workflow-process .workflow-process-item:after {
      content: "";
      position: absolute;
      display: block;
      height: 6px;
      width: 100%;
      left: 0;
      bottom: -3px;
      z-index: 0;
      background: #ffffff;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
      border-radius: 999px;
    }

    .workflow-process .workflow-process-item.align-self-end:after {
      bottom: auto;
      top: -3px;
    }

    .workflow-process .workflow-process-item:first-child:after {
      left: 50%;
      width: 50%;
    }

    .workflow-process .workflow-process-item:last-child:after {
      width: 50%;
    }

    .workflow-process .workflow-process-item .workflow-process-badge {
      background: #ffffff;
      position: absolute;
      bottom: 0;
      left: calc(50% - 23px);
      transform: translateY(50%);
      width: 46px;
      height: 46px;
      line-height: 46px;
      text-align: center;
      font-size: 24px;
      font-weight: 500;
      display: inline-block;
      border-radius: 50%;
      z-index: 1;
      box-shadow: 1px 2px 17px 2px #0000002e !important;
    }

    .workflow-process .workflow-process-item.align-self-end {
      padding-top: 2.8rem;
      padding-bottom: 0;
    }

    .workflow-process .workflow-process-item.align-self-end .workflow-process-badge {
      top: 0;
      bottom: auto;
      transform: translateY(-50%);
    }

    .workflow-process.workflow-process-dark
      .workflow-process-item
      .workflow-process-badge {
      color: #ffffff;
      background: rgba(0, 0, 0, 0.9);
    }

    .workflow-process.workflow-process-dark
      .workflow-process-item::after {
      background: rgba(0, 0, 0, 0.7);
      box-shadow: 0 0.5rem 1rem rgba(250, 250, 250, 0.08) !important;
    }

    @media (max-width: 991.98px) {
      .workflow-process .workflow-process-item {
        margin-bottom: 20px;
        height: auto;
        padding-top: 1.8rem;
      }
      .workflow-process .workflow-process-item:last-child {
        margin-bottom: 0;
        height: auto;
        padding-bottom: 0;
      }
      .workflow-process .workflow-process-item:after {
        content: none;
      }
      .workflow-process .workflow-process-item .workflow-process-badge {
        bottom: auto;
        top: 0;
        transform: translateY(-50%);
      }
    }



.workflow-process-item i
 {
    color: #2f2f30;
    font-size: 40px;
}




.industries-section {
  background: #f1f1f1;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.industries-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Rows */
.industries-row {
  display: flex;
  gap: 24px;
}

/* Middle row offset to create the staggered structure */
.industries-row.offset {
  margin-left: 90px;
}

/* Cards */
.industry-card {
  width: 180px;
  height: 160px;
  background: #dedede;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
}

.industry-icon {
  font-size: 2rem;   /* adjust icon size here */
  margin-bottom: 10px;
}

/* Responsive: stack / center on smaller screens */
@media (max-width: 991px) {
  .industries-grid {
    align-items: center;
  }

  .industries-row,
  .industries-row.offset {
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.industries-section .right-image img{
  width: 100%;


.workflow-process h3{
  font-size: 16px!important;
}
}

.why-us{
  /*background-color: #2c2c2c !important;*/
  position: relative;

}

.why-us .floating-image
{
    bottom: 0;
    position: absolute;
    right: 0;
    width: 30%;
}
.why-us .floating-image img
{
        width: 100%;
    opacity: 0.2;
}

.why-us .floating-image2
{
    top: 0;
    position: absolute;
    left: 0;
    width: 30%;
}
.why-us .floating-image2 img
{
    width: 100%;
}
.why-us p{
  text-align: justify;
  width:100%;
  padding-right: 150px;
}


.section-title.special{
  padding-bottom: 0;
}





.proc6-section {
    background: #f5faff;
    padding: 60px 0;
    font-family: "Poppins", sans-serif;
}

.proc6-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.proc6-title {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    margin-bottom: 45px;
}

.proc6-steps {
        display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: start;
    gap: 20px;
    justify-content: center;
}

.proc6-step {
  position: relative;
        background: transparent;
    padding: 25px 20px;
    width: 80%;
    min-width: 200px;
    border-radius: 12px;
    transition: 0.3s ease;
    margin: 0 auto;
}
.proc6-step::after{
     position: absolute;
    right: 0;
    top: 0;
    transform: translate(100%);
    content: ">";
    clear: both;
    font-size: 50px;
}

.proc6-steps .proc6-step:nth-child(6)::after{
  display: none;
}
/*.proc6-steps .proc6-step:nth-child(4)::after, .proc6-steps .proc6-step:nth-child(5)::after{
      transform: rotate(180deg);
          right: -20%;
    top: 10%;
}*/
.proc6-step:hover {
    transform: translateY(-4px);
}

.proc6-icon {
    width: 55px;
    margin-bottom: 15px;
}
.proc6-step::before{
          position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-51%, 15%);
    clear: both;
    content: "";
    background: transparent;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0px -3px 1px 1px #000000bf;
}
.proc6-step h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.proc6-step p {
    font-size: 12px;
    color: #555;
    text-align: center;
    height: 70px;
}

.proc6-arrow {
    font-size: 32px;
    color: #444;
    font-weight: 400;
    flex-shrink: 0;
}

/* responsive breakpoint */
@media (max-width: 992px) {
    .proc6-arrow {
        display: none;
    }
    .proc6-step {
        width: 46%;
    }
}

@media (max-width: 576px) {
    .proc6-step {
        width: 100%;
    }
}



.gtco-testimonials {
  position: relative;
  padding: 60px 0;
  

  .owl-stage-outer {
    padding: 30px 0;
  }

  .owl-nav {
    display: none;
  }

  .owl-dots {
    text-align: center;

    span {
      position: relative;
      height: 10px;
      width: 10px;
      border-radius: 50%;
      display: block;
      background: #fff;
      border: 2px solid #01b0f8;
      margin: 0 5px;
    }

    .active {
      box-shadow: none;

      span {
        background: #01b0f8;
        box-shadow: none;
        height: 12px;
        width: 12px;
        margin-bottom: -1px;
      }
    }
  }

  .card {
    background: #fff;
    box-shadow: 0 8px 30px -7px #c9dff0;
    margin: 0 20px;
    padding: 0 10px;
    border-radius: 20px;
    border: 0;

    .card-img-top {
      max-width: 100px;
      border-radius: 50%;
      margin: 15px auto 0;
      box-shadow: 0 8px 20px -4px #95abbb;
      width: 100px;
      height: 100px;
    }

    h5 {
      color: #01b0f8;
      font-size: 21px;
      line-height: 1.3;

      span {
        font-size: 18px;
        color: #666666;
      }
    }

    p {
      font-size: 18px;
      color: #555;
      padding-bottom: 15px;
    }
  }

  .active {
    opacity: 0.5;
    transition: all 0.3s;
  }

  .center {
    opacity: 1;

    h5 {
      font-size: 24px;

      span {
        font-size: 20px;
      }
    }

    .card-img-top {
      max-width: 100%;
      height: 120px;
      width: 120px;
    }
  }
}

@media (max-width: 767px) {
  .gtco-testimonials {
    margin-top: 20px;
  }
}

.owl-carousel {
  .owl-nav button {
    &.owl-next, &.owl-prev {
      outline: 0;
    }
  }

  button.owl-dot {
    outline: 0;
  }
}

@media (max-width: 991px){
  .hero .content .lead {
    font-size: 1.0rem;
}
.bdb
{
  border-bottom: 1px solid #00000029;
}
.hero-image img{
  width: 87%;
 }
 .services .service-item img {
    width: 2.5rem;
}
.about .about-image img
{
    width: 100%;
    margin-top: 50px;
}
.why-us p {
    padding-right: 0;
}
.why-us .floating-image {
    width: 70%;
}
.why-us .floating-image img {
    opacity: 0.1;
}
.proc6-steps {
    grid-template-columns: repeat(1, 1fr);
}
.proc6-step::after {
    display: none;
}
.cta-new {
    height: 380px;
}
.cta-new .bg-cta img {
    height: 380px;
    object-fit: cover;
}
.cta-head.font-weight-600{
  margin-top: 40px;
    font-size: 1.2rem;
}
}
@media (max-width: 767px){
  .hero-image img{
  width: 75%;
 }

 .faq.section{
  padding-top: 0!important;
 }
}



/* Unique class to avoid conflicts */
.uniq-srv {
  background: #0a0a0a;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  color: #fff;
  transition: all 0.35s ease;
  overflow: hidden;
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Icon */
.uniq-srv img {
  width: 65px;
  margin: 0 auto 10px;
  transition: transform 0.35s ease;
}

/* Title */
.uniq-srv h3 {
  font-size: 18px;
  margin-bottom: 0;
  transition: color 0.35s ease;
}

/* Paragraph hidden initially */
.uniq-srv p {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.45s ease;
  font-size: 15px;
  margin-top: 15px;
}
.uniq-srv:hover p{
  font-size: 12px;
}
/* Hover Effects */
.uniq-srv:hover {
  background: #121212;
  transform: translateY(-5px);
}

/* Smooth expand paragraph */
.uniq-srv:hover p {
  opacity: 1;
  max-height: 200px; /* Enough for 4–5 lines */
}

/* Icon zoom on hover */
.uniq-srv:hover img {
  transform: scale(0.9);
}
.services .service-item:hover h3 {
    font-size: 0.9rem;
  
}

  .new-text-color p{
    color: #ffffff !important;
  }
  .new-text-color p span{
    color: #ffffff !important;
  }