/*
Theme Name: KlayTech Starter BS5
Theme URI: https://www.klay.tech
Description: Modern WordPress starter theme built with Bootstrap 5, featuring responsive design, clean code, and developer-friendly structure.
Author: Nasim Ahmed
Author URI: https://www.sykot.com
Version: 2.0
Date: 27 August 2025
Tags: bootstrap, responsive, modern, starter, clean, minimal
License: MIT
License URI: https://opensource.org/licenses/MIT
Text Domain: klaytech-starter
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* ==========================================================================
   TABLE OF CONTENTS
   ========================================================================== */
/*
   1. CSS Variables & Root Styles
   2. Base Styles & Typography
   3. Layout Components
   4. Forms & Buttons
   5. WordPress Integration
   6. GP Template Styles
      - Global Header & Navigation
      - Global Footer
      - Preloader & Scroll Top
      - Global Sections & Titles
      - Hero Section
      - About Section
      - Clients Section (with animations)
      - Features Section
      - Services Section
      - Call To Action Section
      - Portfolio Section
      - Stats Section
      - Testimonials Section
      - Team Section
      - Contact Section
      - Portfolio Details Section
      - Service Details Section
   7. WordPress Admin Bar Fixes
   8. Custom Enhancements & Animations
   9. Responsive Design
   10. Print Styles
*/

/* ==========================================================================
   1. CSS VARIABLES & ROOT STYLES
   ========================================================================== */

:root {
  /* Legacy Colors - Keep for backward compatibility */
  --primary-color: #FF3200;
  --secondary-color: #666666;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #ffffff;
  --dark-color: #000000;
  --white: #ffffff;
  --black: #000000;

  /* Font Families */
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;

  /* Border Radius */
  --border-radius: 0.375rem;
  --border-radius-sm: 0.25rem;
  --border-radius-lg: 0.5rem;

  /* Box Shadows */
  --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);

  /* Transitions */
  --transition: all 0.15s ease-in-out;

  /* Font Size Override */
  --bs-body-font-size: 15px;
  font-size: 15px;

  /* GP Template Colors - Main Theme Colors */
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #151515;
  --accent-color: #FF3200;
  --surface-color: #ffffff;
  --contrast-color: #312f2f;

  /* Navigation Colors */
  --nav-color: rgba(255, 255, 255, 0.905);
  --nav-hover-color: #FF3200;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #FF3200;

  /* Smooth Scroll */
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--default-font);
  line-height: 1.6;
  color: var(--default-color);
  background-color: var(--background-color);
  padding-top: 0 !important; /* WordPress admin bar fix */
}

/* ==========================================================================
   2. BASE STYLES & TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--black);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* ==========================================================================
   3. LAYOUT COMPONENTS
   ========================================================================== */

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Header Styles */
header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  width: 100%;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--black) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: var(--transition);
  color: var(--black) !important;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color) !important;
}

.nav-link.btn {
  background-color: var(--black) !important;
  border: 0 !important;
  color: var(--white) !important;
  border-radius: var(--border-radius-sm) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.2 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.nav-link.btn:hover {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
}

/* Navbar alignment */
.navbar-nav {
  align-items: center !important;
}

.navbar-nav .nav-item {
  display: flex !important;
  align-items: center !important;
}

.navbar-nav .nav-link {
  display: flex !important;
  align-items: center !important;
  height: auto !important;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Footer Styles */
footer {
  background: var(--white);
  color: var(--black);
  padding: 2rem 0;
  margin-top: auto;
  border-top: 1px solid #e9ecef;
}

footer a {
  color: var(--black);
}

footer a:hover {
  color: var(--secondary-color);
}

/* ==========================================================================
   CONTENT STYLES
   ========================================================================== */

.post, .page {
  background: var(--white);
  border-radius: var(--border-radius);
}

.post h1, .post h2, .page h1, .page h2 {
  margin-bottom: 1rem;
}

.post h1 a, .post h2 a {
  color: var(--black);
  text-decoration: none;
}

.post h1 a:hover, .post h2 a:hover {
  color: var(--secondary-color);
}

.entry {
  margin: 1.5rem 0;
}

.entry img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.postmetadata {
  font-size: 0.875rem;
  color: var(--secondary-color);
  border-top: 1px solid #dee2e6;
  padding-top: 1rem;
  margin-top: 1.5rem;
}

/* ==========================================================================
   SIDEBAR STYLES
   ========================================================================== */

.sidebar {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  border: 1px solid #e9ecef;
}

.sidebar .widget {
  margin-bottom: 2rem;
}

.sidebar .widget:last-child {
  margin-bottom: 0;
}

.sidebar h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--black);
  color: var(--black);
}

/* ==========================================================================
   FORM STYLES
   ========================================================================== */

.form-control {
  border-radius: var(--border-radius);
  border: 1px solid #ced4da;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

.btn {
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}

.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--white);
  border-color: var(--black);
  color: var(--black);
}

.btn-secondary:hover {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* ==========================================================================
   5. WORDPRESS INTEGRATION
   ========================================================================== */

/* WordPress Block: Latest Comments */
.wp-block-latest-comments {
  padding-left: 0 !important;
}

.wp-block-latest-comments .wp-block-latest-comments__comment {
  padding-left: 0 !important;
}

/* ==========================================================================
   4. FORMS & BUTTONS
   ========================================================================== */

/* All Buttons - Black Background with White Text */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.btn,
.button,
.wp-block-button__link {
  background-color: var(--black) !important;
  color: var(--white) !important;
  border: 1px solid var(--black) !important;
  border-radius: var(--border-radius-sm) !important;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: var(--transition);
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.btn:hover,
.button:hover,
.wp-block-button__link:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--white) !important;
}

/* Input Fields - Border Radius */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea,
select,
.form-control,
.wp-block-search__input {
  border-radius: var(--border-radius-sm) !important;
  border: 1px solid #ced4da;
  padding: 0.5rem 0.75rem;
  transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus,
.form-control:focus,
.wp-block-search__input:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
  outline: none;
}
/* ==========================================================================
   COMMENTS STYLES
   ========================================================================== */

.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #dee2e6;
}

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

.comment {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid #e9ecef;
}

.comment .comment {
  margin-left: 2rem;
  margin-top: 1rem;
  background: var(--white);
  border: 1px solid #dee2e6;
}

.comment-body {
  margin-bottom: 1rem;
}

.comment-meta {
  font-size: 0.875rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.comment-author {
  font-weight: 600;
  color: var(--black);
}

.comment-content {
  line-height: 1.6;
}

.reply {
  margin-top: 1rem;
}

.reply a {
  font-size: 0.875rem;
  color: var(--black);
}

.reply a:hover {
  color: var(--secondary-color);
}

/* ==========================================================================
   OWL CAROUSEL STYLES
   ========================================================================== */

.owl-carousel {
  position: relative;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  color: var(--white);
  font-size: 1.25rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-carousel .owl-nav button.owl-prev {
  left: 20px;
}

.owl-carousel .owl-nav button.owl-next {
  right: 20px;
}

.owl-carousel .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 1rem;
}

.owl-carousel button.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.3);
  margin: 0 5px;
  transition: var(--transition);
}

.owl-carousel button.owl-dot.active {
  background: var(--black);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-muted {
  color: var(--secondary-color) !important;
}

.bg-light {
  background-color: var(--white) !important;
}

.bg-dark {
  background-color: var(--black) !important;
}

.border-radius {
  border-radius: var(--border-radius);
}

.shadow {
  box-shadow: var(--box-shadow);
}

.shadow-lg {
  box-shadow: var(--box-shadow-lg);
}

/* ==========================================================================
   9. RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
  .page-wrap {
    padding: 0;
  }

  /* main {
    padding: 1rem 0;
  } */

  .post, .page {
    margin-bottom: 1rem;
  }

  .sidebar {
    margin-top: 2rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }

  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .owl-carousel .owl-nav button.owl-prev {
    left: 10px;
  }

  .owl-carousel .owl-nav button.owl-next {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .comment .comment {
    margin-left: 1rem;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   10. PRINT STYLES
   ========================================================================== */

@media print {
  .navbar,
  .sidebar,
  .owl-carousel .owl-nav,
  .owl-carousel .owl-dots,
  .comment-reply-link {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }

  .post, .page {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}


/* ==========================================================================
   6. GP TEMPLATE STYLES
   ========================================================================== */
/*--------------------------------------------------------------
# GP Template Styles - Complete Import from gp-1.0.0
--------------------------------------------------------------*/
/**
* Template Name: Gp
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Updated: Aug 15 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables - Consolidated in main :root above
--------------------------------------------------------------*/

/* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* Smooth scroll - Moved to main :root above */

/*--------------------------------------------------------------
# General Styling & Shared Classes - Body styles consolidated above
--------------------------------------------------------------*/

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: transparent;
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

@media (max-width: 880px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    display: none !important;
  }

  .header .navmenu {
    order: 2;
  }

  .header .mobile-nav-toggle {
    order: 3;
    margin-left: auto;
  }
}

.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.9) !important;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.home .header {
  --background-color: transparent;
}

/* Index Page Header on Scroll
------------------------------*/
.home.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Hide mobile menu on desktop */
@media (min-width: 881px) {
  .mobile-nav-toggle {
    display: none !important;
  }

  .mobile-navmenu {
    display: none !important;
  }

  .desktop-menu {
    display: block !important;
  }

  .btn-getstarted {
    display: block !important;
  }
}

/* Desktop menu styles */
@media (min-width: 881px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li,
  .navmenu .nav-item {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus,
  .navmenu .nav-link,
  .navmenu .nav-link:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .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 .nav-item:hover>.nav-link,
  .navmenu .active,
  .navmenu .active:focus,
  .navmenu .nav-link.active {
    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: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

  .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: 880px) {
  /* Hide desktop menu on mobile */
  .desktop-menu {
    display: none !important;
  }

  .btn-getstarted {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  /* Mobile menu hidden by default */
  #mobile-navmenu {
    display: none;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 37, 41, 0.95);
    z-index: 9997;
    padding: 80px 20px 20px 20px;
    overflow-y: auto;
  }

  .mobile-navmenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-navmenu li {
    margin: 0;
    padding: 0;
  }

  .mobile-navmenu a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
  }

  .mobile-navmenu a:hover {
    background-color: var(--accent-color);
    padding-left: 30px;
  }

  .mobile-navmenu .current-menu-item > a,
  .mobile-navmenu .current_page_item > a {
    background-color: rgba(255, 50, 0, 0.2);
    color: var(--accent-color);
  }

  .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), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    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);
  }

  /* Dropdown support for mobile menu */
  .mobile-navmenu .sub-menu {
    padding-left: 20px;
  }

  .mobile-navmenu .sub-menu a {
    font-size: 16px;
    padding: 12px 20px;
  }

  .mobile-navmenu .menu-item-has-children > a::after {
    content: '\f282';
    font-family: 'bootstrap-icons';
    float: right;
    transition: transform 0.3s;
  }

  .mobile-navmenu .menu-item-has-children.open > a::after {
    transform: rotate(180deg);
  }

  .mobile-navmenu .sub-menu {
    display: none;
    background: rgba(0, 0, 0, 0.2);
  }

  .mobile-navmenu .menu-item-has-children.open > .sub-menu {
    display: block;
  }
}

/* Mobile nav active state - OUTSIDE media query */
body.mobile-nav-active {
  overflow: hidden !important;
}

body.mobile-nav-active .mobile-nav-toggle {
  color: #fff !important;
  position: fixed !important;
  font-size: 32px !important;
  top: 20px !important;
  right: 20px !important;
  margin-right: 0 !important;
  z-index: 9999 !important;
}

@media (max-width: 880px) {
  body.mobile-nav-active #mobile-navmenu,
  body.mobile-nav-active .mobile-navmenu {
    display: block !important;
    visibility: visible !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(33, 37, 41, 0.95) !important;
    z-index: 9997 !important;
    padding: 80px 20px 20px 20px !important;
    overflow-y: auto !important;
    opacity: 1 !important;
  }
}

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

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

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

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

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

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 4px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

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

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

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

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

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

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

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

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

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

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

.footer .copyright {
  padding: 30px 0;
}

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

/* Footer Column Fix - No Right Space */
.footer .row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.footer .row > [class*="col-"] {
  padding-right: 15px;
  padding-left: 15px;
}

.footer .row > [class*="col-"]:last-child {
  padding-right: 0 !important;
}

/* Ensure footer container extends full width */
.footer .container {
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Footer Enhancements */
.footer-section {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.footer-section .social-link:hover {
  color: var(--accent-color) !important;
  transform: translateY(-2px);
}

.footer-section .footer-links a:hover {
  color: var(--accent-color) !important;
  padding-left: 5px;
}

.footer-section .contact-item {
  transition: all 0.3s ease;
}

.footer-section .contact-item:hover {
  transform: translateX(5px);
}

.footer-section .footer-title {
  position: relative;
  padding-bottom: 10px;
}

.footer-section .footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  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);
  }
}

/* Hero Section Preloader */
#hero-preloader {
  position: absolute;
  inset: 0;
  z-index: 100;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#hero-preloader:before {
  content: "";
  position: absolute;
  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;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  border-bottom: 1px solid #eee;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

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

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

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

.breadcrumb {
  padding-top: 20px;
  font-size: 14px;
  color: var(--default-color);
}

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

.breadcrumb a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

.breadcrumb .divider {
  padding-left: 10px;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.breadcrumb .current {
  color: var(--heading-color);
  font-weight: 500;
}

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

@media (max-width: 1199px) {

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

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

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

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

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: auto;
  position: relative;
  padding: 180px 0 150px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .hero {
  min-height: auto;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero p.hero-small {
  font-size: 17px;
  font-weight: 300;
}

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

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

/* Hero Image Animation */
.hero img {
  animation: heroZoom 20s ease-in-out infinite;
  transform-origin: center center;
}

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

.hero h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  font-family: var(--nav-font);
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 300;
}

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 300;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 17px;
  line-height: 19px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

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

  .hero p {
    font-size: 18px;
  }
}

/* Hero Video Styles */
.hero-video {
  min-height: auto !important;
  padding: 0 !important;
  overflow: hidden;
  display: block !important;
}

.hero-video video {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* Hide overlay for video hero */
.hero-video:before {
  display: none !important;
}

/* Desktop video - show on larger screens */
.hero-video-desktop {
  display: block !important;
}

/* Mobile video - hide on larger screens */
.hero-video-mobile {
  display: none !important;
}

/* Mobile responsive - swap videos */
@media (max-width: 768px) {
  .hero-video-desktop {
    display: none !important;
  }

  .hero-video-mobile {
    display: block !important;
  }
}

/*--------------------------------------------------------------
# Selected Services Section
--------------------------------------------------------------*/
.selected-services {
  padding: 60px 0;
  background-color: var(--surface-color);
}

.selected-services .icon-box-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.selected-services .icon-box {
  padding: 30px 20px;
  transition: all 0.3s ease-in-out;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: var(--background-color);
  cursor: pointer;
}

.selected-services .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.selected-services .icon-box h3 {
  font-weight: 300;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 17px;
  line-height: 19px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: all 0.3s ease-in-out;
}

.selected-services .icon-box-link:hover .icon-box {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.selected-services .icon-box-link:hover .icon-box h3 {
  color: var(--accent-color);
}

.selected-services .icon-box-link:hover .icon-box i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .selected-services {
    padding: 40px 0;
  }

  .selected-services .icon-box {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/* Custom Clients Section Animations */
.clients-row {
  overflow: hidden;
  margin: 20px 0;
  white-space: nowrap;
  position: relative;
}

.clients-track {
  display: inline-flex;
  animation-duration: 50s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  width: max-content;
}

.clients-row[data-direction="left"] .clients-track {
  animation-name: scroll-left;
}

.clients-row[data-direction="right"] .clients-track {
  animation-name: scroll-right;
}

.client-logo {
  flex: 0 0 auto;
  margin: 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 140px;
}

.client-logo img {
  max-height: 60px;
  max-width: 120px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.client-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Pause animation on hover */
.clients-row:hover .clients-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.features .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background: white;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 40px 50px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.services .service-item .icon {
  background: var(--accent-color);
  color: white;
  margin: 0 auto 25px auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services .service-item .icon i {
  font-size: 32px;
  color: white !important;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 0 0 20px 0;
  font-size: 24px;
  color: var(--heading-color);
  transition: 0.3s;
}

.services .service-item p {
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 25px;
  color: var(--default-color);
}

.services .service-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.services .service-item:hover .icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 180px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
  font-size: 19px;
  font-weight: 300;
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: #fff;
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio-filters .filter-active {
  color: #fff !important;
  background-color: var(--accent-color);
}

.portfolio-filters li:hover {
  color: #fff !important;
  background-color: var(--accent-color);
}

/* Portfolio items visibility - ensure they show by default */
.portfolio .isotope-item {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Portfolio filter functionality removed */

/* Portfolio filter CSS removed */
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

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

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

/* Portfolio item styles consolidated below */

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

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

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

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

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

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

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Portfolio Item Links
--------------------------------------------------------------*/
.portfolio-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.portfolio-item-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-2px);
}

.portfolio-item-link .portfolio-item {
  transition: all 0.3s ease;
}

.portfolio-item-link:hover .portfolio-item {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-item-link .details-link {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  transition: all 0.3s ease;
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 0;
  transform: scale(0.8);
}

.portfolio-item-link:hover .details-link {
  opacity: 1;
  transform: scale(1);
}

.portfolio-item-link .portfolio-info h4,
.portfolio-item-link .portfolio-info p {
  transition: color 0.3s ease;
}

.portfolio-item-link:hover .portfolio-info h4 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-details .portfolio-info ul li {
  padding: 5px 0;
  color: var(--default-color);
  line-height: 1.6;
}

.portfolio-details .portfolio-info ul li strong {
  color: var(--heading-color);
  margin-right: 10px;
}

.portfolio-details .portfolio-info ul li a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.portfolio-details .portfolio-info ul li a:hover {
  color: var(--heading-color);
}

.portfolio-details .portfolio-description {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.portfolio-details .portfolio-description p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 0;
}

.portfolio-details .portfolio-tags {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .portfolio-tags h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.portfolio-details .portfolio-tags .tag {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-tags .tag:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

.portfolio-details .portfolio-navigation {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-navigation .nav-link {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  margin: 5px 10px 5px 0;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-navigation .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.portfolio-details .portfolio-navigation .nav-link i {
  margin-right: 5px;
}

.portfolio-details .portfolio-navigation .next-project i {
  margin-left: 5px;
  margin-right: 0;
}

.portfolio-details .portfolio-content {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.portfolio-details .portfolio-content .entry-content {
  color: var(--default-color);
  line-height: 1.7;
}

.portfolio-details .portfolio-content .entry-content h1,
.portfolio-details .portfolio-content .entry-content h2,
.portfolio-details .portfolio-content .entry-content h3,
.portfolio-details .portfolio-content .entry-content h4,
.portfolio-details .portfolio-content .entry-content h5,
.portfolio-details .portfolio-content .entry-content h6 {
  color: var(--heading-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.portfolio-details .portfolio-content .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section - Add styles as needed
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact Page Custom Styles
--------------------------------------------------------------*/
/* Make all contact info icons white */
.contact .info-item i {
  color: white !important;
}

/* Ninja Forms styling to match theme */
.ninja-form-wrapper {
  height: 100%;
}

.ninja-form-wrapper .nf-form-wrap input[type=text],
.ninja-form-wrapper .nf-form-wrap input[type=email],
.ninja-form-wrapper .nf-form-wrap input[type=tel],
.ninja-form-wrapper .nf-form-wrap textarea,
.ninja-form-wrapper .nf-form-wrap select {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.ninja-form-wrapper .nf-form-wrap input[type=text]:focus,
.ninja-form-wrapper .nf-form-wrap input[type=email]:focus,
.ninja-form-wrapper .nf-form-wrap input[type=tel]:focus,
.ninja-form-wrapper .nf-form-wrap textarea:focus,
.ninja-form-wrapper .nf-form-wrap select:focus {
  border-color: var(--accent-color);
  outline: none;
}

.ninja-form-wrapper .nf-form-wrap input[type=text]::placeholder,
.ninja-form-wrapper .nf-form-wrap input[type=email]::placeholder,
.ninja-form-wrapper .nf-form-wrap input[type=tel]::placeholder,
.ninja-form-wrapper .nf-form-wrap textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.ninja-form-wrapper .nf-form-wrap input[type=submit],
.ninja-form-wrapper .nf-form-wrap button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.ninja-form-wrapper .nf-form-wrap input[type=submit]:hover,
.ninja-form-wrapper .nf-form-wrap button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing .pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing .pricing-item.featured {
  border: 3px solid var(--accent-color);
  transform: scale(1.05);
}

.pricing .pricing-item.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing .pricing-header {
  margin-bottom: 30px;
  position: relative;
  padding-top: 25px;
}

.pricing .pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.pricing .pricing-header h4 {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0;
}

.pricing .pricing-header h4 sup {
  font-size: 24px;
  top: -20px;
  left: -5px;
}

.pricing .pricing-header h4 span {
  font-size: 16px;
  font-weight: 400;
  color: var(--default-color);
}

.pricing .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.pricing .pricing-item ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.pricing .pricing-item ul li {
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.pricing .pricing-item ul li:last-child {
  border-bottom: none;
}

.pricing .pricing-item ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 15px;
  flex-shrink: 0;
}

.pricing .pricing-item ul li.na i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.pricing .pricing-item ul li.na span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

.pricing .pricing-item ul li span {
  font-size: 15px;
  color: var(--default-color);
}

.pricing .buy-btn {
  background: var(--heading-color);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  margin-top: auto;
}

.pricing .buy-btn:hover {
  background: color-mix(in srgb, var(--heading-color), transparent 20%);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.pricing .pricing-item.featured .buy-btn {
  background: var(--accent-color);
  color: white;
}

.pricing .pricing-item.featured .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: white;
}

/* ==========================================================================
   7. WORDPRESS ADMIN BAR FIXES
   ========================================================================== */
/*--------------------------------------------------------------
# WordPress & GP Template Integration Styles
--------------------------------------------------------------*/

/* Override GP template colors with Ontenet brand colors */
.hero:before {
  background: rgba(49, 15, 7, 0.8);
}

.call-to-action:before {
  background: rgba(49, 15, 7, 0.8);
}

/* Ensure proper text colors in dark sections */
.dark-background h2,
.dark-background h3,
.dark-background p {
  color: white;
}

/* WordPress Admin Bar Fix - Body padding consolidated above */

/* Admin bar adjustments for logged-in users */
body.admin-bar {
  padding-top: 0 !important;
}

/* Fix for absolute header when admin bar is present */
body.admin-bar header {
  top: 32px !important;
}

/* Fix for hero section when admin bar is present */
/* body.admin-bar .hero {
  padding-top: calc(120px + 32px) !important;
} */

/* Fix for scroll-top button when admin bar is present */
/* body.admin-bar .scroll-top {
  bottom: calc(15px + 32px) !important;
} */

/* Fix for any fixed positioned elements */
body.admin-bar .fixed-top {
  top: 32px !important;
}

/* Mobile admin bar fix (WordPress admin bar is 46px on mobile) */
@media screen and (max-width: 782px) {
  body.admin-bar header {
    top: 46px !important;
  }

  /* body.admin-bar .hero {
    padding-top: calc(120px + 46px) !important;
  }

  body.admin-bar .scroll-top {
    bottom: calc(15px + 46px) !important;
  } */

  body.admin-bar .fixed-top {
    top: 46px !important;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar header {
    top: 46px !important;
  }
}

/* Ensure admin bar doesn't interfere with absolute positioned header */
body.admin-bar .header {
  top: 32px !important;
}

@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 46px !important;
  }
}

/* Additional safety for any modal or dropdown that might be affected */
body.admin-bar .dropdown-menu {
  z-index: 99999 !important;
}

body.admin-bar .modal {
  z-index: 100000 !important;
}

/* GP Template Header Styles */
.header {
  --background-color: transparent;
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
  text-decoration: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  background: var(--accent-color);
}

/* Index Page Header */
.home .header {
  --background-color: transparent;
}

/* Index Page Header on Scroll */
.home.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.9);
}

.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.9) !important;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

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

/* ==========================================================================
   8. CUSTOM ENHANCEMENTS & ANIMATIONS
   ========================================================================== */

/* Client animation styles moved to Clients Section above */

/* Portfolio Hover Background Override */
.portfolio .portfolio-item .portfolio-info {
  background: var(--accent-color) !important;
  color: white !important;
}

.portfolio .portfolio-item .portfolio-info h4 {
  color: white !important;
}

.portfolio .portfolio-item .portfolio-info p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  color: rgba(255, 255, 255, 0.8) !important;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: white !important;
}

/* Services Section Enhanced Styles - Consolidated with base styles above */

/* Hero Background Zoom Animation */
.hero {
  position: relative;
  overflow: hidden;
}

/* Hero animation moved to Hero Section above */

/*--------------------------------------------------------------
# FAQ Page Styles
--------------------------------------------------------------*/
.faq {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.faq-category {
  margin-bottom: 3rem;
}

.faq .category-title {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.faq .category-title i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

.faq .accordion {
  border: none;
}

.faq .accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq .accordion-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq .accordion-button {
  background-color: #f8f9fa !important;
  border: none !important;
  color: #333333 !important;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq .accordion-button:not(.collapsed) {
  background-color: #e9ecef !important;
  color: #333333 !important;
  box-shadow: none !important;
}

.faq .accordion-button:hover {
  background-color: #e9ecef !important;
  color: #333333 !important;
}

.faq .accordion-button:focus {
  background-color: #f8f9fa !important;
  color: #333333 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 50, 0, 0.25) !important;
  border-color: var(--accent-color) !important;
}

/* Focus styles moved above to consolidate */

.faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.faq .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.faq .accordion-body {
  padding: 1.5rem;
  background-color: #ffffff;
  color: var(--default-color);
  line-height: 1.6;
  border-radius: 0 0 8px 8px;
}

.faq .accordion-collapse {
  border-radius: 0 0 8px 8px;
}

/* FAQ Section responsive adjustments */
@media (max-width: 768px) {
  .faq .category-title {
    font-size: 1.3rem;
  }

  .faq .accordion-button {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  .faq .accordion-body {
    padding: 1.25rem;
  }
}

/* Portfolio Image Hover Zoom Animation - Fixed */
.portfolio .portfolio-item {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  background: transparent;
  transition: all 0.3s ease;
}

.portfolio .portfolio-item img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  transition: transform 0.5s ease !important;
  transform-origin: center center !important;
  object-fit: cover;
}

.portfolio .portfolio-item:hover img {
  transform: scale(1.05) !important;
}

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

/* Portfolio Container Overflow Management - Consolidated */
.portfolio {
  overflow: hidden;
}

.portfolio .row {
  overflow: hidden;
}

.portfolio .isotope-container {
  overflow: hidden !important;
}

.portfolio .isotope-container > [class*="col-"] {
  overflow: visible; /* Allow column to show content */
  padding: 15px;
}

.portfolio .isotope-container > [class*="col-"] .portfolio-item,
.portfolio .row > [class*="col-"] .portfolio-item {
  overflow: hidden !important;
}

/* Footer styles moved to Footer Section above */

/* Ensure main content starts properly */
.main {
  margin-top: 0;
  padding-top: 0;
}

/* ==========================================================================
   9. Branding & Communication Page Styles
   ========================================================================== */

/* Service content sections - Only for service detail pages */
.service-details .service-content {
	display: none;
}

.service-details .service-content.active {
	display: block;
}

/* Services list styling - Override existing styles */
.service-details .services-list .service-link {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	color: var(--default-color);
	text-decoration: none;
	border-radius: 5px;
	margin-bottom: 8px;
	transition: all 0.3s ease;
	background-color: color-mix(in srgb, var(--default-color), transparent 96%);
	margin-top: 15px;
}

.service-details .services-list .service-link:first-child {
	margin-top: 0;
}

/* Service link hover state - white text with red background */
.service-details .services-list .service-link:hover {
	background-color: var(--accent-color) !important;
	color: #ffffff !important;
}

.service-details .services-list .service-link:hover span {
	color: #ffffff !important;
}

.service-details .services-list .service-link:hover i {
	color: #ffffff !important;
}

/* Service link active state - white text */
.service-details .services-list .service-link.active {
	background-color: var(--accent-color) !important;
	color: #ffffff !important;
}

.service-details .services-list .service-link.active span {
	color: #ffffff !important;
}

.service-details .services-list .service-link.active i {
	color: #ffffff !important;
}

.service-details .services-list .service-link i {
	margin-right: 10px;
	font-size: 16px;
}

/* Fix main menu dropdown background - override blue background */
.navmenu .dropdown ul {
	background-color: rgba(0, 0, 0, 0.9) !important;
}

.navmenu .dropdown ul li a:hover,
.navmenu .dropdown ul li.active a,
.navmenu .dropdown ul li a.active {
	background-color: var(--accent-color) !important;
	color: #ffffff !important;
}

/* Ensure dropdown links are visible */
.navmenu .dropdown ul li a {
	color: #ffffff !important;
}

/* Intro Section Styling */
.intro-section {
	background-color: var(--surface-color);
	padding: 60px 0;
}

.intro-content {
	max-width: 800px;
	margin: 0 auto;
}

.intro-icon {
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

.intro-lead {
	font-size: 1.2rem;
	line-height: 1.6;
	color: var(--default-color);
	margin-bottom: 2rem;
}

.intro-highlight {
	background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
	padding: 30px;
	border-radius: 15px;
	color: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-intro-title {
	font-size: 1.1rem;
	margin-bottom: 0;
	color: white;
}



/* custom css for home abt page
 */

.navbar-nav .nav-link{
	color: var(--white) !important;
}

/* Force mobile button to show inside slide-out menu */
.mobile-navmenu .mobile-nav-button {
  display: block !important;
  margin: 15px;
  text-align: center;
}






/* --- Styling for Form Contact Groups --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.required-asterisk {
    color: red;
    margin-left: 2px;
}

/* --- Styling for Text/Email/Textarea Inputs --- */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; 
}

/* 
--- Styling Checkboxes to look like Buttons --- 
*/

.service-selector .wpcf7-list-item {
    display: inline-block;
    margin: 0;
}

/* This styles the label as a button */
.service-selector .wpcf7-list-item-label {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, border-color 0.3s;
    display: inline-block;
    margin: 5px; 
}

/* This hides the original checkbox */
.service-selector input[type="checkbox"] {
    display: none;
}

/* This styles the button when it's "selected" (checked) */
.service-selector input[type="checkbox"]:checked + .wpcf7-list-item-label {
    background-color: #f8f9fa;
    color: black;
    border-color: red;
}

/* --- Styling the Submit Button --- */
.submit-btn {
    background-color: black;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.submit-btn:hover {
    background-color: #f8f9fa;
}

.form-group textarea {
  height: 100px; /* Change this number to whatever height you want */
}


/* custom preloader for the theme  css start
 */
/* Main Container */
.ontenet-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000; /* Black Background */
    z-index: 99999; /* High Z-Index */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    /* Smooth fade out transition */
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/* Wrapper to keep logo and spinner aligned */
.loader-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Space for text below */
}

/* The Static Logo in the Center */
.loader-logo {
    width: 40px;
    height: 40px;
    z-index: 2; /* Sits on top of the spinner visual */
    object-fit: contain;
}

/* The Spinning Ring */
.loader-ring {
    position: absolute;
    inset: 0; /* Full width/height of wrapper (80px) */
    border: 4px solid #333333; /* Dark grey inactive ring */
    border-top: 4px solid #ff3200; /* Red active ring */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

/* "Loading" Text */
.loader-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    animation: pulse 1.5s ease-in-out infinite;
    text-transform: uppercase;
    font-family: sans-serif; /* Ensure fallback font */
}

/* The "Hidden" State - Triggered by JS */
.ontenet-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}



/* custom preloader for the theme end
 */