/**
* Template Name: Strive
* Template URL: https://bootstrapmade.com/strive-bootstrap-business-template/
* Updated: Sep 20 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

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

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

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #5b5b5b;  /* The default color of the main navmenu links */
  --nav-hover-color: #ea7c00; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ea7c00; /* 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: #f5f2ef;
  --surface-color: #ffffff;
}

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

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

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

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

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

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

.logo img {
    display: block;
    margin: 0 auto;
}

.tagline {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    text-align: center;
    line-height: 1.4;
}


/*========================= WhatsApp Popup Widget ==============================*/
#wa-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    cursor: pointer;
    font-size: 26px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
}

#wa-btn i {
    line-height: 55px;
}

#wa-box {
    display: none;
    position: fixed;
    bottom: 80px;
    left: 20px;
    width: 220px;
    background: white;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    text-align: center;
    font-family: Arial, sans-serif;
	    z-index: 1111;
}

#wa-box p {
    margin-bottom: 10px;
}

#wa-box a {
    display: block;
    background: #25D366;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

#wa-box a i {
    margin-right: 5px;
}

/*.socailicons {position: absolute;
    right: 0; top: 21px;}
*/
.socailicons .share-container {
 /*position: fixed;*/
  top: 120px;
  right: 20px;   /* ✅ Right side */
  z-index: 9999;

  display: flex;
  flex-direction: column;
  align-items: flex-end; /* ✅ IMPORTANT: right align */
}

/* Button */
.socailicons .share-btn {
 width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Menu */
.socailicons .share-menu {
  position: absolute;
  right: 0;   /* 👈 right align */
  margin-top: 60px;
  display: none;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  min-width: 180px;
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.3s;
}

.socailicons .share-menu.show {
  opacity: 1;
  transform: translateY(0);
  display: block;
  z-index: 9999999;
}

/* Each Item */
.socailicons .share-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
  font-size: 16px;
}

.socailicons .share-item a {
  font-size:15px;
}


.socailicons .share-item:hover {
  background: #f1f5ff;
}

/* Icon Colors */
.whatsapp { color: #25D366; }
.facebook { color: #1877f2; }
.twitter { color: #1DA1F2; }
.linkedin { color: #0A66C2; }



.why-sip {
  padding-top: 60px;
  padding-bottom: 60px;
}

.why-sip h2{font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-align: center;}
 
.why-sip .intro-content h3 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #000;
}
.why-sip .intro-content .lead {
  font-size: 17px;
  color: color-mix(in srgb, #000000, transparent 25%);
  line-height: 1.7;
  margin-bottom: 35px;
}
.why-sip .intro-content .checklist {
  margin-bottom: 35px;
}
.why-sip .intro-content .checklist .check-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}
.why-sip .intro-content .checklist .check-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  transform: translateX(6px);
}
.why-sip .intro-content .checklist .check-item:last-child {
  margin-bottom: 0;
}
.why-sip .intro-content .checklist .check-item i {
  font-size: 22px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-sip .intro-content .checklist .check-item h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #000;
}
.why-sip .intro-content .checklist .check-item p {
  font-size: 14px;
  color: color-mix(in srgb, #000000, transparent 30%);
  margin: 0;
  line-height: 1.5;
}
.why-sip .intro-content .action-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.why-sip .intro-content .action-btns .btn {
  padding: 14px 32px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.why-sip .intro-content .action-btns .btn.btn-accent {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}
.why-sip .intro-content .action-btns .btn.btn-accent:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 55%);
}
.why-sip .intro-content .action-btns .btn.btn-ghost {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 40%);
}
.why-sip .intro-content .action-btns .btn.btn-ghost:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: var(--accent-color);
}
.why-sip .showcase-image {
  position: relative;
  text-align: center;
}
.why-sip .showcase-image::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.why-sip .showcase-image img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
}
.why-sip .highlight-box {
  background: var(--surface-color);
  padding: 30px 28px;
  border-radius: 16px;
  height: 100%;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}
.why-sip .highlight-box:hover {
  box-shadow: 0 8px 35px color-mix(in srgb, var(--default-color), transparent 86%);
  transform: translateY(-6px);
}
.why-sip .highlight-box .highlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.why-sip .highlight-box .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-sip .highlight-box .icon-circle i {
  font-size: 26px;
  color: var(--accent-color);
}
.why-sip .highlight-box .counter-badge {
  text-align: right;
}
.why-sip .highlight-box .counter-badge .purecounter {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  display: block;
}
.why-sip .highlight-box .counter-badge .counter-unit {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}
.why-sip .highlight-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}
.why-sip .highlight-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 992px) {
  .why-sip .intro-content {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .why-sip .intro-content h3 {
    font-size: 26px;
  }
  .why-sip .intro-content .checklist .check-item {
    padding: 14px 16px;
  }
  .why-sip .intro-content .action-btns .btn {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
  }
  .why-sip .highlight-box {
    padding: 24px 22px;
  }
  .why-sip .highlight-box .counter-badge .purecounter {
    font-size: 26px;
  }
  .why-sip .highlight-box h4 {
    font-size: 20px;
  }
}





/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .tabs-header {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .tabs .tabs-header {
    margin-bottom: 60px;
  }
}

.tabs .tabs-header .nav-tabs {
  border: none;
  justify-content: center;
  gap: 0;
  background: #060606;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 20px color-mix(in srgb, var(--default-color), transparent 94%);
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs {
    flex-direction: column;
    gap: 4px;
  }
}

.tabs .tabs-header .nav-tabs .nav-item {
  flex: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-item {
    flex: none;
    width: 100%;
  }
}

.tabs .tabs-header .nav-tabs .nav-link {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-number {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text h6,
.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text small {
  color: #fff;
}

.tabs .tabs-header .nav-tabs .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.tabs .tabs-header .nav-tabs .nav-link:hover:not(.active) .tab-content-preview .tab-number {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: #000;
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 12px;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
    padding: 16px 20px;
    gap: 12px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, #efe7e7, transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
  text-align: left;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
    flex: 1;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
  margin: 0 0 2px 0;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
    font-size: 13px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text small {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  display: block;
  line-height: 1;
}

.tabs .tab-content .tab-pane {
  animation: fadeInContent 0.5s ease-in-out;
}

.tabs .tab-content .content-area {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .tabs .tab-content .content-area {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.tabs .tab-content .content-area .content-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}

.tabs .tab-content .content-area .content-badge i {
  font-size: 14px;
}

.tabs .tab-content .content-area h3 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #000;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area h3 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .tabs .tab-content .content-area h3 {
    font-size: 24px;
  }
}

.tabs .tab-content .content-area p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 40px;
  font-size: 16px !important;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area p {
    font-size: 15px;
  }
}

.tabs .tab-content .content-area .highlight-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .tabs .tab-content .content-area .highlight-stats {
    gap: 24px;
  }
}

.tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
  display: block;
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
    font-size: 24px;
  }
}

.tabs .tab-content .content-area .highlight-stats .stat-item .stat-label {
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tabs .tab-content .content-area .feature-points {
  margin-bottom: 40px;
}

.tabs .tab-content .content-area .feature-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.tabs .tab-content .content-area .feature-points .point-item:last-child {
  margin-bottom: 0;
}

.tabs .tab-content .content-area .feature-points .point-item i {
  font-size: 12px;
  color: var(--accent-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.tabs .tab-content .content-area .feature-points .point-item span {
  font-size: 14px;
  line-height: 1.6;
  color: #000;
}

.tabs .tab-content .content-area .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tabs .tab-content .content-area .explore-link:hover {
  gap: 12px;
  color: var(--accent-color);
}

.tabs .tab-content .content-area .explore-link:hover i {
  transform: translate(2px, -2px);
}

.tabs .tab-content .content-area .explore-link i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.tabs .tab-content .visual-content {
  position: relative;
  padding-left: 40px;
}

@media (max-width: 992px) {
  .tabs .tab-content .visual-content {
    padding-left: 0;
  }
}

.tabs .tab-content .visual-content img {
  width: 100%;
  border-radius: 8px;
}

.tabs .tab-content .visual-content .floating-element {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element {
    bottom: 15px;
    right: 15px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card {
  background: var(--surface-color);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  animation: floatAnimation 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card {
    padding: 12px 16px;
    gap: 10px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card i {
  font-size: 20px;
  color: #fff;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card i {
    font-size: 18px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card .card-info span {
  display: block;
  font-size: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.tabs .tab-content .visual-content .floating-element .floating-card .card-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card .card-info strong {
    font-size: 12px;
  }
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAnimation {

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

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


/*--------------------------------------------------------------
# whymutul Section
--------------------------------------------------------------*/
.whymutul {
  padding: 70px 0;
}

.whymutul .image-block {
  position: relative;
  padding: 20px;
}

.whymutul h2 {
	font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-align: center;
  
}

.whymutul p {
	font-size: 18px;
    line-height: 1.8;
    color: #000;
    /* max-width: 900px; */
    margin: 0 auto;
    text-wrap: balance;
    /* margin-bottom: 80px; */
    text-align: center;
  
}

.whymutul .image-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 65%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 16px;
  z-index: 0;
}

.whymutul .image-block img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
}

.whymutul .image-block .experience-badge {
  position: absolute;
  bottom: -10px;
  left: 30px;
  z-index: 2;
  background-color: var(--accent-color);
  border-radius: 10px;
  padding: 18px 24px;
  max-width: 300px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
  .whymutul .image-block .experience-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    max-width: none;
  }
}

.whymutul .image-block .experience-badge .badge-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--contrast-color);
}

.whymutul .image-block .experience-badge .badge-inner i {
  font-size: 28px;
  flex-shrink: 0;
}

.whymutul .image-block .experience-badge .badge-inner strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.whymutul .image-block .experience-badge .badge-inner span {
  font-size: 13px;
  opacity: 0.85;
}

.whymutul .info-panel .overline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}

.whymutul .info-panel .overline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background-color: var(--accent-color);
}

.whymutul .info-panel h2 {
  font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    font-family: var(--heading-font);
    text-align: left;
    color: #000;
}

@media (max-width: 768px) {
  .whymutul .info-panel h2 {
    font-size: 28px;
  }
}

.whymutul .info-panel .intro {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 20px;
  font-weight: 400;
  text-align:left;
}

.whymutul .info-panel .text-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 16px;
  text-align:left;
}

.whymutul .counter-row {
  margin-top: 40px;
  margin-bottom: 40px;
}

.whymutul .counter-row .counter-card {
  padding: 20px;
  border-left: 3px solid var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 0 8px 8px 0;
  transition: transform 0.3s ease;
}

.whymutul .counter-row .counter-card:hover {
  transform: translateY(-3px);
}

.whymutul .counter-row .counter-card .count {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.whymutul .counter-row .counter-card .count-suffix {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.whymutul .counter-row .counter-card p {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 8px 0 0 0;
}

.whymutul .discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whymutul .discover-btn i {
  transition: transform 0.3s ease;
}

.whymutul .discover-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.whymutul .discover-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .whymutul .info-panel {
    margin-bottom: 50px;
  }

  .whymutul .counter-row {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}



.dropdown-menu{
display:none;
}

.dropdown-menu.show{
display:block;
}

 
 


/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

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

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  /*max-width: 800px;*/
  margin: 0 auto 60px;
  margin-top: 91px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 25px;
    color: #000;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: left;
}

.privacy .privacy-content .content-section h3 {
  font-size: 20px;
    color: #000000;
    margin: 30px 0 20px;
    font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
    text-align: left;
    text-wrap: auto;
    font-size: 16px;
    font-weight: 400;
}

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

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #000;
    font-size: 15px;
    line-height: 1.7;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}



 
	
.afterloginnamepan button	{
	background-color: #ea7c00 !important;
    border: 0px !important;
    margin-top: 0px;

}

.btn-getstarted {float: right;}	
	

/*.menunew {width: 100%;
    border-top: 1px solid
 color-mix(in srgb, var(--default-color), transparent 90%);}*/


.services1 {    color: var(--default-color);
    background-color: #433b32;
    padding: 60px 0;
    scroll-margin-top: 72px;
    overflow: clip;float: left;
    width: 100%;}


.services1 .cta-banner .cta-badge {
    display: inline-block;
    color: var(--contrast-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
}

.services1 .cta-banner h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--contrast-color);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.services1 .cta-banner p {
    font-size: 16px;
    color: 
 color-mix(in srgb, var(--contrast-color), transparent 15%);
    margin-bottom: 0px;
    line-height: 1.6;
}

.services1 .cta-banner .btn-primary {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
    gap: 8px;
    background: var(--contrast-color);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.services1 .cta-banner .btn-secondary {
    display: inline-flex;
    align-items: center;
    color: var(--contrast-color);
    font-weight: 600;
    font-size: 15px;
    margin-left: 12px;
    background: transparent;
    padding: 14px 28px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.3);
    border-image: initial;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}




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


.fixed-top1 {position: fixed;
    top: 48px;
    right: 0;
    left: 0;
    z-index: 1030;}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.header .logo img {
  max-height: 45px ;
    /*margin-right: 8px;*/
}

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

.header .logo span {
  font-size: 14px;
  color: var(--accent-color);
  margin-left: 2px;
  font-weight: 700;
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
  float: right;
}

.header .cta-btn a
 {
  Color:#fff;
}


/* MOBILE HEADER FIX */
@media (max-width: 767px) {

  .header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* LOGO CENTER */
  .logo {
    width: 100%;
    text-align: center !important;
  }

  /* LOGIN ICON LEFT */
  .loginicon4smallscreen {
    left: 25px;
        top: 95px;
    display: block;
  }

  /* MENU RIGHT */
  .mobile-nav-toggle {
    position: absolute;
    right: 10px;
    top: 95px;
    font-size: 24px;
  }

  /* HIDE DESKTOP LOGIN */
  .loginbtn {
    display: none;
  }

}

.mobile-login-box {
  margin-top: 80px; /* header ke niche spacing */
}

.login-card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



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

.loginicon4smallscreen {display:none;}

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

  .header .logo h1 {
    font-size: 24px;
	        text-align: center;
        margin: 0 auto;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 4px 12px;
  }

  .header .navmenu {
    order: 3;
  }
}


@media (max-width: 786px) {
  .loginicon4smallscreen {display:block;}
  
  .loginicon4smallscreen i {Color:#fff;}
  
  
    .loginbtn {
        display: none;
    }
  
}



@media (max-width: 558px) {
  .loginicon4smallscreen {display:block;}
  .btn-getstarted {/*margin: 0 auto;
        text-align: center;
        margin-top: 20px;*/
        
        width: 100%;}
		
		
.header .logo img {
    max-height: 70px;
    /* margin-right: 8px; */
    text-align: center;
    margin: 0 auto;
}		
		
}






/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section1 {
  color: var(--default-color);
    background-color: #fff;
    padding: 61px 0px 46px 0px;
    scroll-margin-top: 90px;
    overflow: clip;
    float: left;
    width: 100%;
}

@media (max-width: 1199px) {

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




.know-mf {
  padding: 60px 20px;
  /*background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  font-family: 'Poppins', sans-serif;*/
}

.know-mf h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

/* Two-column layout */
.mf-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
}

.mf-img {
  flex: 1;
}

.mf-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.5s ease;
}

/* Hover zoom effect */
.mf-img img:hover {
  transform: scale(1.05);
}

.mf-text {
  flex: 1;
}

.mf-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.mf-text p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* SIP Card Floating Text */
.sip-card::before {
  content: "SIP";
  position: absolute;
  font-size: 4rem;
  color: rgba(255,255,255,0.05);
  top: -10px;
  left: -30px;
  animation: floatText 6s infinite linear;
}

@keyframes floatText {
  0% { transform: translate(0,0) rotate(0deg);}
  50% { transform: translate(80px, 60px) rotate(15deg);}
  100% { transform: translate(0,0) rotate(0deg);}
}

/* Responsive: stack vertically on mobile */
@media screen and (max-width: 900px) {
  .mf-item {
    flex-direction: column;
    text-align: center;
  }

  .mf-img, .mf-text {
    flex: unset;
  }

  .mf-img img {
    width: 80%;
    margin: 0 auto 20px auto;
  }
}


.mf-section {
  /*background: radial-gradient(circle at top, #0f2027, #203a43, #2c5364);
  color: #fff;*/
}

.text-gradient {
  background: linear-gradient(90deg, #00f2fe, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mf-card {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0,242,254,0.15);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mf-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0,242,254,0.3), transparent);
  opacity: 0;
  transition: 0.5s;
}

.mf-card:hover::before {
  opacity: 1;
}

.mf-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 0 40px rgba(79,172,254,0.6);
}

.mf-card i {
  font-size: 45px;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #00f2fe, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mf-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.mf-card p {
  font-size: 14px;
  opacity: 0.9;
}

.innerabout .mf-card p {text-align: justify;
    margin-bottom: 0px;
    color: #fff;}

.animated-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.animated-bg span {
  position: absolute;
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #00f2fe, transparent);
  animation: moveLines 12s linear infinite;
  opacity: 0.4;
}

.animated-bg span:nth-child(1) { left: 10%; animation-duration: 10s; }
.animated-bg span:nth-child(2) { left: 25%; animation-duration: 14s; }
.animated-bg span:nth-child(3) { left: 50%; animation-duration: 11s; }
.animated-bg span:nth-child(4) { left: 75%; animation-duration: 16s; }
.animated-bg span:nth-child(5) { left: 90%; animation-duration: 13s; }

@keyframes moveLines {
  from {
    transform: translateY(100vh);
  }
  to {
    transform: translateY(-150px);
  }
}

.mf-section {
  position: relative;
  overflow: hidden;
}

.mf-section .container {
  position: relative;
  z-index: 2;
}
#particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fade-slide {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlide 1s ease forwards;
}

.fade-slide.delay {
  animation-delay: 0.5s;
}

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.header-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      color: var(--bs-primary);
    }
    
    /* --- Timeline Styles --- */
    .timeline-container {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }

    .timeline-container::after {
      content: '';
      position: absolute;
      width: 4px;
      background-color: #dee2e6;
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -2px;
      border-radius: 2px;
    }

    .timeline-item {
      padding: 10px 40px;
      position: relative;
      width: 50%;
    }
    
    .timeline-item:nth-child(odd) {
      left: 0;
    }
    
    .timeline-item:nth-child(even) {
      left: 50%;
    }
    
    .timeline-item .card {
      border: none;
      transition: all 0.3s ease-in-out;
      border-radius: 0.75rem;
    }

    .timeline-item .card:hover {
       transform: translateY(-5px);
       box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.1) !important;
    }
    
    .timeline-dot {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      right: -10px;
      background-color: white;
      border: 5px solid var(--bs-primary);
      top: 30px;
      border-radius: 50%;
      z-index: 1;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
      left: -10px;
    }
    
    .icon-wrapper {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: rgba(var(--bs-primary-rgb), 0.1);
        color: var(--bs-primary);
        margin-bottom: 1rem;
    }
    
    .icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    /* --- FAQ Accordion Styles --- */
    .accordion-button {
        font-weight: 600;
    }
    .accordion-button:not(.collapsed) {
        background-color: rgba(var(--bs-primary-rgb), 0.1);
        color: var(--bs-primary);
    }
     .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
     }
    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2320817d'%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");
    }

    /* Scroll animation styles */
    [animateOnScroll] {
      opacity: 0;
    }
    
    [animateOnScroll].is-visible {
      opacity: 1;
    }

    .animate-child {
      opacity: 0;
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      transition-delay: 0.1s;
    }
    
    .timeline-item:nth-child(odd) .animate-child {
        transform: translateX(-30px);
    }
    .timeline-item:nth-child(even) .animate-child {
        transform: translateX(30px);
    }
    
    [animateOnScroll].is-visible .animate-child {
      opacity: 1;
      transform: translateX(0);
    }

    /* Responsive adjustments */
    @media screen and (max-width: 768px) {
      .timeline-container::after {
        left: 31px;
      }
      .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
      }
      .timeline-item:nth-child(odd),
      .timeline-item:nth-child(even) {
        left: 0;
      }
      .timeline-dot {
        left: 21px;
      }
    }

.MFinvest p {margin-bottom: 10px;}


/* Header */
.page-title{
  font-size:42px;
  font-weight:800;
}
.page-subtitle{
  color:#94a3b8;
}

/* Filters */
.filter-box{
  background:#111827;
  border-radius:12px;
  padding:20px;
  border:1px solid #1f2933;
}
.filter-box input{
  background:#1f2937;
  border:none;
  color:#fff;
}
.filter-box input::placeholder{
  color:#9ca3af;
}

/* Cards */
.fund-card{
  background:#111827;
  border-radius:16px;
  padding:22px;
  border:1px solid #1f2933;
  height:100%;
}
.fund-card h5{
  font-weight:700;
}
.amc-name{
  color:#38bdf8;
  font-size:14px;
}
.badge-cap{
  background:#1f2937;
  border-radius:20px;
  padding:6px 14px;
  font-size:12px;
}
.nav-value{
  font-size:22px;
  font-weight:700;
}
.negative{ color:#f87171; }
.positive{ color:#4ade80; }

/* Fake mini chart */
.mini-chart{
  height:120px;
  background: linear-gradient(180deg, rgba(56,189,248,0.3), rgba(56,189,248,0.05));
  border-radius:10px;
  position:relative;
  overflow:hidden;
}
.mini-chart::after{
  content:"";
  position:absolute;
  inset:0;
  background:url("data:image/svg+xml,%3Csvg viewBox='0 0 300 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline fill='none' stroke='%2338bdf8' stroke-width='2' points='0,70 40,40 80,50 120,30 160,60 200,20 240,45 300,30'/%3E%3C/svg%3E") no-repeat center/100% 100%;
}

.dark-select{
  background:#1f2937;
  color:#fff;
  border:none;
  border-radius:10px;
  padding:12px;
}

.dark-select option{
  background:#020617;
  color:#fff;
}

.dark-select:focus{
  box-shadow:0 0 0 2px rgba(56,189,248,0.4);
}
.textlabel{font-weight:500; color: #fff;}

.invest-box{
  background:#020617;
  border:1px solid #1f2933;
  border-radius:14px;
  padding:15px;
}

.invest-title{
  font-weight:600;
  font-size:15px;
  color:#38bdf8;
}

.input-group-text{
  background:#1f2937;
  border:none;
  color:#fff;
}

.invest-box input{
  background:#020617;
  border:none;
  color:#fff;
}

.invest-btn{
  background:linear-gradient(135deg,#2563eb,#38bdf8);
  color:#fff;
  font-weight:600;
  border-radius:10px;
  border:none;
}

.invest-btn:hover{
  opacity:0.9;
  transform:translateY(-1px);
}


.invest-box{
  background:#020617;
  border:1px solid #1f2933;
  border-radius:14px;
  padding:14px;
}

.invest-title{
  font-size:14px;
  font-weight:600;
  color:#38bdf8;
}

.input-group-text{
  background:#1f2937;
  border:none;
  color:#fff;
}

.invest-box input{
  background:#020617;
  border:none;
  color:#fff;
}

.invest-btn{
  background:linear-gradient(135deg,#2563eb,#38bdf8);
  color:#fff;
  font-weight:600;
  border-radius:10px;
  border:none;
}

.invest-btn:hover{
  opacity:0.9;
  transform:translateY(-1px);
}


.graph-box{
  background:#0f172a;
  border-radius:14px;
  padding:12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.graph-title{
  font-size:13px;
  font-weight:600;
  color:#94a3b8;
  margin-bottom:6px;
}


.cart-btn{
  border:none;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.cart-btn.lumpsum{
  background:linear-gradient(135deg,#38bdf8,#0ea5e9);
  color:#000;
}

.cart-btn.sip{
  background:linear-gradient(135deg,#22c55e,#16a34a);
  color:#000;
}

.cart-btn:hover{
  transform:scale(1.05);
}







.gallery-section {
  /*background: radial-gradient(circle at top,#0f2027,#203a43,#2c5364);*/
}

.text-gradient {
  background: linear-gradient(90deg,#00f2fe,#4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card */
.profile-card {
  background: linear-gradient(135deg,#1c2e3a,#253f52);
  border-radius: 22px;
  padding: 18px;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 10px 35px rgba(0,0,0,0.4);
  height: 415px;
}

.profile-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 40px rgba(0,242,254,0.7);
}

.img-box {
  overflow: hidden;
  border-radius: 18px;
}

.img-box img {
  width: 100%;
  transition: 0.6s;
  height: 340px;
}

.profile-card:hover img {
  transform: scale(1.12);
}

.profile-card h5 {
  color: #fff;
  margin-top: 15px;
  font-weight: 600;
}

.profile-card span {
  color: #00f2fe;
  font-size: 14px;
}

.profile-card p {
  color: #ddd;
  font-size: 17px;
  margin-top: 8px;
}

/* Popup */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9999;
}

.popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  max-width: 600px;
  text-align: center;
  transform: scale(0.7);
  transition: 0.4s;
}

.popup.active .popup-content {
  transform: scale(1);
}

.popup-content img {
  max-width: 80vw;
  max-height: 50vh;
  border-radius: 20px;
  box-shadow: 0 0 45px rgba(0,242,254,0.7);
}

.popup-content h4 {
  color: #fff;
  margin-top: 20px;
  font-size: 20px;
}

.popup-content span {
  color: #00f2fe;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.popup-content p {
  color: #ddd;
    font-size: 16px;
    text-align: center;
}

/* Navigation */
.nav-arrow {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.nav-arrow.left { left: 40px; }
.nav-arrow.right { right: 40px; }

.close-btn {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.innerabout .intro-content .eyebrow {
  display: inline-block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 16px;
}

.innerabout h2 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    margin-bottom: 1.5rem;
    /* letter-spacing: -1px; */
    text-align: center;
    text-wrap: balance;
}

.innerabout p {
    font-size: 18px;
    line-height: 1.8;
    color:#000;
   /* max-width: 900px;*/
    margin: 0 auto;
    text-wrap: balance;
	/*margin-bottom: 80px;*/
	    text-align: center;
}

.innerabout .intro-content .headline {
  font-family: var(--heading-font);
  font-weight: 300;
  line-height: 1.2;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 24px 0;
      text-align: left;
}

.innerabout .intro-content .lead {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 24px;
      text-align: justify;
    text-wrap: auto;
}

.innerabout .intro-content p {
  line-height: 1.8;
  margin-bottom: 24px;
  color: #000;
      text-align: justify;
    text-wrap: auto;
  
}

.innerabout .intro-content .cta-group {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.innerabout .intro-content .cta-group .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 6px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: 0.3s ease-in-out;
}

.innerabout .intro-content .cta-group .btn-ghost:hover,
.innerabout .intro-content .cta-group .btn-ghost:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.innerabout .intro-content .cta-group .link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  color: var(--accent-color);
  padding-bottom: 4px;
  transition: 0.3s ease-in-out;
}

.innerabout .intro-content .cta-group .link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 40%);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: 0.3s ease-in-out;
}

.innerabout .intro-content .cta-group .link-underline:hover,
.innerabout .intro-content .cta-group .link-underline:focus {
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  outline: none;
}

.innerabout .intro-content .cta-group .link-underline:hover::after,
.innerabout .intro-content .cta-group .link-underline:focus::after {
  transform: scaleX(1);
}

.innerabout .profile-figure {
  margin: 0;
}

.innerabout .profile-figure .profile-photo {
  width: 88%;
  max-width: 440px;
  border-radius: 18px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
  margin-top: 28px;
}

.innerabout .profile-figure .profile-caption {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.innerabout .profile-figure .profile-caption .meta {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.innerabout .profile-figure .profile-caption .meta .funfact {
  font-size: 13px;
  margin-top: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.innerabout .profile-figure:hover .profile-photo {
  transform: translateY(-4px);
}

.innerabout .skill-item {
  padding: 24px;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 2%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  height: 100%;
}

.innerabout .skill-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 16px;
  display: inline-block;
}

.innerabout .skill-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 500;
}

.innerabout .skill-item p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-align: left;
}

.innerabout .skill-item:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.innerabout .timeline-item {
  position: relative;
  padding-left: 26px;
}

.innerabout .timeline-item time {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  margin-bottom: 6px;
}

.innerabout .timeline-item h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 6px;
}

.innerabout .timeline-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.innerabout .timeline-item .dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.innerabout .personal-quote {
  padding: 24px 0;
}

.innerabout .personal-quote p {
  font-family: var(--heading-font);
  font-weight: 300;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.5;
  color: #000;
  margin: 0 auto;
  max-width: 800px;
}

.innerabout .fact-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  transition: 0.3s ease-in-out;
      width: 184px;
}

.innerabout .fact-pill i {
  color: var(--accent-color);
}

.innerabout .fact-pill span {
  font-size: 14px;
}

.innerabout .fact-pill:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.innerabout .fact-pill:focus-within {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 992px) {
  .innerabout .profile-figure {
    text-align: center !important;
  }

  .innerabout .profile-figure .profile-photo {
    width: 72%;
  }

  .innerabout .intro-content .cta-group {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .innerabout .profile-figure .profile-photo {
    width: 100%;
  }
}


.sticky-top1 {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    z-index: 1020;
}

.sip-container{
max-width:1200px;
margin:auto;

}




.sip-header{
text-align:center;
margin-bottom:30px;
}


.sip-header h2{
font-weight:600;
}
.sip-header p .text-muted{
Color: #FFF !important;
}

.card-box{
background:#131428;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
padding:25px;
height:100%;
animation:fadeUp .8s ease;
}


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


label{font-weight:500; }


.value{
font-weight:600;
color:#0d6efd;
}


.result-strip{
background:linear-gradient(120deg,#0d6efd,#0b5ed7);
color:#fff;
border-radius:12px;
padding:15px;
margin-top:20px;
}


.result-strip h5{
margin:0;
font-weight:600;
}


.cta{
background: #524dd3;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    border: none;
    transition: .3s;
    font-size: 14px;
}


.cta:hover{
background:#157347;
transform:scale(1.05);
}


.share i{
margin-right:12px;
font-size:18px;
color:#fff;
cursor:pointer;
transition:.3s;
}


.share i:hover{color:#0d6efd;transform:scale(1.2)}



.top-bar{
  /*border:1px solid #0ea5e9;*/
  border-radius:16px;
  padding:12px;
}

.tabs{
  display:flex;
  gap:12px;
  margin-bottom: 28px;
}

.tab{
  background:#020617;
  border:1px solid #0ea5e9;
  color:#22d3ee;
  padding:6px 18px;
  border-radius:12px;
  font-weight:700;
}

.tab.active{
  background:#22d3ee;
  color:#000;
}

.top-filter-bar{
  background:linear-gradient(145deg,#020617,#020617);
  border:1px solid #1e293b;
  border-radius:18px;
  padding:18px;
  margin-bottom:25px;
}

.top-filter-bar label{
  color:#94a3b8;
  font-size:13px;
  margin-bottom:5px;
}

.dark-select{
  background:#020617;
  color:#fff;
  border:1px solid #22d3ee;
  border-radius:12px;
}

.dark-select:focus{
  box-shadow:0 0 0 0.15rem rgba(34,211,238,.25);
  border-color:#22d3ee;
}


.scheme-card{
  border:1px solid #0ea5e9;
  border-radius:18px;
  padding:16px;
}

.scheme-card h5{
  color:#22d3ee;
}

.returns{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin:12px 0;
  font-size:12px;
}

.returns span{
  color:#22c55e;
  font-weight:700;
}

.invest{
  text-align:right;
  font-weight:700;
  cursor:pointer;
}

.scheme-section{
  display:none;
}
.scheme-section.active{
  display:block;
}

.popuptop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  display:none;
  justify-content:center;
  align-items:center;
}

.popup-boxtop{
  background:#020617;
  border:1px solid #0ea5e9;
  border-radius:18px;
  padding:20px;
  width:320px;
  position:relative;
}

.close{
  position:absolute;
  top:10px;
  right:14px;
  cursor:pointer;
}

.cart-buttons{
  display:flex;
  gap:10px;
  margin-top:12px;
}

.cart-btn{
  flex:1;
  border:none;
  border-radius:12px;
  padding:6px;
  font-weight:700;
  font-size:13px;
}

.cart-btn.lumpsum{
  background:#22d3ee;
  color:#000;
}

.cart-btn.sip{
  background:#a855f7;
  color:#fff;
}


.popuptop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:999;
}

.popup-boxtop{
  background:#020617;
  border:1px solid #22d3ee;
  border-radius:18px;
  padding:22px;
  width:320px;
  position:relative;
}

.popup-boxtop h5{
  color: #22d3ee;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.popup-boxtop p {margin-bottom: 0px;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
    font-weight: 400 !important;
    font-size: 14px;
    text-align: left;}

.close{
  position:absolute;
  top:10px;
  right:14px;
  cursor:pointer;
  font-size:18px;
}

.pagination-wrap{
  margin-top:40px;
}

.pagination .page-link{
  background:#020617;
  border:1px solid #1e293b;
  color:#22d3ee;
  border-radius:10px;
  margin:0 4px;
  font-weight:600;
}

.pagination .page-item.active .page-link{
  background:#22d3ee;
  color:#020617;
  border-color:#22d3ee;
}

.pagination .page-link:hover{
  background:#0f172a;
  color:#22d3ee;
}

.pagination .page-link:focus{
  box-shadow:none;
}


.card-actions{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
}

/* Common */
.cart-buttons .icon-btn{
  display:flex;
  align-items:center;
  gap:6px;
  border-radius:12px;
  /*padding:6px 10px;*/
  font-size:13px;
  font-weight:600;
  border:1px solid transparent;
  cursor:pointer;
  background-color:transparent;
}

/* Share icon only */
.cart-buttons .icon-btn.share{
  /*background:#020617;
  border:1px solid #38bdf8;*/
  color:#38bdf8;
  width:38px;
  justify-content:center;
}

/* Lumpsum */
.cart-buttons .icon-btn.lumpsum{
  background:#22d3ee;
  color:#020617;
}

/* SIP */
.cart-buttons .icon-btn.sip{
  background:#a855f7;
  color:#fff;
}

.cart-buttons .icon-btn i{
  font-size:22px;
}

.cart-buttons .share i {color:#524dd3;}
/*

.numbers-bg{
  position:relative;
  background:#020617;
  padding:90px 0;
  overflow:hidden;
}

.numbers-bg span{
  position:absolute;
  font-size:40px;
  font-weight:700;
  color:rgba(56,189,248,.15);
  animation: floatNum 18s infinite linear;
}

.numbers-bg span:nth-child(1){ left:10%; animation-delay:0s; }
.numbers-bg span:nth-child(2){ left:30%; animation-delay:4s; }
.numbers-bg span:nth-child(3){ left:50%; animation-delay:8s; }
.numbers-bg span:nth-child(4){ left:70%; animation-delay:12s; }
.numbers-bg span:nth-child(5){ left:90%; animation-delay:16s; }

@keyframes floatNum{
  from{ transform:translateY(110vh); }
  to{ transform:translateY(-20vh); }
}*/

.SIPdiv {background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../../assets/img/SIPbg.png) center / cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--contrast-color);
    padding: 120px 20px;
    position: relative;
	-webkit-animat ion:mymove 5s linear infinite;
    /* Safari and Chrome */
    anima tion:mymove 5s linear infinite;


	
	}

@-webkit-keyframes mymove {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 0% -100%;
    }
}
@keyframes mymove {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 0% -100%;
    }
}

.topPERFORMING {background-color: #131428;
    box-shadow: 66px 0px 43px 52px 
 color-mix(in srgb, var(--default-color), transparent 88%);
    /* border: 1px solid
 color-mix(in srgb, var(--default-color), transparent 92%); */
  /* border: 1px solid
 color-mix(in srgb, var(--accent-color), transparent 85%);*/}






/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.headerinn {
  --background-color: #5b5b5b;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}


/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #5b5b5b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #5b5b5b;
  --nav-color: #ffffff;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
    /*background-color: var(--nav-hover-color);*/
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  float: left;
    width: 100%;
	margin-top: 20px;
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer p {
  Color:#fff
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  text-align:center;
  Color:#fff;
}

.footer .footer-content p .tx{
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  text-align:center;
  Color:#fff;
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

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

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

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

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact p .tx {
  Color:#fff !IMPORTANT;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

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

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .credits {
  margin-top: 8px;
    font-size: 13px;
    margin-bottom: 31px;
}

.footer .credits a {
  color: #ea7c00;
}

.sitename img {width: 80px;}


.footer .copyright p {text-align:center; color: #fff;}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

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

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

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

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s 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);
  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: 100px;
}

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

.page-title .heading {
  padding: 80px 0;
}

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

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 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%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
 font-size: 2.5rem;
    font-weight: 700;
    padding: 0;
    /* line-height: 1px; */
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 7px;
}

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

.section-title p {
  /*color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 5px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);*/
  font-size: 1.1rem;
    color: 
 color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
  margin-top: 93px;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  text-align: center;
}

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

.hero .info .btn-get-started:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

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

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

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

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.about .about-img img {
  border-radius: 20px;
}

.about-h2 {font-size:30px;}

.about .experience-badge {
  position: absolute;
  bottom: -30px;
  left: 20px;
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 160px;
}

.about .experience-badge h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: var(--accent-color);
}

.about .experience-badge p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--heading-color);
}

.about .projects-badge {
  position: absolute;
  top: 40px;
  right: 0;
  background-color: var(--accent-color);
  padding: 20px;
  border-radius: 10px 0 0 10px;
  text-align: center;
  min-width: 160px;
}

.about .projects-badge h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: var(--contrast-color);
}

.about .projects-badge p {
  margin: 5px 0 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--contrast-color);
}

.about .feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about .feature-item .feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .feature-item .feature-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.about .feature-item .feature-content h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.about .feature-item .feature-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

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

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

.about .btn-primary {
  background-color: var(--accent-color);
  border: none;
  padding: 15px 38px;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.about .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}



@media (max-width: 991.98px) {
  .about .experience-badge {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    min-width: 140px;
  }

  .about .experience-badge h2 {
    font-size: 2.8rem;
  }

  .about .experience-badge p {
    font-size: 0.8rem;
  }

  .about .projects-badge {
    top: 15px;
    right: 15px;
    padding: 15px;
    min-width: 140px;
    border-radius: 10px;
  }

  .about .projects-badge h2 {
    font-size: 2rem;
  }

  .about .projects-badge p {
    font-size: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .about .experience-badge {
    padding: 12px;
    min-width: 120px;
  }

  .about .experience-badge h2 {
    font-size: 2.2rem;
  }

  .about .experience-badge p {
    font-size: 0.75rem;
  }

  .about .projects-badge {
    padding: 12px;
    min-width: 120px;
  }

  .about .projects-badge h2 {
    font-size: 1.8rem;
  }

  .about .projects-badge p {
    font-size: 0.7rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  position: relative;
}

.services .services-content .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.services .services-content h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .services .services-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .services .services-content h2 {
    font-size: 28px;
  }
}

.services .services-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.services .services-content .btn-consultation {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .services-content .btn-consultation span {
  margin-right: 8px;
}

.services .services-content .btn-consultation i {
  transition: transform 0.3s ease;
}

.services .services-content .btn-consultation:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services .services-content .btn-consultation:hover i {
  transform: translateX(5px);
}

.services .services-image {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: flex-end;
}

.services .services-image img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  object-fit: cover;
}

.services .services-image .shape-circle {
  position: absolute;
  right: -30px;
  top: -30px;
  height: 180px;
  width: 180px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  z-index: 1;
}

.services .services-image .shape-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 1;
  animation: float 5s infinite ease-in-out;
}

@media (max-width: 992px) {
  .services .services-image {
    margin-top: 30px;
    height: 300px;
    justify-content: center;
  }
}

.services .services-slider {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}

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

.services .service-card {
  background-color: #ea7c00;
  padding: 32px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  height: 335px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services .service-card .icon-box {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.4s;
  Color:#ea7c00;
}

.services .service-card .icon-box i {
  font-size: 30px;
  color: #ea7c00;
  transition: all 0.4s;
}

.services .service-card .arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: #ea7c00;
  background-color: #fff;
  border-radius: 50%;
  transform: rotate(-45deg);
  position: absolute;
  right: -50px;
  top: -50px;
  transition: all 0.4s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services .service-card .content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  Color:#fff;
}

.services .service-card .content h4 a {
  color: #fff;
  transition: all 0.4s;
}

.services .service-card .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: all 0.4s;
  Color:#fff;
}

.services .service-card .content .service-number {
  position: relative;
  padding-left: 76px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s;
}

.services .service-card .content .service-number::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 1px;
  width: 70px;
  background-color: var(--accent-color);
  transition: all 0.4s;
}

.services .service-card:hover {
  background-color: #ea7c00;
  transform: translateY(-5px);
}

.services .service-card:hover .icon-box {
  background-color: #fff;
}

.services .service-card:hover .icon-box i {
  color: var(--accent-color);
}

.services .service-card:hover .arrow-link {
  top: 16px;
  right: 16px;
  background-color: var(--contrast-color);
}

.services .service-card:hover .content h4 a {
  color: var(--contrast-color);
}

.services .service-card:hover .content p {
  color: var(--contrast-color);
}

.services .service-card:hover .content .service-number {
  color: var(--contrast-color);
  padding-left: 0;
}

.services .service-card:hover .content .service-number::after {
  background-color: var(--contrast-color);
  left: 30px;
}

.services .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.services .swiper-navigation button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  transition: all 0.4s;
  margin-right: 10px;
}

.services .swiper-navigation button:last-child {
  margin-right: 0;
}

.services .swiper-navigation button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes float {

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

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

.call-to-action .cta-content {
  padding-right: 20px;
}

@media (max-width: 992px) {
  .call-to-action .cta-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.call-to-action .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #6c5ce7 50%) 100%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .badge i {
  font-size: 16px;
}

.call-to-action h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .call-to-action h2 {
    font-size: 2rem;
  }
}

.call-to-action .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.call-to-action .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.call-to-action .features-list .feature-item i {
  color: #22c55e;
  font-size: 18px;
  flex-shrink: 0;
}

.call-to-action .features-list .feature-item span {
  font-weight: 500;
  color: var(--default-color);
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

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

.call-to-action .cta-buttons .btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #6c5ce7 50%) 100%);
  color: var(--contrast-color);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.call-to-action .cta-buttons .btn.btn-outline {
  background: var(--surface-color);
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

.call-to-action .trust-indicators small {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.call-to-action .trust-indicators .rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.call-to-action .trust-indicators .rating i {
  color: #fbbf24;
  font-size: 14px;
}

.call-to-action .trust-indicators .rating span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 70%);
  pointer-events: none;
}

.features .features-content {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .features .features-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
}

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

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

.features .features-content>p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.features .main-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

@media (max-width: 768px) {
  .features .main-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.features .main-feature .feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 2rem;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features .main-feature .feature-text h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.features .main-feature .feature-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.6;
}

.features .btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  border: none;
}

.features .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .features .features-grid {
    grid-template-columns: 1fr;
  }
}

.features .feature-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #df7322;
  /*border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);*/
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.features .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, transparent 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.features .feature-card:hover::before {
  opacity: 1;
}

.features .feature-card:hover .icon-wrapper {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
  color: var(--contrast-color);
}

.features .feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.features .feature-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

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

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/\


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

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

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

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

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

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

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

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

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

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

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

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

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

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

.portfolio .portfolio-card .portfolio-info h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
  text-align: center;
}

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

.portfolio .portfolio-card .portfolio-info .portfolio-tags {
  /*display: flex; */
    flex-wrap: wrap;
    gap: 14px;
    text-align: center;
    margin-top: 23px;
    /* margin: 0 auto;*/
}

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

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

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







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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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









/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 40px;
  background-color: var(--surface-color);
  border-radius: 16px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

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

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

.pricing .pricing-item .pricing-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.pricing .pricing-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing .pricing-item .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.pricing .pricing-item .price .currency {
  font-size: 24px;
  font-weight: 500;
  vertical-align: super;
}

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

.pricing .pricing-item .description {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.pricing .pricing-item .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing .pricing-item .features-list li {
  padding: 12px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

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

.pricing .pricing-item .btn-pricing {
  display: inline-block;
  padding: 12px 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pricing .pricing-item .btn-pricing:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-item.featured {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: linear-gradient(to bottom right, color-mix(in srgb, var(--accent-color), transparent 97%), var(--surface-color));
}

.pricing .pricing-item.featured .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

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

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

@media (max-width: 768px) {
  .pricing .pricing-item {
    padding: 30px 20px;
  }

  .pricing .pricing-item .price {
    font-size: 40px;
  }

  .pricing .pricing-item .price .currency {
    font-size: 20px;
  }

  .pricing .pricing-item .price .period {
    font-size: 14px;
  }

  .pricing .pricing-item .features-list li {
    font-size: 14px;
  }

  .pricing .pricing-item .btn-pricing {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
}

.faq .faq-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.faq .faq-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.faq .faq-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.faq .faq-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq .faq-tabs .nav-pills .nav-link i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    margin: 5px;
  }
}

.faq .faq-list .faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-list .faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq .faq-list .faq-item h3 {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-list .faq-item h3:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.faq .faq-list .faq-item h3 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq .faq-list .faq-item h3 .question {
  flex: 1;
}

.faq .faq-list .faq-item h3 .faq-toggle {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 15px;
}

.faq .faq-list .faq-item .faq-content {
  padding: 15px;
  display: none;
}

.faq .faq-list .faq-item .faq-content p {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.faq .faq-list .faq-item .faq-content p:last-child {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-list .faq-item.faq-active h3 {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  display: block;
}

.faq .faq-cta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 30px;
  border-radius: 10px;
}

.faq .faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.faq .faq-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .faq .faq-list .faq-item h3 {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .faq .faq-list .faq-item h3 .num {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 0.8rem;
  }

  .faq .faq-list .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-list .faq-item .faq-content.faq-active .content-inner {
    padding: 15px 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 30px rgba(54, 144, 231, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  height: 470px;
}

.team .team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(54, 144, 231, 0.15);
}

.team .team-card:hover .image-wrapper .social-links {
  opacity: 1;
  visibility: visible;
}

.team .image-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.team .image-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.team .image-wrapper .social-links {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.team .image-wrapper .social-links a {
  width: 35px;
  height: 35px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.team .image-wrapper .social-links a:hover {
  background: var(--heading-color);
  transform: scale(1.1);
}

.team .content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.team .content .position {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 15px;
}

.team .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .team .team-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .team .image-wrapper img {
    width: 100px;
    height: 100px;
  }

  .team .image-wrapper .social-links {
    width: 100px;
    height: 100px;
    gap: 8px;
  }

  .team .image-wrapper .social-links a {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .team .content h4 {
    font-size: 20px;
  }

  .team .content .position {
    font-size: 13px;
  }

  .team .content p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .featured-post {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.recent-posts .featured-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.recent-posts .featured-post:hover .featured-img img {
  transform: scale(1.05);
}

.recent-posts .featured-post:hover .post-title a {
  color: var(--accent-color);
}

.recent-posts .featured-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.recent-posts .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-posts .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recent-posts .featured-content {
  padding: 32px;
}

.recent-posts .post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.recent-posts .post-title {
  margin: 0 0 20px 0;
}

.recent-posts .post-title a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.recent-posts .post-title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-excerpt {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.recent-posts .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recent-posts .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recent-posts .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.recent-posts .author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recent-posts .author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.recent-posts .read-time {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .read-more {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.recent-posts .read-more::after {
  content: "→";
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.recent-posts .read-more:hover::after {
  margin-left: 12px;
}

.recent-posts .recent-post {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.recent-posts .recent-post:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.recent-posts .recent-post:hover .recent-title a {
  color: var(--accent-color);
}

.recent-posts .recent-post:hover .recent-img img {
  transform: scale(1.05);
}

.recent-posts .recent-img {
  height: 270px;
  overflow: hidden;
}

.recent-posts .recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-posts .recent-content {
  padding: 20px;
  height: 277px;
}

.recent-posts .recent-title {
  margin: 8px 0 12px 0;
  line-height: 20px;
  font-size:15px;
  line-height:22px
      text-align: justify;
    text-wrap: auto;
}

.recent-posts .recent-title a {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.recent-posts .recent-title a:hover {
  color: var(--accent-color);
}

.recent-posts .recent-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.recent-posts .recent-meta .author {
  color: var(--heading-color);
  font-weight: 500;
}

.recent-posts .recent-meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .recent-meta .date a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 17px;
}

.recent-posts .category {
      display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 11px 12px;
    background: linear-gradient(135deg,
 color-mix(in srgb, var(--accent-color), transparent 90%),
 color-mix(in srgb, var(--accent-color), transparent 80%));
    color: var(--accent-color);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    text-align: center;
    justify-items: center;
    width: 100%;
}

.recent-posts .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.recent-posts .post-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 991px) {
  .recent-posts .featured-post {
    margin-bottom: 40px;
  }

  .recent-posts .featured-img {
    height: 250px;
  }

  .recent-posts .featured-content {
    padding: 24px;
  }

  .recent-posts .post-title a {
    font-size: 24px;
  }

  .recent-posts .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .recent-posts .recent-post {
    display: flex;
    margin-bottom: 16px;
  }

  .recent-posts .recent-img {
    flex: 0 0 100px;
    height: 100px;
  }

  .recent-posts .recent-content {
    flex: 1;
    padding: 16px;
  }

  .recent-posts .recent-title a {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .recent-posts .post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .recent-posts .recent-post {
    flex-direction: column;
  }

  .recent-posts .recent-img {
    flex: none;
    height: 120px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
  text-align: left;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

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

.portfolio-details .portfolio-slider-container .portfolio-details-slider {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(54, 144, 231, 0.1);
}

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

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-pagination {
  bottom: 20px;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--surface-color);
  opacity: 0.5;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-next,
.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-prev {
  color: var(--surface-color);
  background: rgba(54, 144, 231, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-next:after,
.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 600;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-next:hover,
.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-prev:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-slide img {
    height: 250px;
  }
}

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

.portfolio-details .project-description p {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
}

.portfolio-details .project-description .feature-highlights {
  margin: 50px 0;
}

.portfolio-details .project-description .feature-highlights h3 {
  color: var(--heading-color);
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.portfolio-details .project-description .feature-highlights .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(54, 144, 231, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(54, 144, 231, 0.1);
}

.portfolio-details .project-description .feature-highlights .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(54, 144, 231, 0.15);
}

.portfolio-details .project-description .feature-highlights .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portfolio-details .project-description .feature-highlights .feature-item .feature-icon i {
  color: var(--contrast-color);
  font-size: 22px;
}

.portfolio-details .project-description .feature-highlights .feature-item .feature-content h4 {
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.portfolio-details .project-description .feature-highlights .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.portfolio-details .project-description .technologies-used h3 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 600;
}

.portfolio-details .project-description .technologies-used .tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portfolio-details .project-description .technologies-used .tech-stack .tech-tag {
  background: var(--surface-color);
  color: var(--accent-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid rgba(54, 144, 231, 0.2);
  transition: all 0.3s ease;
}

.portfolio-details .project-description .technologies-used .tech-stack .tech-tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.portfolio-details .project-info-card {
  background: var(--surface-color);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(54, 144, 231, 0.1);
  margin-bottom: 30px;
  border: 1px solid rgba(54, 144, 231, 0.08);
}

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

.portfolio-details .project-info-card .info-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(54, 144, 231, 0.1);
}

.portfolio-details .project-info-card .info-item:last-child {
  border-bottom: none;
  margin-bottom: 30px;
}

.portfolio-details .project-info-card .info-item h4 {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-details .project-info-card .info-item p {
  color: var(--default-color);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.portfolio-details .project-info-card .info-item p a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .project-info-card .info-item p a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.portfolio-details .project-info-card .info-item p a i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.portfolio-details .project-info-card .info-item p a:hover i {
  transform: translate(3px, -3px);
}

.portfolio-details .project-info-card .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.portfolio-details .project-info-card .cta-buttons .btn {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.portfolio-details .project-info-card .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.portfolio-details .project-info-card .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(54, 144, 231, 0.3);
}

.portfolio-details .project-info-card .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid rgba(54, 144, 231, 0.3);
}

.portfolio-details .project-info-card .cta-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .portfolio-details .project-info-card {
    padding: 25px;
  }

  .portfolio-details .project-info-card .cta-buttons .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

.portfolio-details .project-stats-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
  padding: 35px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(54, 144, 231, 0.2);
}

.portfolio-details .project-stats-card h3 {
  color: var(--contrast-color);
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 700;
}

.portfolio-details .project-stats-card .stat-item {
  text-align: center;
  margin-bottom: 25px;
}

.portfolio-details .project-stats-card .stat-item:last-child {
  margin-bottom: 0;
}

.portfolio-details .project-stats-card .stat-item .stat-number {
  color: var(--contrast-color);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 5px;
  display: block;
}

.portfolio-details .project-stats-card .stat-item .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .portfolio-details .project-stats-card {
    padding: 25px;
  }

  .portfolio-details .project-stats-card .stat-item .stat-number {
    font-size: 28px;
  }
}

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

.portfolio-details .related-projects .related-item {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(54, 144, 231, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(54, 144, 231, 0.1);
}

.portfolio-details .related-projects .related-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(54, 144, 231, 0.15);
}

.portfolio-details .related-projects .related-item:last-child {
  margin-bottom: 0;
}

.portfolio-details .related-projects .related-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.portfolio-details .related-projects .related-item .related-content {
  padding: 20px;
}

.portfolio-details .related-projects .related-item .related-content h4 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio-details .related-projects .related-item .related-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.portfolio-details .related-projects .related-item .related-content .related-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.portfolio-details .related-projects .related-item .related-content .related-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.portfolio-details .related-projects .related-item .related-content .related-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.portfolio-details .related-projects .related-item .related-content .related-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 992px) {
  .portfolio-details .project-description {
    margin-bottom: 40px;
  }

  .portfolio-details .project-description .feature-highlights .feature-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .portfolio-details .project-description h2 {
    font-size: 26px;
  }

  .portfolio-details .project-description .feature-highlights h3,
  .portfolio-details .project-description .technologies-used h3 {
    font-size: 20px;
  }

  .portfolio-details .project-description .feature-highlights .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .portfolio-details .project-description .technologies-used .tech-stack .tech-tag {
    padding: 6px 14px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-main-content .service-image {
  margin-bottom: 40px;
}

.service-details .service-main-content .service-image img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-details .service-main-content .service-image img:hover {
  transform: translateY(-5px);
}

.service-details .service-main-content .service-description h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-main-content .service-description .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-details .service-main-content .service-description p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--default-color);
}

.service-details .service-main-content .features-included {
  margin: 50px 0;
  padding: 40px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-details .service-main-content .features-included h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-main-content .features-included .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.service-details .service-main-content .features-included .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-details .service-main-content .features-included .feature-item .feature-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.service-details .service-main-content .features-included .feature-item .feature-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-main-content .features-included .feature-item .feature-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-main-content .process-steps {
  margin-top: 50px;
}

.service-details .service-main-content .process-steps h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-main-content .process-steps .steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-details .service-main-content .process-steps .step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-details .service-main-content .process-steps .step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-main-content .process-steps .step-item .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  flex-shrink: 0;
}

.service-details .service-main-content .process-steps .step-item .step-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-main-content .process-steps .step-item .step-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-details .service-sidebar .service-info-card,
.service-details .service-sidebar .testimonial-card,
.service-details .service-sidebar .cta-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-details .service-sidebar .service-info-card:hover,
.service-details .service-sidebar .testimonial-card:hover,
.service-details .service-sidebar .cta-card:hover {
  transform: translateY(-5px);
}

.service-details .service-sidebar .service-info-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info-card .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info-card .info-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info-card .info-item .info-label {
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .service-info-card .info-item .info-value {
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .service-sidebar .testimonial-card .quote-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .quote-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.service-details .service-sidebar .testimonial-card p {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--default-color);
}

.service-details .service-sidebar .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .testimonial-card .testimonial-author .author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.service-details .service-sidebar .testimonial-card .testimonial-author .author-info h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

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

.service-details .service-sidebar .cta-card {
  text-align: center;
}

.service-details .service-sidebar .cta-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-sidebar .cta-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-sidebar .cta-card .btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border: none;
  border-radius: 12px;
  padding: 12px 30px;
  font-weight: 600;
  color: var(--contrast-color);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.service-details .service-sidebar .cta-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(54, 144, 231, 0.3);
  color: var(--contrast-color);
}

.service-details .service-sidebar .cta-card .contact-info .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.service-details .service-sidebar .cta-card .contact-info .contact-item i {
  color: var(--accent-color);
}

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

@media (max-width: 768px) {
  .service-details .service-main-content .service-description h2 {
    font-size: 2rem;
  }

  .service-details .service-main-content .features-included {
    padding: 25px;
  }

  .service-details .service-main-content .process-steps .step-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .service-details .service-sidebar {
    margin-top: 40px;
  }
}

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

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts .featured-post {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.blog-posts .featured-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.blog-posts .featured-post:hover .featured-img img {
  transform: scale(1.05);
}

.blog-posts .featured-post:hover .post-title a {
  color: var(--accent-color);
}

.blog-posts .featured-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.blog-posts .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-posts .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-posts .featured-content {
  padding: 32px;
}

.blog-posts .post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.blog-posts .post-title {
  margin: 0 0 20px 0;
}

.blog-posts .post-title a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-posts .post-title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-excerpt {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.blog-posts .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-posts .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-posts .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-posts .author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-posts .author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.blog-posts .read-time {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .read-more {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.blog-posts .read-more::after {
  content: "→";
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.blog-posts .read-more:hover::after {
  margin-left: 12px;
}

.blog-posts .recent-post {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-posts .recent-post:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.blog-posts .recent-post:hover .recent-title a {
  color: var(--accent-color);
}

.blog-posts .recent-post:hover .recent-img img {
  transform: scale(1.05);
}

.blog-posts .recent-img {
  height: 120px;
  overflow: hidden;
}

.blog-posts .recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-posts .recent-content {
  padding: 20px;
}

.blog-posts .recent-title {
  margin: 8px 0 12px 0;
}

.blog-posts .recent-title a {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-posts .recent-title a:hover {
  color: var(--accent-color);
}

.blog-posts .recent-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.blog-posts .recent-meta .author {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-posts .recent-meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 80%));
  color: var(--accent-color);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.blog-posts .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.blog-posts .post-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 991px) {
  .blog-posts .featured-post {
    margin-bottom: 40px;
  }

  .blog-posts .featured-img {
    height: 250px;
  }

  .blog-posts .featured-content {
    padding: 24px;
  }

  .blog-posts .post-title a {
    font-size: 24px;
  }

  .blog-posts .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .blog-posts .recent-post {
    display: flex;
    margin-bottom: 16px;
  }

  .blog-posts .recent-img {
    flex: 0 0 100px;
    height: 100px;
  }

  .blog-posts .recent-content {
    flex: 1;
    padding: 16px;
  }

  .blog-posts .recent-title a {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .blog-posts .post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .blog-posts .recent-post {
    flex-direction: column;
  }

  .blog-posts .recent-img {
    flex: none;
    height: 120px;
  }
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

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

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

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

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.blog-author-widget img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}