/**
* Template Name: Strategy
* Template URL: https://bootstrapmade.com/strategy-bootstrap-agency-template/
* Updated: Jun 06 2025 with Bootstrap v5.3.6
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Nexa", Arial, sans-serif;
  --heading-font: "Nexa", Arial, sans-serif;
  --nav-font: "Nexa", Arial, 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: #000; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e0e9f2; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #fada5e; /* 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: #1b262c; /* 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: rgba(
    255,
    255,
    255,
    0.8
  ); /* The default color of the main navmenu links */
  --nav-hover-color: #fada5e; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #29343a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #29343a; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(
    255,
    255,
    255,
    0.8
  ); /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #fada5e; /* 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: #0d1d26;
  --surface-color: #16262f;
}

.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);
}

/* 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 {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0; /* slightly reduced for tighter layout */
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px 5px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center; /* centers logo vertically */
}

.header .logo img {
  height: 60px; /* real logo height */
  width: auto;
  padding-right: 40px;
  transform: scale(1.7); /* visually larger but header stays same */
  transform-origin: left center;
}

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #000;
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #000;
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@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 .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .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: 8px 15px;
    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: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: 4.2px 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;
  }
}/*--------------------------------------------------------------
# Footer Styling (Responsive + Centered Logo)
--------------------------------------------------------------*/
/* ============================
   FOOTER BASE (FULL WIDTH)
============================ */
.footer {
  width: 100%;
  margin: 0;
  padding: 20px 0 30px;
  background-color: #060606;
  color: #fff;
  font-size: 14px;
  overflow-x: hidden; /* 🔥 removes side scroll */
}

/* 🔥 OVERRIDE BOOTSTRAP CONTAINER INSIDE FOOTER */
.footer .container {
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

/* ============================
   FOOTER TOP
============================ */
.footer .footer-top {
  padding-bottom: 40px;
  border: none;
}

/* ============================
   FOOTER ABOUT
============================ */
.footer .footer-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 0;
  padding: 0;
}

.footer .footer-about .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer .footer-logo {
  max-width: 120px;
  min-height: 20px;
  /* width: auto; */
  display: block;
  margin: 0 0 6px 0;
}

/* Company Name */
.footer .sitename {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}

/* About Text */
.footer .footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 10px 0 20px;
  text-align: left
}

/* ============================
   SOCIAL LINKS
============================ */
.footer .social-links {
  display: flex;
  gap: 10px;
}

.footer .social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s ease;
}

.footer .social-links a:hover {
  background: var(--accent-color, #fada5e);
  color: #000;
  border-color: var(--accent-color, #fada5e);
  transform: translateY(-3px);
}

/* ============================
   FOOTER HEADINGS
============================ */
.footer .footer-links h4,
.footer .footer-contact h4 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer .footer-links h4::after,
.footer .footer-contact h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--accent-color, #fada5e);
  display: block;
  margin-top: 8px;
}

/* ============================
   FOOTER LINKS
============================ */
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links li {
  margin-bottom: 8px;
}

.footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer .footer-links a:hover {
  color: var(--accent-color, #fada5e);
}

/* ============================
   CONTACT
============================ */
.footer .footer-contact p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.footer .footer-contact span {
  color: var(--accent-color, #fada5e);
  font-weight: 700;
}

.footer .footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer .footer-contact a:hover {
  color: var(--accent-color, #fada5e);
}

/* ============================
   COPYRIGHT
============================ */
.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================
   TABLET
============================ */
@media (max-width: 992px) {
  .footer .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* ============================
   MOBILE (PERFECT)
============================ */
@media (max-width: 576px) {
  .footer {
    padding: 25px 0 20px;
  }

  .footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer .footer-logo {
    max-height: 130px;
  }

  .footer .sitename {
    font-size: 16px;
  }

  .footer .social-links a {
    width: 34px;
    height: 34px;
  }

  .footer .footer-links a,
  .footer .footer-contact p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# 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); */
  color: #000;
  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 (Improved)
--------------------------------------------------------------*/

/* Page Title - Modern Style */
.page-title {
  position: relative;
  padding: 150px 20px 90px;
  color: #fff;
  overflow: hidden;
}

.page-title .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.page-title .content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.page-title h1 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fada5e;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-title p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-title .breadcrumbs {
  text-align: center;
}

.page-title .breadcrumbs ol {
  display: inline-flex;
  list-style: none;
  padding: 0;
  white-space: nowrap;
  margin: 0;
  font-size: 15px;
  color: #ccc;
}

.page-title .breadcrumbs ol li + li::before {
  content: "›";
  margin: 0 8px;
  color: #fada5e;
}

.page-title .breadcrumbs ol li a {
  color: #fada5e;
  text-decoration: none;
  transition: color 0.3s;
}

.page-title .breadcrumbs ol li a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/

/* Large Laptops & Tablets */
@media (max-width: 1200px) {
  .page-title h1 {
    font-size: 46px;
  }
  .page-title {
    padding: 130px 20px 80px;
  }
}

/* Tablets - 992px */
@media (max-width: 992px) {
  .page-title h1 {
    font-size: 38px;
  }
  .page-title p {
    font-size: 15px;
  }
  .page-title {
    padding: 120px 20px 70px;
  }
}

/* Small Tablets & Large Mobiles */
@media (max-width: 768px) {
  .page-title h1 {
    font-size: 32px;
  }
  .page-title p {
    font-size: 14.5px;
    line-height: 1.65;
  }
  .breadcrumbs ol {
    font-size: 14px;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .page-title {
    padding: 100px 15px 60px;
  }
  .page-title h1 {
    font-size: 26px;
  }
  .page-title p {
    font-size: 14px;
  }
  .page-title .breadcrumbs ol {
    font-size: 12px; /* smaller text for mobile */
    gap: 2px; /* tighter spacing */
  }

  .page-title .breadcrumbs ol li + li::before {
    margin: 0 2px; /* reduce arrow margin */
  }
}

/* Extra Small Mobile Devices (<360px) */
@media (max-width: 360px) {
  .page-title h1 {
    font-size: 22px;
  }
  .page-title p {
    font-size: 13px;
  }
}

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

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

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

/* Small uppercase heading above the main title */
.section-title h2 {
  font-size: 16px; /* slightly larger for readability */
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

/* Decorative line under the h2 */
.section-title h2::after {
  content: "";
  display: block;
  width: 120px; /* length of the line */
  height: 2px; /* thickness */
  background: var(--accent-color);
  margin: 10px 0 0 0; /* top margin and align to left */
}

/* Main title / subtitle */
.section-title div {
  font-size: 28px; /* main visible title size */
  font-weight: 700;
  margin-top: 10px;
  color: var(--heading-color);
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .section-title div {
    font-size: 24px;
  }

  .section-title h2 {
    font-size: 14px;
  }

  .section-title h2::after {
    width: 100px;
  }
}

@media (max-width: 576px) {
  .section-title div {
    font-size: 20px;
  }

  .section-title h2 {
    font-size: 12px;
  }

  .section-title h2::after {
    width: 80px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 10px
  );
  z-index: 1;
}

.hero .container,
.hero .container-fluid {
  position: relative;
  z-index: 2;
}

.hero .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

@media (max-width: 991px) {
  .hero .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
}

.hero .agency-name {
  margin-bottom: 1.5rem;
}

.hero .agency-name h5 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--contrast-color);
  margin: 0;
}

.hero .main-heading {
  margin-bottom: 2rem;
}

.hero .main-heading h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
}

@media (max-width: 1200px) {
  .hero .main-heading h1 {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .hero .main-heading h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero .main-heading h1 {
    font-size: 2.5rem;
  }
}

.hero .divider {
  width: 60%;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hero .divider {
    width: 100%;
  }
}

.hero .description {
  margin-bottom: 2.5rem;
}

.hero .description p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.hero .cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 40%);
  color: var(--default-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero .cta-button .btn span {
  margin-right: 0.5rem;
}

.hero .cta-button .btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero .cta-button .btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #000;
}

.hero .cta-button .btn:hover i {
  transform: translateX(5px);
}

.hero .visual-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero .visual-content {
    flex-direction: column;
  }
}

.hero .fluid-shape {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.hero .fluid-shape .fluid-img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

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

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

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

.hero .stats-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 1.5rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero .stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    width: 90%;
  }
}

.hero .stats-card .stats-number h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero .stats-card .stats-label {
  margin-top: 0.5rem;
}

.hero .stats-card .stats-label p {
  font-size: 0.9rem;
  margin: 0;
}

.hero .stats-card .stats-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.hero .stats-card .stats-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero .stats-card .stats-arrow a:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about .about-image {
  border-radius: 8px;
  overflow: hidden;
}

.about .about-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 140px;
}

.about .about-image .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about .about-image .experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .about .about-image .experience-badge {
    right: 0;
    bottom: 20px;
    padding: 1rem;
    min-width: 120px;
  }

  .about .about-image .experience-badge .years {
    font-size: 2rem;
  }
}

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

@media (max-width: 768px) {
  .about .about-content h2 {
    font-size: 1.8rem;
  }
}

.about .about-content .lead {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.about .about-content p {
  margin-bottom: 1rem;
}

.about .about-content .feature-item {
  padding: 1.25rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

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

.about .about-content .feature-item i {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  display: block;
}

.about .about-content .feature-item h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.about .about-content .feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about .about-content .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  color: #000;
}

.about .about-content .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.about .testimonial-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about .testimonial-section .testimonial-intro h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.about .testimonial-section .testimonial-intro p {
  margin-bottom: 1.5rem;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons {
  display: flex;
  gap: 10px;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about
  .testimonial-section
  .testimonial-intro
  .swiper-nav-buttons
  button:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button i {
  font-size: 1.25rem;
}

.about .testimonial-section .testimonial-slider {
  overflow: hidden;
}

.about .testimonial-section .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.about .testimonial-section .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about .testimonial-section .testimonial-item .rating {
  color: #fada5e;
  font-size: 1rem;
}

.about .testimonial-section .testimonial-item p {
  font-style: italic;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.about .testimonial-section .testimonial-item .client-info .client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.about .testimonial-section .testimonial-item .client-info h6 {
  font-weight: 600;
}

.about .testimonial-section .testimonial-item .client-info span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-header {
  margin-bottom: 60px;
}

.services .service-header .service-intro .service-heading {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.services .service-header .service-intro .service-heading div {
  display: block;
  line-height: 1.5;
  font-weight: 900;
  position: relative;
}

.services .service-header .service-intro .service-heading span {
  display: block;
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services .service-header .service-intro .service-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .services .service-header .service-intro .service-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.services .service-header .service-summary p {
  margin-bottom: 25px;
  color: var(--default-color);
}

.services .service-header .service-summary .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: #000;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-header .service-summary .service-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.services .service-header .service-summary .service-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: #000;
}

.services .service-header .service-summary .service-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .services .service-header .service-summary {
    margin-top: 30px;
  }
}

.services .service-card {
  padding: 40px 40px 40px 40px;
  margin-bottom: 30px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.services .service-card .service-icon {
  margin-bottom: 25px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 64px;
  height: 64px;
}

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

.services .service-card h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;

  font-weight: 900;
}

.services .service-card h3 a {
   color: #fada5e;
  transition: color 0.3s ease;
}

.services .service-card h3 a span {
  display: block;
}

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

.services .service-card p {
  color: var(--default-color);
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.services .service-card .card-action {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.services .service-card .card-action i {
  font-size: 24px;
  color: #000;
  transition: transform 0.3s ease;
}

.services .service-card .card-action:hover i {
  transform: rotate(45deg);
}

.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--surface-color);
  clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  border-color: transparent;
}

.services .service-card:hover::before {
  opacity: 1;
  visibility: visible;
  background-color: var(--surface-color);
}

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

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

.services .service-card:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services .service-card:hover .service-icon i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 150px 25px 25px;
  }

  .services .service-card h3 {
    font-size: 24px;
  }

  .services .service-card .service-icon {
    position: absolute;
    top: 40px;
    left: 25px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0 50px;
  }
}
.service-card .readmore-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  padding: 10px 24px;
  background: #000;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: 0.35s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.service-card:hover .readmore-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.steps .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.steps .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

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

.steps .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.steps .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.steps .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.steps .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.steps .step-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.steps .step-info:hover {
  transform: translateY(-5px);
}

.steps .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.steps h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.steps p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .steps .steps-wrapper::before {
    left: 25px;
  }

  .steps .step-item .step-content {
    flex-direction: row !important;
  }

  .steps .step-icon {
    width: 60px;
    height: 60px;
  }

  .steps .step-icon i {
    font-size: 24px;
  }

  .steps .step-info {
    padding: 20px;
  }

  .steps h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .steps .step-content {
    gap: 20px;
  }

  .steps .step-icon {
    width: 50px;
    height: 50px;
  }

  .steps .step-icon i {
    font-size: 20px;
  }

  .steps .step-info {
    padding: 15px;
  }

  .steps h3 {
    font-size: 1.2rem;
  }

  .steps p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 80px;
  position: relative;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 80px;
}

.call-to-action .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .features .feature-item span {
  font-weight: 500;
}

.call-to-action .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #000;
}

.call-to-action .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);
}

.call-to-action .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #000;
  transform: translateY(-2px);
}

.call-to-action .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action .decoration .circle-1,
.call-to-action .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 2rem;
  }

  .call-to-action .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

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

/*--------------------------------------------------------------
# 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);
}

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

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 25px;
  cursor: pointer;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-filters li i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

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

.portfolio .portfolio-filters li:hover i {
  transform: scale(1.1);
}

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

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    gap: 10px;
  }

  .portfolio .portfolio-filters li {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.portfolio .portfolio-entry {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.portfolio .portfolio-entry .entry-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.portfolio .portfolio-entry .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .overlay-content {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-meta {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links {
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  color: var(--accent-color);
  border-radius: 12px;
  font-size: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.portfolio
  .portfolio-entry
  .entry-image
  .entry-overlay
  .entry-links
  a:nth-child(1) {
  transition-delay: 0.1s;
}

.portfolio
  .portfolio-entry
  .entry-image
  .entry-overlay
  .entry-links
  a:nth-child(2) {
  transition-delay: 0.2s;
}

.portfolio .portfolio-entry:hover .entry-image img {
  transform: scale(1.05);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .overlay-content {
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .entry-links a {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .portfolio .portfolio-entry .entry-image .entry-overlay {
    padding: 20px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.portfolio .portfolio-item .entry-image {
  aspect-ratio: 4/3;
}

@media (min-width: 1200px) {
  .portfolio .portfolio-item .entry-title {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .portfolio .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 992px) {
  .portfolio .row {
    margin-left: -12px;
    margin-right: -12px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 1200px) {
  .portfolio .row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1200px) {
  .portfolio .entry-overlay {
    padding: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  transition: 0.3s;
}

.team .team-member:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-member .member-img {
  flex: 0 0 200px;
  overflow: hidden;
}

.team .team-member .member-img img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

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

.team .team-member .member-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.team .team-member .member-info span {
  font-size: 0.9rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  display: block;
  margin-bottom: 15px;
}

.team .team-member .member-info p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info .social {
  display: flex;
  gap: 10px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  color: var(--heading-color);
  transition: 0.3s;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team .team-member .member-info .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 767px) {
  .team .team-member {
    flex-direction: column;
  }

  .team .team-member .member-img {
    flex: auto;
  }

  .team .team-member .member-img img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .team .team-member .member-info {
    text-align: center;
  }

  .team .team-member .member-info .social {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-border-radius: 20px;
}

.pricing .row {
  justify-content: center;
}

.pricing .pricing-card {
  height: 100%;
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.pricing .pricing-card.popular {
  border: 2px solid var(--accent-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .pricing-card .popular-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.pricing .plan-header {
  padding: 30px 30px 20px;
  text-align: center;
}

.pricing .plan-header .plan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.pricing .plan-header .plan-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.pricing .plan-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing .plan-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .plan-pricing {
  text-align: center;
  padding: 10px 30px 20px;
  position: relative;
}

.pricing .plan-pricing .currency {
  font-size: 24px;
  vertical-align: top;
  line-height: 1;
  color: var(--heading-color);
  font-weight: 600;
}

.pricing .plan-pricing .amount {
  font-size: 60px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.pricing .plan-pricing .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .plan-features {
  padding: 20px 30px;
  flex: 1;
}

.pricing .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .plan-features ul li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.pricing .plan-features ul li i {
  font-size: 18px;
}

.pricing .plan-features ul li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.pricing .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-cta {
  padding: 10px 30px 30px;
  text-align: center;
}

.pricing .plan-cta .btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .pricing .pricing-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing .plan-pricing .amount {
    font-size: 48px;
  }

  .pricing .plan-header {
    padding: 25px 20px 15px;
  }

  .pricing .plan-features,
  .pricing .plan-pricing,
  .pricing .plan-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  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 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 – Clean Hover with Icon Color Change
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.35s ease;
}

.contact .contact-info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: #16262f;
  /* background-color: #fff; Light lift effect */
}

/* Icon design */
.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Hover effect: icon turns black */
.contact .contact-info-box:hover .icon-box {
  background-color: #fada5e;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

/* Icon itself */
.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

/* Text section */
.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fada5e;
  transition: color 0.3s ease;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

/* Change text color slightly on hover */
.contact .contact-info-box:hover .info-content h4 {
  color: #fada5e;
}

.contact .contact-info-box:hover .info-content p {
  color: #fff;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -250px;
  margin-bottom: 60px;
  z-index: 10;
}

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

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea + i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

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

.contact
  .contact-form-wrapper
  .form-group
  .input-with-icon
  .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact
  .contact-form-wrapper
  .form-group
  .input-with-icon
  textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  /* color: var(--contrast-color); */
  color: #000;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# 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-right: 6px;
  color: var(--accent-color);
}

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

.portfolio-details .portfolio-details-content .project-website {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.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: var(--section-spacing);
}
.project-overview-img {
  width: 100%;
  max-width: 650px;
  display: block;
  margin: 20px auto;
  border-radius: 14px;
  object-fit: cover;

  /* 3D Border */
  border: 1px solid #dcdcdc; /* light top border */
  box-shadow: 0px 4px 0px #b5b5b5,
    /* hard bottom shadow = 3D edge */ 0px 8px 18px rgba(0, 0, 0, 0.2); /* soft depth shadow */
  transition: 0.3s ease;
}

.project-overview-img:hover {
  transform: translateY(-6px);
  box-shadow: 4px 4px 4px 4px #fada5e, 0px 12px 22px rgba(0, 0, 0, 0.28);
}

.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 {
  padding: 1rem;
  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-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::after {
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.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: 1rem;
  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 {
  display: inline-flex; /* ensures underline fits text width */
  align-items: center;
  font-size: 1.25rem;
  color: #fada5e;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;

  /* Button-like underline */
  padding-bottom: 6px;
  border-bottom: 2px double #fff;
}

.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 {
  list-style: none;
  padding-left: 0;
}

.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-right: 10px;
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project {
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: #000;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.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: 12px 28px;
  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;
}

.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 {
    padding: 2rem 0 0 0;
  }

  .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 .project-meta .date-client {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-header {
  margin-bottom: 40px;
}

.service-details .service-header h1 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #fada5e;
  text-transform: uppercase;
  position: relative;
}

.service-details .service-header h1:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.service-details .service-header .service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 25px;
}

.service-details .service-header .service-meta span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-header .service-meta span i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 16px;
}

.service-details .service-header .lead {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-tabs {
  margin-bottom: 50px;
}

.service-details .service-tabs .nav-tabs {
  border-bottom: 2px solid
    color-mix(in srgb, var(--heading-color), transparent 90%);
  margin-bottom: 30px;
}

.service-details .service-tabs .nav-tabs .nav-item {
  margin-right: 5px;
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 12px 20px;
  font-weight: 600;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  position: relative;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 8px;
  font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details .service-tabs .nav-tabs .nav-link:hover {
  color: var(--heading-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link:hover:after {
  width: 30%;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link.active:after {
  width: 100%;
}

.service-details .service-tabs .tab-content .content-block h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.service-details .service-tabs .tab-content .content-block p strong {
  color: #e0d8d8;
}
/* Styled list for service content */
.content-block ul {
  margin: 16px 0;
  padding-left: 20px;
  list-style: none;
}

.content-block ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

/* Custom bullet */
.content-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #fada5e;
  border-radius: 50%;
}

.service-details .service-tabs .tab-content img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .process-timeline {
  position: relative;
  padding-left: 30px;
}

.service-details .service-tabs .tab-content .process-timeline:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 15px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item {
  position: relative;
  padding-bottom: 35px;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item:last-child {
  padding-bottom: 0;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item
  .timeline-marker {
  position: absolute;
  left: -30px;
  top: -5px;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item
  .timeline-content {
  padding-left: 10px;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item
  .timeline-content
  h4 {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item
  .timeline-content
  p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-tabs .tab-content .benefit-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.service-details .service-tabs .tab-content .benefit-card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .benefit-card:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon {
  transform: rotateY(180deg);
  background-color: var(--accent-color);
}

.service-details
  .service-tabs
  .tab-content
  .benefit-card:hover
  .benefit-icon
  i {
  color: var(--contrast-color);
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card h4 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-details .service-tabs .tab-content .benefit-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-gallery h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 700;
}

.service-details .service-gallery .service-details-slider {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.service-details .service-gallery .service-details-slider .portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-details
  .service-gallery
  .service-details-slider
  .portfolio-item:hover
  .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.service-details .service-gallery .service-details-slider .portfolio-item img {
  border-radius: 12px;
  transition: all 0.4s ease;
}

.service-details
  .service-gallery
  .service-details-slider
  .portfolio-item
  .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 30px 20px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.service-details
  .service-gallery
  .service-details-slider
  .portfolio-item
  .portfolio-info
  h5 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details
  .service-gallery
  .service-details-slider
  .portfolio-item
  .portfolio-info
  p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
  font-size: 14px;
}

.service-details .service-gallery .service-details-slider .swiper-pagination {
  padding-top: 5px;
  bottom: 0;
}

.service-details
  .service-gallery
  .service-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.service-details
  .service-gallery
  .service-details-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .action-card {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), black 20%) 100%
  );
  border-radius: 15px;
  padding: 35px 30px;
  color: #000;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.service-details .service-sidebar .action-card:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.service-details .service-sidebar .action-card:after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.service-details .service-sidebar .action-card h3 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-sidebar .action-card p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.service-details .service-sidebar .action-card .btn-primary {
  background-color: #000;
  color: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .action-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-sidebar .action-card .guarantee {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.service-details .service-sidebar .action-card .guarantee i {
  margin-right: 5px;
}

.service-details .service-sidebar .service-features-list {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .service-features-list h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid
    color-mix(in srgb, var(--heading-color), transparent 90%);
}

.service-details .service-sidebar .service-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .service-sidebar .service-features-list ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.service-details .service-sidebar .service-features-list ul li:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .service-features-list ul li i {
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
}

.service-details .service-sidebar .service-features-list ul li div {
  flex: 1;
}

.service-details .service-sidebar .service-features-list ul li div h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-sidebar .service-features-list ul li div p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  font-size: 14px;
}

.service-details .service-sidebar .testimonial-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .testimonial-card .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .testimonial-header i {
  font-size: 36px;
  color: var(--accent-color);
  opacity: 0.3;
}

.service-details
  .service-sidebar
  .testimonial-card
  .testimonial-header
  .rating {
  display: flex;
}

.service-details
  .service-sidebar
  .testimonial-card
  .testimonial-header
  .rating
  i {
  color: #ffd700;
  font-size: 16px;
  opacity: 1;
  margin-left: 2px;
}

.service-details .service-sidebar .testimonial-card .testimonial-text {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .testimonial-card .client-info {
  display: flex;
  align-items: center;
}

.service-details .service-sidebar .testimonial-card .client-info .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.service-details
  .service-sidebar
  .testimonial-card
  .client-info
  .client-details
  h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
}

.service-details
  .service-sidebar
  .testimonial-card
  .client-info
  .client-details
  span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .contact-info {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-info .contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-info .contact-method:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-info .contact-method i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 15px;
}

.service-details .service-sidebar .contact-info .contact-method div {
  flex: 1;
}

.service-details .service-sidebar .contact-info .contact-method div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details .service-sidebar .contact-info .contact-method div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .service-details .service-header h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .service-details .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .service-details .service-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 15px;
    font-size: 14px;
  }

  .service-details .service-tabs .nav-tabs .nav-link i {
    font-size: 16px;
  }

  .service-details .service-header h1 {
    font-size: 26px;
  }

  .service-details .service-header .service-meta {
    gap: 15px;
  }

  .service-details .service-header .service-meta span {
    font-size: 14px;
  }

  .service-details .service-header .lead {
    font-size: 16px;
  }
} /* Dark Starter Section */

.overview-description {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
}

/* Two Column Layout */
.overview-section-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Left Column */
.overview-left {
  flex: 0 0 50%;
}

/* Right Column */
.overview-right {
  flex: 0 0 40%;
}

/* Features Container */
.overview-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Feature Card */
.feature-card {
  background: #29343a;
  padding: 18px 18px 18px 45px;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Feature Icon - Responsive */
.feature-icon {
  position: absolute;
  left: 20px;
  top: 18px;
  font-size: 20px;
  color: #fada5e;
  transition: all 0.3s ease;
}

/* Medium devices (tablet) */
@media (max-width: 992px) {
  .feature-icon {
    left: 15px;
    top: 15px;
    font-size: 18px;
  }
}

/* Small devices (mobile) */
@media (max-width: 576px) {
  .feature-icon {
    left: 12px;
    top: 12px;
    font-size: 16px;
  }
}

/* Feature Title */
.feature-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  line-height: 1.3;
}

/* Toggle Icon */
.feature-card h4 i.toggle-icon {
  font-size: 16px;
  color: #fada5e;
  transition: transform 0.3s ease;
}

/* Active Icon Rotation */
.feature-card.active h4 i.toggle-icon {
  transform: rotate(180deg);
}

/* Feature Content */
.feature-card p {
  font-size: 14px;
  color: #ccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  margin: 0;
  padding: 0;
}

/* Active Feature Content */
.feature-card.active p {
  max-height: 500px; /* adjust for longer content */
  margin-top: 8px;
  padding-top: 5px;
}

/* Left Column Image (Optional) */
.overview-left img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Medium devices (tablet) */
@media (max-width: 992px) {
  .overview-section-row {
    flex-direction: column;
    gap: 25px;
  }

  .overview-left,
  .overview-right {
    flex: 1 1 100%;
  }

  .feature-card {
    padding: 15px 15px 15px 35px;
  }

  .feature-card h4 {
    font-size: 16px;
  }

  .feature-card h4 i.toggle-icon {
    font-size: 14px;
  }

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

  .overview-description {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Small devices (mobile) */
@media (max-width: 576px) {
  .overview-left {
    margin-bottom: 20px;
  }

  .overview-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .overview-features {
    gap: 12px;
  }

  .feature-card {
    padding: 12px 12px 12px 30px;
    border-radius: 10px;
  }

  .feature-card h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .feature-card h4 i.toggle-icon {
    font-size: 12px;
  }

  .feature-card p {
    font-size: 12px;
  }
} /* Vision & Mission Section */
#vision-mission {
  /* background-color: #111; */
  color: #f1f1f1;
  padding: 80px 20px;
}

#vision-mission .overview-section-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

#vision-mission .overview-left,
#vision-mission .overview-right {
  flex: 0 0 48%;
}

#vision-mission .overview-feature {
  background: #29343a;
  padding: 25px 20px 25px 50px;
  border-radius: 12px;
  position: relative;
}

#vision-mission .overview-icon {
  position: absolute;
  top: 25px;
  left: 20px;
  font-size: 22px;
  color: #fada5e;
}

#vision-mission h4 {
  margin-bottom: 14px;
  font-size: 22px; /* slightly larger */
  color: #f1f1f1; /* light text for dark background */
  font-weight: 600; /* semi-bold */
  text-transform: none; /* normal casing for readability */
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

/* Add a subtle gradient underline effect */
#vision-mission h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 3px;
  background: #fada5e;
  border-radius: 2px;
}

#vision-mission .overview-description {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
  #vision-mission .overview-left,
  #vision-mission .overview-right {
    flex: 1 1 100%;
  }
}

@media (max-width: 576px) {
  #vision-mission {
    padding: 60px 15px;
  }

  #vision-mission h4 {
    font-size: 18px;
  }

  #vision-mission .overview-description {
    font-size: 14px;
  }

  #vision-mission .overview-feature {
    padding: 18px 15px 18px 45px;
  }

  #vision-mission .overview-icon {
    font-size: 18px;
    top: 18px;
    left: 15px;
  }
}
/* Life at Rakkin Section */
#life-at-rakkin {
  /* background-color: #111; */
  color: #f1f1f1;
  padding: 80px 20px;
}

#life-at-rakkin .life-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.life-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.life-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.life-item:hover img {
  transform: scale(1.05);
}

.life-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #f1f1f1;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.life-item:hover .life-overlay {
  transform: translateY(0);
}

.life-overlay h4 {
  font-size: 18px;
  color: #fada5e;
  font-weight: 700;
  margin-bottom: 8px;
}

.life-overlay p {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
  #life-at-rakkin .life-grid {
    gap: 20px;
  }

  .life-image img {
    height: 200px;
  }

  .life-overlay h4 {
    font-size: 16px;
  }

  .life-overlay p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  #life-at-rakkin {
    padding: 60px 15px;
  }

  .life-image img {
    height: 180px;
  }

  .life-overlay h4 {
    font-size: 14px;
  }

  .life-overlay p {
    font-size: 12px;
  }
}
/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  right: 0;
  bottom: 70px;
  z-index: 9999;
  /* font-family: "Poppins", sans-serif; */
}

.whatsapp-widget a {
  display: flex;
  align-items: center;
  background-color: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 50px; /* default narrow width */
}

.whatsapp-widget a:hover {
  width: 150px; /* width on hover */
}

.whatsapp-content {
  display: flex;
  align-items: center;
}

.whatsapp-text {
  padding: 8px 10px;
  text-align: left;
  display: none;
}

.whatsapp-widget a:hover .whatsapp-text {
  display: block;
}

.whatsapp-text p {
  margin: 0;
  font-weight: 600;
  font-size: 13px;
}

.whatsapp-text span {
  font-size: 11px;
  opacity: 0.9;
}

.whatsapp-icon {
  background-color: #25d366;
  padding: 8px; /* increased from 12px to 16px */
  font-size: 30px; /* increased from 22px to 28px */
  display: flex;
  align-items: center;
  justify-content: center;
}
/* =============================
GET SUPPORT SECTION
============================= */
.contact-support {
  padding: 70px 0;
  background: linear-gradient(
    to right,
    color-mix(in srgb, var(--surface-color), transparent 90%),
    color-mix(in srgb, var(--accent-color), transparent 95%)
  );
}

.contact-support .section-title h2 {
  color: var(--accent-color);
}

.support-content h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.support-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
  line-height: 1.6;
}

.support-list {
  list-style: none;
  padding: 0;
}

.support-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.support-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

/* ---------------------------
   SECTION BASE
---------------------------- */
.expertise-section {
  padding: 60px 80px;
  text-align: center;
}

@media (max-width: 992px) {
  .expertise-section {
    padding: 50px 40px;
  }
}

@media (max-width: 576px) {
  .expertise-section {
    padding: 40px 20px;
  }
}

/* ---------------------------
   FILTER BUTTONS
---------------------------- */
.filter-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
}

.filter-btns button {
  background: transparent;
  border: 1.5px solid #fada5e;
  color: #fada5e;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btns button.active,
.filter-btns button:hover {
  background: #fada5e;
  color: #000;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
  transform: translateY(-2px);
}

/* ---------------------------
   GRID SYSTEM
---------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ---------------------------
   CARD DESIGN
---------------------------- */
.glass-card {
  background: #ffffff0d;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  min-height: 260px;
}

@media (max-width: 768px) {
  .glass-card {
    min-height: 240px;
  }
}

@media (max-width: 576px) {
  .glass-card {
    min-height: 220px;
  }
}
/* Wrapper */
.click-img-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

/* Image */
.clickable-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
}

/* Hover zoom effect */
.click-img-wrapper:hover .clickable-img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

/* Hover overlay text */
.img-hover-text {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

/* Show overlay text on hover */
.click-img-wrapper:hover .img-hover-text {
  opacity: 1;
  transform: translateY(0);
}
/* POPUP BACKDROP */
.img-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
}

/* POPUP IMAGE */
.popup-content {
  margin: auto;
  display: block;
  width: 90%;
  margin-top: 90px;
  max-width: 500px;
  border-radius: 10px;
  animation: zoomAnimation 0.3s ease-in-out;
}

/* CLOSE BUTTON */
.close-popup {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.close-popup:hover {
  color: #ff4b4b;
}

@keyframes zoomAnimation {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* TITLE */
.glass-card h4 {
  font-size: 0.95rem;
  color: #fada5e;
  font-weight: 600;
  text-align: center;
  margin: 14px auto 10px;
  letter-spacing: 1.1px;
  border-bottom: 1px solid #fada5e;
  padding-bottom: 6px;
  width: 75%;
}

@media (max-width: 576px) {
  .glass-card h4 {
    font-size: 0.9rem;
    width: 80%;
  }
}

/* DESCRIPTION */
.glass-card p {
  font-size: 0.83rem;
  color: #e6e6e6;
  text-align: center;
  padding: 0 14px 5px;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .glass-card p {
    font-size: 0.8rem;
  }
}

/* HOVER */
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 214, 90, 0.4);
}

/* ---------------------------
   BUTTON INSIDE CARD
---------------------------- */
.service-btn {
  display: inline-block;
  margin: 0px auto 16px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.8rem;
  border-radius: 10px;
  text-decoration: none;

  transition: 0.3s ease;
}

.service-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
  color: #fada5e;
  font-weight: 500;
}

@media (max-width: 576px) {
  .service-btn {
    font-size: 0.75rem;
    padding: 7px 16px;
  }
} /* MAIN WRAPPER */
.expertise-neo {
  padding: 80px 20px;
  color: #fff;
  /* font-family: "Poppins", sans-serif; */
  /* background: #0f0f0f; dark background */
}

.neo-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* LEFT SIDE CARDS */
.neo-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 25px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.neo-card::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 200%;
  height: 200%;
  background: rgba(248, 217, 128, 0.08);
  transform: rotate(25deg);
  transition: 0.4s;
}

.neo-card:hover {
  transform: translateY(-8px);
  border-color: #fada5e;
  box-shadow: 0 0 20px rgba(248, 217, 128, 0.28);
}

.neo-card:hover::before {
  background: rgba(248, 217, 128, 0.15);
}

.neo-card h4 {
  color: #fada5e;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.neo-card p {
  color: #e5e5e5;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* RIGHT SIDE TABS */
.neo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.neo-tab {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  cursor: pointer;
  color: #fff;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: 0.3s;
  text-align: center;
}

.neo-tab.active {
  background: #fada5e;
  color: #000;
  border-color: #fada5e;
}

/* PANELS */
.neo-panel {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  line-height: 1.6;
  animation: slideIn 0.4s ease forwards;
}

.neo-panel.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Expertise List Styling */
.expertise-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.expertise-list li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #969292;
  position: relative;
  padding-left: 20px;
}

.expertise-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fada5e;
  font-weight: bold;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .neo-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .neo-card {
    padding: 18px;
  }

  .neo-tab {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .expertise-neo {
    padding: 60px 15px;
  }

  .neo-card h4 {
    font-size: 1.05rem;
  }

  .neo-card p {
    font-size: 0.9rem;
  }

  .neo-tab {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .neo-panel {
    padding: 20px;
    font-size: 0.9rem;
  }
} /* =============================
   Hero Section (Desktop Default)
   ============================= */

.wd-hero-img {
  margin-top: 80px;
  padding: 30px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.wd-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Content */
.wd-content {
  flex: 1;
}

.wd-content h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.wd-content p {
  font-size: 16px;
  color: #e0e9f2;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Breadcrumbs */
.wd-breadcrumbs {
  font-size: 15px;
  color: #fff;
}

.wd-breadcrumbs a {
  color: #fada5e;
  font-weight: 600;
  text-decoration: none;
}

/* Right Image */
.wd-image {
  flex: 1;
  text-align: right;
}

.wd-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* =============================
   Tablets & Small Laptop
   ============================= */
@media (max-width: 992px) {
  .wd-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 20px; /* reduced spacing */
  }

  .wd-hero-img {
    padding: 40px 20px; /* reduced padding */
  }

  .wd-content h1 {
    font-size: 32px;
  }

  .wd-content p {
    font-size: 16px;
  }

  .wd-image img {
    max-width: 360px;
    margin: auto;
  }
}

/* =============================
   Large Mobile Screens
   ============================= */
@media (max-width: 768px) {
  .wd-hero-img {
    padding: 20px 15px; /* NO big space */
    margin-top: 80px;
  }

  .wd-container {
    gap: 12px; /* smaller space between text & image */
  }

  .wd-content h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .wd-content p {
    font-size: 15px;
    margin-bottom: 16px;
    margin: 10px;
  }

  .wd-image img {
    max-width: 400px;
  }
}

/* =============================
   Small Mobile (No Space Issue)
   ============================= */
@media (max-width: 480px) {
  .wd-hero-img {
    padding: 15px 10px;
    margin-top: 90px;
  }

  .wd-container {
    gap: 8px;
  }

  .wd-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .wd-content p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .wd-image img {
    max-width: 340px;
  }
} /* =============================
/*==============================================================
# DARK + YELLOW THEME FOR BRANDING SECTION (COMPACT)
==============================================================*/

/* Wrapper Box */
.dark-box {
  background: #141414;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
}

/* Branding Main Box */
.branding-main-box {
  background: #0d0d0d;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  margin-bottom: 20px;
}

.branding-main-box h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fada5e;
}

.branding-main-box p {
  color: #bdbdbd;
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.55;
}

.branding-main-box p strong {
  color: #ffffff;
}

/* Sub-Service Boxes */
.service-item-box {
  background: #111111;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #222222;
  transition: 0.3s ease;
  height: 100%; /* ensures all boxes are same height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-item-box h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fada5e;
  display: flex;
  align-items: center;
  line-height: 1.3;
}

.service-item-box h4 i {
  background: #fada5e;
  color: #000;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
}

.service-item-box p {
  font-size: 14px;
  color: #bdbdbd;
  margin: 6px 0 0 0;
  line-height: 1.45;
}

/* Hover Effect */
.service-item-box:hover {
  background: #1b1b1b;
  border-color: #fada5e;
  transform: translateY(-4px);
  box-shadow: 0 0 6px #fada5e;
}

.service-item-box-link {
  text-decoration: none;
}

/* Read More Button */
.readmore-btn {
  background: #2b2b2b;
  color: #fada5e;
  padding: 6px 20px;
  margin-top: 12px;
  font-size: 13px;
  border-radius: 50px;
  border: 1px solid #3b3b3b;
  font-weight: 600;
  transition: 0.3s ease;
  align-self: flex-start;
}

.readmore-btn:hover {
  background: #fada5e;
  color: #000;
  border-color: #fada5e;
}

/* Tech Stack Badges */
.tech-stack-badges {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-stack-badges span {
  background: #111111;
  color: #e0e0e0;
  padding: 7px 14px;
  border-radius: 26px;
  border: 1px solid #222222;
  transition: 0.3s ease;
  font-size: 13px;
}

.tech-stack-badges span:hover {
  background: #fada5e;
  color: #000;
  border-color: #fada5e;
}

/*==============================================================
# CTA SECTION - WHITE THEME
==============================================================*/
.cta-white {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 12px;
  margin: 80px 80px; /* Center horizontally */
  max-width: 1200px;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.cta-white h3 {
  color: #333333;
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-white p {
  color: #666666;
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 15px;
  line-height: 1.6;
}

.btn-cta {
  background: #fada5e;
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #e6c94c;
  color: #000;
}

/*==============================================================
# BRANDING PROCESS SECTION
==============================================================*/
.process-step {
  background: #141414;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  transition: all 0.4s ease;
  height: 240px; /* fixed height for all boxes */
  box-sizing: border-box;
  flex: 1; /* ensures equal height in flex container */
}

/* Animated border effect on hover */
.process-step::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    #fada5e,
    transparent,
    #fada5e,
    transparent
  );
  transform: rotate(45deg) scale(0);
  transition: all 0.5s ease;
  border-radius: 12px;
  z-index: 0;
}

.process-step:hover::before {
  transform: rotate(45deg) scale(1);
  opacity: 0.4;
}

/* Change background & text on hover */
.process-step:hover {
  background: #1b1b1b;
  border-color: #fada5e;
  box-shadow: 0 0 20px rgba(250, 218, 94, 0.6);
}

.process-step .step-number {
  background: #ffffff;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
}

.process-step h4 {
  color: #fada5e;
  font-size: 18px;
  margin-bottom: 10px;
}

.process-step p {
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.5;
  flex-grow: 1;
}

/*==============================================================
# RESPONSIVE FIXES
==============================================================*/

/* Large Tablets & Laptops */
@media (max-width: 1200px) {
  .cta-white {
    padding: 50px 20px;
  }
}

@media (max-width: 991px) {
  .cta-white h3 {
    font-size: 24px;
  }
  .branding-main-box h2 {
    font-size: 22px;
  }
  .service-item-box {
    min-height: auto;
    padding: 16px;
  }
  .process-step {
    min-height: auto;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .cta-white {
    padding: 40px 15px;
    margin: 30px 30px;
  }
  .branding-main-box {
    padding: 16px;
  }
  .service-item-box {
    padding: 16px;
  }
  .service-item-box h4 {
    font-size: 16px;
  }
  .service-item-box p {
    font-size: 13px;
  }
  .readmore-btn {
    font-size: 12px;
    padding: 6px 16px;
  }
  .process-step {
    padding: 20px;
    margin-bottom: 20px;
  }
  .process-step .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .process-step h4 {
    font-size: 16px;
  }
  .process-step p {
    font-size: 13px;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .cta-white h3 {
    font-size: 20px;
  }
  .cta-white p {
    font-size: 14px;
  }
  .btn-cta {
    padding: 10px 25px;
    font-size: 14px;
  }
  .branding-main-box h2 {
    font-size: 20px;
  }
  .service-item-box h4 i {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .process-step .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .process-step h4 {
    font-size: 15px;
  }
  .process-step p {
    font-size: 12px;
  }
  .tech-stack-badges span {
    font-size: 12px;
    padding: 6px 12px;
  }
}/* ===== WRAPPER ===== */
.rk-hiring-wrap {
  background: linear-gradient(135deg, #0b0b0b, #111);
  padding: 100px 20px;
  color: #fff;
}

.rk-hiring-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== BADGE ===== */
.rk-hiring-badge {
  display: inline-block;
  background: #f5c400;
  color: #000;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* ===== HEADER ===== */
.rk-hiring-header h2 {
  font-size: 38px;
  margin-bottom: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rk-hiring-subtext {
  color: #ccc;
  line-height: 1.7;
  max-width: 750px;
}

/* ===== META ===== */
.rk-hiring-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 35px 0;
}

.rk-hiring-meta span {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 14px;
  color: #f5c400;
}

/* ===== GRID ===== */
.rk-hiring-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ===== BOX ===== */
.rk-hiring-box {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 35px;
}

.rk-hiring-box h4 {
  color: #f5c400;
  margin-bottom: 15px;
}

.rk-hiring-box li {
  margin-bottom: 10px;
  color: #e5e5e5;
  line-height: 1.7;
}

.rk-hiring-box li::marker {
  color: #f5c400;
}

/* ===== CTA ===== */
.rk-hiring-cta {
  text-align: center;
  margin-top: 50px;
}

.rk-btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* ===== BUTTONS ===== */
.rk-apply-btn {
  background: #f5c400;
  color: #000;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
}

.rk-apply-btn:hover {
  background: #ffd633;
  color: #000;
  transform: translateY(-3px);
}

.rk-btn-outline {
  background: transparent;
  border: 2px solid #f5c400;
  color: #f5c400;
}

.rk-btn-outline:hover {
  background: #f5c400;
  color: #000;
}

.rk-btn-dark {
  background: #1f1f1f;
  color: #fff;
  border: 2px solid #333;
}

.rk-btn-dark:hover {
  background: #333;
}

/* ===== NOTE ===== */
.rk-hiring-note {
  margin-top: 15px;
  color: #ccc;
}

/* ===== DEADLINE ===== */
.rk-hiring-deadline {
  margin: 20px auto 0;
  padding: 12px 16px;
  background: #fff3cd;
  color: #000;
  font-weight: 700;
  border-left: 5px solid #facc15;
  border-radius: 8px;
  max-width: 500px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .rk-hiring-grid {
    grid-template-columns: 1fr;
  }

  .rk-apply-btn {
    width: 100%;
    text-align: center;
  }
}


.rk-divider {
  border: none;
  height: 2px;
  width: 80%;
  margin: 70px auto;
  background: linear-gradient(
    90deg,
    transparent,
    #f5c400,
    transparent
  );
  opacity: 0.9;
}/* Section */
.seo-services {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  /* font-family: Arial, Helvetica, sans-serif; */
}

/* Section Heading */
.seo-services > h2 {
  font-size: 28px;
  /* margin-bottom: 20px; */
  color: #fff;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 60px;
  text-decoration: underline;
  text-underline-offset: 6px; /* space between text and underline */
  text-decoration-color: #fada5e; /* optional color for underline */
  text-decoration-thickness: 3px; /* thickness of underline */
}


.seo-services-intro {
  font-size: 16px;
  color: #b5b5b5;
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.seo-services-intro strong {
  font-size: 16px;
  color: #fff; /* or any color you want */
  line-height: 1.6;
}

/* Card */
.seo-service-block {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-service-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}

/* Card Heading */
.seo-service-block h3 {
  background: radial-gradient(circle, #fada5e 0%, #000 100%);

  color: #ffffff;
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* UL */
.seo-service-list {
  list-style: none;
  padding: 22px 26px;
  margin: 0;
}

/* LI */
.seo-service-list li {
  position: relative;
  font-size: 16px;
  color: #000;
  margin-bottom: 12px;
  padding-left: 28px;
  line-height: 1.6;
}

/* Custom Bullet */
.seo-service-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  top: 0;
  color: #6366f1;
  font-size: 16px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .seo-services {
    padding: 40px 16px;
  }

  .seo-services > h2 {
    font-size: 24px;
  }

  .seo-service-block h3 {
    font-size: 16px;
  }

  .seo-service-list li {
    font-size: 14px;
  }
}.wa-assistant {
  position: fixed;
  bottom: 85px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
}

/* WhatsApp Icon */
.wa-assistant a {
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  animation: waBlink 1.3s infinite;
}

/* Message box */
.wa-message {
  background: #fff;
  color: #000;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  animation: floatIn 1.5s ease forwards;
}

/* Slide-in animation */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* WhatsApp icon blink animation */
@keyframes waBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1);
  }
}

/* Mobile: hide message */
@media (max-width: 576px) {
  .wa-message {
    display: none;
  }
}

.social-float {
  position: fixed;
  top: 60%;
  left: 8px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-float a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* Brand colors */
.social-float .facebook { color: #1877f2; }
.social-float .instagram { color: #e1306c; }
.social-float .linkedin { color: #0a66c2; }
.social-float .twitter { color: #000; }
.social-float .youtube { color: #ff0000; }

/* Hover Effect */
.social-float a:hover {
  transform: translateX(6px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Mobile – hide (optional) */
@media (max-width: 768px) {
  .social-float {
    display: none;
  }
}


.social-float a {
  animation: wave 2s infinite;
}

.social-float a:nth-child(1) { animation-delay: 0s; }
.social-float a:nth-child(2) { animation-delay: 0.2s; }
.social-float a:nth-child(3) { animation-delay: 0.4s; }
.social-float a:nth-child(4) { animation-delay: 0.6s; }
.social-float a:nth-child(5) { animation-delay: 0.8s; }

@keyframes wave {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}
