/* 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: "Lato", sans-serif;
   --nav-font: "Poppins", 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: #f5f5ff;
   /* Background color for the entire website, including individual sections */
   --default-color: #1c1a55;
   /* Default color used for the majority of the text content across the entire website */
   --heading-color: #0f0b46;
   /* Color for headings, subheadings and title throughout the website */
   --accent-color: #271bb1;
   /* 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. */
   --header-background: white;
   --header-scrolled-background: rgba(39, 27, 177, 0.95);
   --header-border: rgba(39, 27, 177, 0.12);
   --header-text: #1b164e;
   --header-link: #271bb1;
   --header-link-hover: #421be8;
}

/* 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: #1c1a55;
   /* The default color of the main navmenu links */
   --nav-hover-color: #ffffff;
   /* Applied to main navmenu links when they are hovered over or active */
   --nav-mobile-background-color: rgba(255,
         255,
         255,
         0.98);
   /* 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: #1b164e;
   /* Used for navigation links of the dropdown items in the navigation menu. */
   --nav-dropdown-hover-color: #271bb1;
   /* 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: #f8f8f8;
   --surface-color: #ffffff;
}

.dark-background {
   /* --background-color: #312f46; */
   --background-color: #2b247a;
   --default-color: #ffffff;
   --heading-color: #ffffff;
   --surface-color: #252525;
   --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
   scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
   color: var(--default-color);
   background-color: var(--background-color);
   font-family: var(--default-font);
}

a {
   color: var(--accent-color);
   text-decoration: none;
   transition: 0.3s;
}

a:hover {
   color: color-mix(in srgb, var(--accent-color), transparent 25%);
   text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   color: var(--heading-color);
   font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
   display: none;
   background: #df1529;
   color: #ffffff;
   text-align: left;
   padding: 15px;
   margin-bottom: 24px;
   font-weight: 600;
}

.php-email-form .sent-message {
   display: none;
   color: #ffffff;
   background: #059652;
   text-align: center;
   padding: 15px;
   margin-bottom: 24px;
   font-weight: 600;
}

.php-email-form .loading {
   display: none;
   background: var(--surface-color);
   text-align: center;
   padding: 15px;
   margin-bottom: 24px;
}

.php-email-form .loading:before {
   content: "";
   display: inline-block;
   border-radius: 50%;
   width: 24px;
   height: 24px;
   margin: 0 10px -6px 0;
   border: 3px solid var(--accent-color);
   border-top-color: var(--surface-color);
   animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
   0% {
      transform: rotate(0deg);
   }

   100% {
      transform: rotate(360deg);
   }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* HEADER FULL WIDTH */
.header {
   width: 100%;
   background: var(--header-background);
   border-bottom: 1px solid var(--header-border);
   box-shadow: 0 18px 50px rgba(39, 27, 177, 0.08);
   z-index: 10001;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   transition:
      background 0.4s ease,
      box-shadow 0.4s ease,
      border-color 0.4s ease,
      transform 0.4s ease;
   backdrop-filter: blur(16px);
}

.header-container {
   width: 100%;
   max-width: 1350px;
   margin: 0 auto;
   padding: 18px 32px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
}

/* LOGO */
.logo {
   display: flex;
   align-items: center;
   gap: 12px;
}

.logo img {
   max-height: 52px;
   filter: drop-shadow(0 10px 20px rgba(39, 27, 177, 0.12));
}

.logo h1 {
   font-size: 16px;
   font-weight: 800;
   color: var(--header-text);
   line-height: 1.1;
}

.logo h1 span {
   font-size: 12px;
   font-weight: 500;
   color: rgba(27, 22, 78, 0.8);
}

/* NAV */
.navmenu ul {
   display: flex;
   list-style: none;
   gap: 22px;
   margin: 0;
   align-items: center;
}

.navmenu a {
   text-decoration: none;
   color: var(--header-text);
   font-weight: 600;
   letter-spacing: 0.02em;
   position: relative;
   transition: color 0.3s ease;
}

.navmenu a::after {
   content: "";
   height: 3px;
   width: 0;
   background: linear-gradient(90deg, #3b2ee0, #271bb1);
   position: absolute;
   left: 0;
   bottom: -8px;
   transition: width 0.3s ease;
}

.navmenu a:hover,
.navmenu a.active {
   color: var(--header-link-hover);
}

.navmenu a:hover::after,
.navmenu a.active::after {
   width: 100%;
}

/* RIGHT SIDE */
.header-right {
   display: flex;
   align-items: center;
   gap: 14px;
}

/* LOGIN BUTTON */
.login-btn {
   background: linear-gradient(135deg, #271bb1 0%, #4b3ae8 100%);
   color: white;
   padding: 11px 20px;
   border-radius: 999px;
   text-decoration: none;
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 0.02em;
   box-shadow: 0 18px 40px rgba(39, 27, 177, 0.18);
   transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      background 0.3s ease;
}

.login-btn:hover {
   transform: translateY(-2px);
   background: linear-gradient(135deg, #3219dd 0%, #1b193a 100%);
   color: white;
}

.login-btn.secondary {
   background: rgba(39, 27, 177, 0.08);
   color: var(--header-link);
   border: 1px solid rgba(39, 27, 177, 0.18);
   box-shadow: none;
}

.login-btn.secondary:hover {
   background: rgba(39, 27, 177, 0.14);
}

.mobile-extra .login-btn {
   display: block;
   width: 100%;
   text-align: center;
   color: white;
}

.mobile-extra .login-btn:hover {

   color: white;
   background: #0b1864;
}

.lang-dropdown {
   padding: 10px 14px;
   border-radius: 14px;
   border: 1px solid rgba(39, 27, 177, 0.18);
   background: #ffffff;
   color: #271bb1;
   min-width: 140px;
   font-weight: 600;
   font-size: 0.95rem;
   letter-spacing: 0.01em;
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   cursor: pointer;
   position: relative;
   z-index: 9999;
   background-image: linear-gradient(45deg, transparent 50%, #271bb1 50%), linear-gradient(135deg, #271bb1 50%, transparent 50%);
   background-position: calc(100% - 14px) calc(50% - 2px), calc(100% - 10px) calc(50% - 2px);
   background-size: 6px 6px, 6px 6px;
   background-repeat: no-repeat;
   background-origin: content-box;
   transition:
      border-color 0.3s ease,
      box-shadow 0.3s ease;
}

.lang-dropdown:hover,
.lang-dropdown:focus {
   border-color: rgba(39, 27, 177, 0.5);
   box-shadow: 0 0 0 4px rgba(39, 27, 177, 0.08);
   outline: none;
}

.lang-dropdown option {
   color: #271bb1;
   background: #ffffff;
}

/* PROFILE ICON */
.profile-icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 46px;
   height: 46px;
   /* background: rgba(39, 27, 177, 0.08); */
   /* border-radius: 10%; */
   transition:
      background 0.3s ease,
      transform 0.3s ease;
}

.profile-icon:hover {
   /* background: rgba(39, 27, 177, 0.16); */
   transform: translateY(-1px);
}

.profile-icon i {
   font-size: 26px;
   color: #271bb1;
   cursor: pointer;
}

.dropdown-menu {
   border: none;
   border-radius: 14px;
   padding: 10px;
   min-width: 200px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 12px 16px;
   border-radius: 10px;
   font-weight: 500;
   transition: all 0.3s ease;
}

.dropdown-item i {
   font-size: 18px;
   transition: 0.3s;
}


.dropdown-item:hover {
   background: linear-gradient(135deg, #13007C, #5199D7);
   color: #fff;
   transform: translateX(5px);
}

.dropdown-item:hover i {
   transform: scale(1.15);
   color: white;
}

.logout-btn:hover {
   background: linear-gradient(135deg, #ff4d4d, #ff1f1f);
}

.profile-img {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   object-fit: cover;
   cursor: pointer;
   border: 2px solid blue;
}

/* SCROLL STATE */
body.scrolled .header {
   background: var(--header-scrolled-background);
   border-color: rgba(255, 255, 255, 0.15);
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

body.scrolled .profile-icon i,
body.scrolled .dropdown-item i {
   color: inherit !important;
}

body.scrolled .profile-img {
   border: 2px solid rgb(3, 26, 94);
}


body.scrolled .logo h1 {
   color: white;
}

body.scrolled .logo span {
   color: white;
}

body.scrolled .navmenu a,
body.scrolled .navmenu a:not(.active) {
   color: rgba(255, 255, 255, 0.92);
}

body.scrolled .navmenu a::after {
   background: rgba(255, 255, 255, 0.9);
}

body.scrolled .login-btn {
   background: #ffffff;
   color: #271bb1;
   box-shadow: 0 18px 40px rgba(39, 27, 177, 0.16);
}

body.scrolled .login-btn.secondary {
   background: transparent;
   color: rgba(255, 255, 255, 0.95);
   border-color: rgba(255, 255, 255, 0.35);
}

body.scrolled .lang-dropdown {
   background-color: rgba(255, 255, 255, 0.18);
   color: #ffffff;
   border-color: rgba(255, 255, 255, 0.45);
   box-shadow: none;
   background-image: linear-gradient(45deg, transparent 50%, #ffffff 50%), linear-gradient(135deg, #ffffff 50%, transparent 50%);
}

/* body.scrolled .profile-icon {
  background: rgba(255, 255, 255, 0.12);
} */

body.scrolled .profile-icon i,
body.scrolled .profile-icon .dropdown-toggle {
   color: #ffffff;
}

/* MOBILE */
.mobile-nav-toggle {
   display: none;
}

/* MOBILE EXTRA */
.mobile-extra {
   display: none;
   flex-direction: column;
   gap: 10px;
   padding: 18px;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
   .navmenu ul {
      display: none;
      flex-direction: column;
      background: var(--nav-mobile-background-color);
      position: absolute;
      top: 76px;
      left: 16px;
      right: 16px;
      padding: 22px;
      border-radius: 20px;
      box-shadow: 0 20px 50px rgba(39, 27, 177, 0.12);
   }

   .mobile-nav-active .navmenu ul {
      display: flex;
   }

   .mobile-nav-toggle {
      display: block;
      font-size: 26px;
      cursor: pointer;
      /* color: var(--header-text); */
      color: var(--header-text);
   }

   .desktop-only {
      display: none;
   }

   .mobile-extra {
      display: flex;
   }

   .header-container {
      padding: 14px 18px;
   }

   .logo img {
      max-height: 40px;
   }

   .logo h1 {
      font-size: 13px;
   }

   .profile-icon i {
      font-size: 22px;
   }

   .navmenu a {
      font-size: 15px;
   }


   /* Fix for mobile menu colors when scrolled */
   body.scrolled .mobile-nav-toggle {
      color: #ffffff !important;
   }

   body.scrolled .navmenu a,
   body.scrolled .navmenu a:not(.active) {
      color: var(--header-text) !important;
   }

   body.scrolled .navmenu a::after {
      background: linear-gradient(90deg, #3b2ee0, #271bb1) !important;
   }

   body.scrolled .navmenu .mobile-extra a.login-btn {
      background: linear-gradient(135deg, #271bb1 0%, #4b3ae8 100%) !important;
      color: white !important;
      box-shadow: 0 18px 40px rgba(39, 27, 177, 0.18) !important;
   }

   body.scrolled .mobile-extra .lang-dropdown {
      background-color: #ffffff !important;
      color: #271bb1 !important;
      border-color: rgba(39, 27, 177, 0.18) !important;
      background-image: linear-gradient(45deg, transparent 50%, #271bb1 50%), linear-gradient(135deg, #271bb1 50%, transparent 50%) !important;
   }

   .navmenu .login-btn::after {
      display: none !important;
   }
}

/*--------------------------------------------------------------
# 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%);
}

.footer .footer-content .logo {
   line-height: 1;

}

.footer .footer-content .logo span {
   color: white;
   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%);
}

.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: white;
}

.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: whitesmoke;
}

.footer .footer-links ul a i {
   margin-right: 8px;
   font-size: 12px;
   color: white;
}

.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:
      black,
      transparent 90%;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 15px;
   flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
   color: white;
   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%);
}

@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: white;
}

@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 .social-links {
      justify-content: center;
   }

   .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: 999999;
   overflow: hidden;
   background: var(--background-color);
   transition: all 0.6s ease-out;
}

#preloader:before {
   content: "";
   position: fixed;
   top: calc(50% - 30px);
   left: calc(50% - 30px);
   border: 6px solid #ffffff;
   border-color: var(--accent-color) transparent var(--accent-color) transparent;
   border-radius: 50%;
   width: 60px;
   height: 60px;
   animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
   0% {
      transform: rotate(0deg);
   }

   100% {
      transform: rotate(360deg);
   }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
   position: fixed;
   visibility: hidden;
   opacity: 0;
   right: 15px;
   bottom: -15px;
   z-index: 99999;
   background-color: var(--accent-color);
   width: 44px;
   height: 44px;
   border-radius: 50px;
   transition: all 0.4s;
}

.scroll-top i {
   font-size: 24px;
   color: var(--contrast-color);
   line-height: 0;
}

.scroll-top:hover {
   background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
   color: var(--contrast-color);
}

.scroll-top.active {
   visibility: visible;
   opacity: 1;
   bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
   [data-aos-delay] {
      transition-delay: 0 !important;
   }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
   color: var(--default-color);
   background-color: var(--background-color);
   position: relative;
}

.page-title .heading {
   padding: 80px 0;
   border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
   font-size: 38px;
   font-weight: 700;
}

.page-title nav {
   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: 90px;
   overflow: clip;
}

@media (max-width: 1199px) {

   section,
   .section {
      scroll-margin-top: 66px;
   }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
   text-align: center;
   padding-bottom: 60px;
   position: relative;
}

.section-title h2 {
   font-size: 36px;
   font-weight: 400;
   margin-bottom: 20px;
   padding-bottom: 20px;
   position: relative;
}

.section-title h2:before {
   content: "";
   position: absolute;
   display: block;
   width: 160px;
   height: 1px;
   background: color-mix(in srgb, var(--default-color), transparent 60%);
   left: 0;
   right: 0;
   bottom: 1px;
   margin: auto;
}

.section-title h2::after {
   content: "";
   position: absolute;
   display: block;
   width: 60px;
   height: 3px;
   background: var(--accent-color);
   left: 0;
   right: 0;
   bottom: 0;
   margin: auto;
}

.section-title p {
   margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-wrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

@media (max-width: 992px) {
   .about .about-wrapper {
      grid-template-columns: 1fr;
      gap: 3rem;
   }
}

.about .image-gallery {
   position: relative;
}

.about .image-gallery .gallery-grid {
   display: grid;
   grid-template-columns: 1.5fr 1fr;
   gap: 1.5rem;
}

@media (max-width: 576px) {
   .about .image-gallery .gallery-grid {
      grid-template-columns: 1fr;
   }
}

.about .image-gallery .gallery-item {
   overflow: hidden;
   border-radius: 16px;
}

.about .image-gallery .gallery-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
}

.about .image-gallery .gallery-item:hover img {
   transform: scale(1.05);
}

.about .image-gallery .main-image {
   height: 400px;
   box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 576px) {
   .about .image-gallery .main-image {
      height: 280px;
   }
}

.about .image-gallery .side-image {
   height: 400px;
   align-self: end;
   margin-top: 3rem;
}

@media (max-width: 576px) {
   .about .image-gallery .side-image {
      height: 220px;
      margin-top: 0;
   }
}

.about .image-gallery .experience-badge {
   position: absolute;
   bottom: -20px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 5;
}

.about .image-gallery .experience-badge .badge-inner {
   background: linear-gradient(135deg,
         var(--accent-color),
         color-mix(in srgb, var(--accent-color), black 20%));
   color: var(--contrast-color);
   padding: 1.5rem 2.5rem;
   border-radius: 60px;
   text-align: center;
   box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
   display: flex;
   align-items: center;
   gap: 0.75rem;
}

@media (max-width: 576px) {
   .about .image-gallery .experience-badge .badge-inner {
      padding: 1rem 1.75rem;
   }
}

.about .image-gallery .experience-badge .number {
   font-size: 2.5rem;
   font-weight: 800;
   line-height: 1;
}

@media (max-width: 576px) {
   .about .image-gallery .experience-badge .number {
      font-size: 2rem;
   }
}

.about .image-gallery .experience-badge .label {
   font-size: 0.875rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   opacity: 0.9;
}

@media (max-width: 992px) {
   .about .info-panel {
      margin-top: 2rem;
   }
}

.about .info-panel .panel-header {
   margin-bottom: 1.5rem;
}

.about .info-panel .panel-header .tagline {
   display: inline-block;
   background: color-mix(in srgb, var(--accent-color), transparent 88%);
   color: var(--accent-color);
   padding: 0.5rem 1.25rem;
   border-radius: 30px;
   font-size: 0.8rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 1rem;
}

.about .info-panel .panel-header h2 {
   font-size: 2.5rem;
   font-weight: 800;
   line-height: 1.2;
}

@media (max-width: 768px) {
   .about .info-panel .panel-header h2 {
      font-size: 2rem;
   }
}

.about .info-panel .description {
   color: color-mix(in srgb, var(--default-color), transparent 25%);
   font-size: 1.05rem;
   line-height: 1.8;
   margin-bottom: 2rem;
}

.about .info-panel .highlights-row {
   display: inline;
   grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
   margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
   .about .info-panel .highlights-row {
      grid-template-columns: 1fr;
   }
}

.about .info-panel .highlight-box {
   display: flex;
   gap: 1rem;
   padding: 1.5rem;
   background: var(--surface-color);
   border-radius: 12px;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
   transition: all 0.3s ease;
}

.about .info-panel .highlight-box:hover {
   box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
   transform: translateY(-3px);
}

.about .info-panel .highlight-box .icon-wrap {
   width: 50px;
   height: 50px;
   min-width: 50px;
   background: color-mix(in srgb, var(--accent-color), transparent 90%);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.about .info-panel .highlight-box .icon-wrap i {
   font-size: 1.5rem;
   color: var(--accent-color);
}

.about .info-panel .highlight-box .highlight-content h4 {
   font-size: 1.1rem;
   font-weight: 700;
   margin-bottom: 0.4rem;
}

.about .info-panel .highlight-box .highlight-content p {
   font-size: 0.875rem;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
   margin: 0;
   line-height: 1.5;
}

.about .info-panel .stats-row {
   display: flex;
   gap: 2rem;
   padding: 1.5rem 0;
   border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
   border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
   margin-bottom: 2rem;
}

@media (max-width: 576px) {
   .about .info-panel .stats-row {
      flex-wrap: wrap;
      gap: 1.5rem;
   }
}

.about .info-panel .stats-row .stat-block {
   text-align: center;
   flex: 1;
}

@media (max-width: 576px) {
   .about .info-panel .stats-row .stat-block {
      flex: 0 0 calc(50% - 0.75rem);
   }
}

.about .info-panel .stats-row .stat-block h3 {
   font-size: 2.25rem;
   font-weight: 800;
   color: var(--accent-color);
   margin: 0;
   line-height: 1;
}

@media (max-width: 768px) {
   .about .info-panel .stats-row .stat-block h3 {
      font-size: 1.75rem;
   }
}

.about .info-panel .stats-row .stat-block span {
   font-size: 0.85rem;
   color: color-mix(in srgb, var(--default-color), transparent 35%);
   font-weight: 500;
   display: block;
   margin-top: 0.5rem;
}

.about .info-panel .cta-button {
   display: inline-flex;
   align-items: center;
   gap: 0.75rem;
   background: transparent;
   color: var(--accent-color);
   border: 2px solid var(--accent-color);
   padding: 0.875rem 2rem;
   border-radius: 8px;
   font-weight: 600;
   font-size: 1rem;
   transition: all 0.3s ease;
}

.about .info-panel .cta-button i {
   transition: transform 0.3s ease;
}

.about .info-panel .cta-button:hover {
   background: var(--accent-color);
   color: var(--contrast-color);
}

.about .info-panel .cta-button:hover i {
   transform: translateX(5px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
   background: var(--surface-color);
   border-radius: 20px;
   padding: 30px;
   height: 100%;
   position: relative;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
   transition: all 0.4s ease;
   overflow: hidden;
}

.services .service-card::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg,
         var(--accent-color),
         color-mix(in srgb, var(--accent-color), #8b5cf6 50%));
   transform: scaleX(0);
   transition: transform 0.4s ease;
}

.services .service-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 90%);
   border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-card:hover::after {
   transform: scaleX(1);
}

.services .service-card:hover .icon-circle {
   background: var(--accent-color);
   transform: rotate(10deg);
}

.services .service-card:hover .icon-circle i {
   color: var(--contrast-color);
}

.services .service-card:hover .card-link {
   color: var(--accent-color);
}

.services .service-card:hover .card-link i {
   transform: translateX(5px);
}

.services .service-card.highlighted {
   background: linear-gradient(160deg,
         var(--surface-color) 0%,
         color-mix(in srgb, var(--accent-color), var(--surface-color) 95%) 100%);
   border-color: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.services .service-card.highlighted::after {
   transform: scaleX(1);
}

.services .card-badge {
   position: absolute;
   top: 20px;
   right: 20px;
   background: linear-gradient(135deg, #10b981, #059669);
   color: var(--contrast-color);
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   padding: 5px 14px;
   border-radius: 30px;
}

.services .card-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 24px;
}

.services .icon-circle {
   width: 64px;
   height: 64px;
   border-radius: 50%;
   background: color-mix(in srgb, var(--accent-color), transparent 85%);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.4s ease;
}

.services .icon-circle i {
   font-size: 28px;
   color: var(--accent-color);
   transition: color 0.3s ease;
}

.services .service-num {
   font-size: 42px;
   font-weight: 800;
   font-family: var(--heading-font);
   color: color-mix(in srgb, var(--default-color), transparent 90%);
   line-height: 1;
}

.services .card-body {
   margin-bottom: 20px;
}

.services .card-body h4 {
   font-size: 20px;
   font-weight: 700;
   margin-bottom: 12px;
}

.services .card-body h4 a {
   color: var(--heading-color);
   text-decoration: none;
   transition: color 0.3s ease;
}

.services .card-body h4 a:hover {
   color: var(--accent-color);
}

.services .card-body p {
   font-size: 14px;
   line-height: 1.7;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   margin-bottom: 16px;
}

.services .feature-list {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
}

.services .feature-list li {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 13px;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   background: color-mix(in srgb, var(--default-color), transparent 95%);
   padding: 5px 12px;
   border-radius: 20px;
}

.services .feature-list li i {
   color: var(--accent-color);
   font-size: 12px;
}

.services .card-link {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 14px;
   font-weight: 600;
   color: var(--heading-color);
   text-decoration: none;
   transition: all 0.3s ease;
}

.services .card-link i {
   font-size: 14px;
   transition: transform 0.3s ease;
}

.services .services-sidebar {
   display: flex;
   flex-direction: column;
   gap: 20px;
   height: 100%;
}

.services .sidebar-service-item {
   display: flex;
   gap: 18px;
   background: var(--surface-color);
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
   border-radius: 16px;
   padding: 24px;
   transition: all 0.3s ease;
}

.services .sidebar-service-item:hover {
   border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
   box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.services .sidebar-service-item:hover .sidebar-icon {
   background: var(--accent-color);
}

.services .sidebar-service-item:hover .sidebar-icon i {
   color: var(--contrast-color);
}

.services .sidebar-icon {
   width: 52px;
   height: 52px;
   min-width: 52px;
   border-radius: 12px;
   background: color-mix(in srgb, var(--accent-color), transparent 88%);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
}

.services .sidebar-icon i {
   font-size: 24px;
   color: var(--accent-color);
   transition: color 0.3s ease;
}

.services .sidebar-content {
   flex: 1;
}

.services .sidebar-content .sidebar-num {
   font-size: 12px;
   font-weight: 700;
   color: var(--accent-color);
   text-transform: uppercase;
   letter-spacing: 1px;
}

.services .sidebar-content h5 {
   font-size: 17px;
   font-weight: 700;
   margin: 6px 0 10px;
}

.services .sidebar-content h5 a {
   color: var(--heading-color);
   text-decoration: none;
   transition: color 0.3s ease;
}

.services .sidebar-content h5 a:hover {
   color: var(--accent-color);
}

.services .sidebar-content p {
   font-size: 13px;
   line-height: 1.6;
   color: color-mix(in srgb, var(--default-color), transparent 35%);
   margin: 0;
}

.services .sidebar-cta {
   flex: 1;
   min-height: 280px;
   border-radius: 20px;
   background: linear-gradient(160deg,
         var(--accent-color) 0%,
         color-mix(in srgb, var(--accent-color), #7c3aed 40%) 100%);
   padding: 4px;
}

.services .sidebar-cta .cta-inner {
   height: 100%;
   border-radius: 17px;
   background: linear-gradient(160deg,
         var(--accent-color) 0%,
         color-mix(in srgb, var(--accent-color), #7c3aed 40%) 100%);
   padding: 32px 28px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   text-align: center;
   position: relative;
   overflow: hidden;
}

.services .sidebar-cta .cta-inner::before {
   content: "";
   position: absolute;
   top: -50%;
   right: -50%;
   width: 100%;
   height: 100%;
   background: radial-gradient(circle,
         color-mix(in srgb, var(--contrast-color), transparent 90%) 0%,
         transparent 70%);
   pointer-events: none;
}

.services .sidebar-cta .cta-inner>i {
   font-size: 42px;
   color: var(--contrast-color);
   margin-bottom: 20px;
   position: relative;
   z-index: 1;
}

.services .sidebar-cta .cta-inner h4 {
   font-size: 20px;
   font-weight: 700;
   color: var(--contrast-color);
   margin-bottom: 10px;
   position: relative;
   z-index: 1;
}

.services .sidebar-cta .cta-inner p {
   font-size: 14px;
   color: color-mix(in srgb, var(--contrast-color), transparent 15%);
   margin-bottom: 24px;
   position: relative;
   z-index: 1;
}

.services .cta-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   background: var(--contrast-color);
   color: var(--accent-color);
   font-size: 14px;
   font-weight: 600;
   padding: 14px 28px;
   border-radius: 50px;
   text-decoration: none;
   transition: all 0.3s ease;
   position: relative;
   z-index: 1;
   box-shadow: 0 10px 30px color-mix(in srgb, #000, transparent 75%);
}

.services .cta-button i {
   font-size: 16px;
   transition: transform 0.3s ease;
}

.services .cta-button:hover {
   transform: translateY(-3px);
   box-shadow: 0 15px 40px color-mix(in srgb, #000, transparent 65%);
}

.services .cta-button:hover i {
   transform: translateX(4px);
}

@media (max-width: 992px) {
   .services .services-sidebar {
      margin-top: 20px;
   }

   .services .sidebar-cta {
      min-height: 220px;
   }
}

@media (max-width: 768px) {
   .services .service-card {
      padding: 24px;
   }

   .services .icon-circle {
      width: 56px;
      height: 56px;
   }

   .services .icon-circle i {
      font-size: 24px;
   }

   .services .service-num {
      font-size: 36px;
   }

   .services .card-body h4 {
      font-size: 18px;
   }

   .services .sidebar-cta .cta-inner {
      padding: 28px 24px;
   }

   .services .sidebar-cta .cta-inner h4 {
      font-size: 18px;
   }
}

@media (max-width: 576px) {
   .services .service-card {
      padding: 20px;
   }

   .services .card-header {
      margin-bottom: 18px;
   }

   .services .icon-circle {
      width: 50px;
      height: 50px;
   }

   .services .icon-circle i {
      font-size: 22px;
   }

   .services .service-num {
      font-size: 32px;
   }

   .services .feature-list li {
      font-size: 12px;
      padding: 4px 10px;
   }

   .services .sidebar-service-item {
      padding: 20px;
   }

   .services .sidebar-icon {
      width: 46px;
      height: 46px;
      min-width: 46px;
   }

   .services .sidebar-icon i {
      font-size: 20px;
   }

   .services .sidebar-content h5 {
      font-size: 15px;
   }
}

/* add extra */

/*--------------------------------------------------------------
# Profile Section
--------------------------------------------------------------*/
.profile {
   /* padding: 80px 0; */
   background: var(--background-color);
}

.profile .profile-wrapper {
   display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 40px;
   align-items: start;
   margin-top: -80px;
}

.profile .profile-card {
   background: var(--surface-color);
   border-radius: 20px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   overflow: hidden;
}

.profile .profile-header {
   background: linear-gradient(135deg, var(--accent-color) 0%, #5a67d8 100%);
   color: var(--contrast-color);
   padding: 40px;
   display: flex;
   align-items: center;
   gap: 30px;
}

.profile .profile-avatar {
   position: relative;
   width: 120px;
   height: 120px;
}

.profile .profile-avatar img {
   width: 100%;
   height: 100%;
   border-radius: 50%;
   object-fit: cover;
   border: 4px solid var(--contrast-color);
}

.profile .avatar-edit {
   position: absolute;
   bottom: 0;
   right: 0;
   background: var(--contrast-color);
   color: var(--accent-color);
   width: 35px;
   height: 35px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: 0.3s;
}

.profile .avatar-edit:hover {
   background: var(--accent-color);
   color: var(--contrast-color);
}

.profile .profile-info h3 {
   margin: 0 0 5px 0;
   font-size: 28px;
   font-weight: 700;
}

.profile .membership-status {
   background: rgba(255, 255, 255, 0.2);
   padding: 5px 15px;
   border-radius: 20px;
   font-size: 14px;
   font-weight: 500;
}

.profile .member-since {
   margin: 10px 0 0 0;
   font-size: 14px;
   opacity: 0.9;
}

.profile .profile-details {
   padding: 40px;
}

.profile .detail-row {
   display: flex;
   gap: 40px;
   margin-bottom: 30px;
}

.profile .detail-item {
   display: flex;
   align-items: center;
   gap: 15px;
   flex: 1;
}

.profile .detail-item i {
   font-size: 24px;
   color: var(--accent-color);
   width: 40px;
   text-align: center;
}

.profile .detail-item label {
   display: block;
   font-size: 12px;
   color: var(--heading-color);
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   margin-bottom: 5px;
}

.profile .detail-item p {
   margin: 0;
   font-size: 16px;
   color: var(--default-color);
}

.profile .profile-actions {
   padding: 0 40px 40px;
   display: flex;
   gap: 15px;
}

.profile .profile-actions .btn {
   flex: 1;
   padding: 12px 24px;
   border-radius: 10px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   transition: 0.3s;
}

.profile .profile-actions .btn-primary {
   background: var(--accent-color);
   border: none;
}

.profile .profile-actions .btn-primary:hover {
   background: color-mix(in srgb, var(--accent-color), black 10%);
   transform: translateY(-2px);
}

.profile .profile-actions .btn-outline-primary {
   border: 2px solid var(--accent-color);
   color: var(--accent-color);
   background: transparent;
}

.profile .profile-actions .btn-outline-primary:hover {
   background: var(--accent-color);
   color: var(--contrast-color);
}

.profile .activity-summary {
   background: var(--surface-color);
   border-radius: 20px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   padding: 30px;
   height: 530px;
}

.profile .activity-summary h4 {
   color: var(--heading-color);
   margin-bottom: 25px;
   font-size: 24px;
   font-weight: 700;
}

.profile .activity-list {
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.profile .activity-item {
   display: flex;
   align-items: center;
   gap: 15px;
   padding: 20px;
   background: #f8f9fa;
   border-radius: 12px;
   transition: 0.3s;
}

.profile .activity-item:hover {
   background: #e9ecef;
   transform: translateX(5px);
}

.profile .activity-icon {
   width: 50px;
   height: 50px;
   background: var(--accent-color);
   color: var(--contrast-color);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
}

.profile .activity-content h5 {
   margin: 0 0 5px 0;
   font-size: 16px;
   color: var(--heading-color);
   font-weight: 600;
}

.profile .activity-content p {
   margin: 0;
   font-size: 14px;
   color: var(--default-color);
}

@media (max-width: 992px) {
   .profile .profile-wrapper {
      grid-template-columns: 1fr;
      gap: 30px;
   }

   .profile .profile-header {
      flex-direction: column;
      text-align: center;
      gap: 20px;
   }

   .profile .detail-row {
      flex-direction: column;
      gap: 20px;
   }
}

@media (max-width: 768px) {
   .profile {
      padding: 60px 0;
   }

   .profile .profile-header {
      padding: 30px 20px;
   }

   .profile .profile-details {
      padding: 30px 20px;
   }

   .profile .profile-actions {
      padding: 0 20px 30px;
      flex-direction: column;
   }

   .profile .activity-summary {
      padding: 20px;
   }
}

/* Premium Modal Styles */
.modal-dialog-centered {
   display: flex;
   align-items: center;
   min-height: calc(100vh - 1rem);
}

.modal-content {
   border: none;
   border-radius: 20px;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
   overflow: hidden;
}

.modal-header {
   background: linear-gradient(135deg, var(--accent-color), var(--contrast-color));
   color: white;
   border: none;
   padding: 25px 30px;
   position: relative;
}


.modal-header .btn-close {
   border: none;
   border-radius: 50%;
   width: 35px;
   height: 35px;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 1;
   transition: 0.3s;
}

.modal-header .btn-close:hover {
   transform: rotate(90deg);
}

.modal-title {
   font-weight: 700;
   font-size: 24px;
   margin: 0;
   color: white;
}

.modal-body {
   padding: 30px;
   background: #f8f9fa;
}

.modal-footer {
   border: none;
   padding: 25px 30px;
   background: white;
   gap: 15px;
}

.modal-footer .btn {
   border-radius: 25px;
   padding: 10px 25px;
   font-weight: 600;
   transition: 0.3s;
   min-width: 120px;
}

.modal-footer .btn-primary {
   background: var(--accent-color);
   border: none;
   box-shadow: 0 4px 15px rgba(39, 27, 177, 0.3);
}

.modal-footer .btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(39, 27, 177, 0.4);
}

.modal-footer .btn-secondary {
   background: #6c757d;
   border: none;
}

.modal-footer .btn-secondary:hover {
   background: #5a6268;
   transform: translateY(-2px);
}

/* Profile Avatar Upload */
.profile-avatar-upload {
   position: relative;
}

.profile-avatar-upload img {
   border: 3px solid var(--accent-color);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.profile-avatar-upload input[type="file"] {
   margin-top: 15px;
}

/* Responsive Modal */
@media (max-width: 768px) {
   .modal-dialog {
      margin: 10px;
      max-width: none;
   }

   .modal-header {
      padding: 20px;
   }

   .modal-body {
      padding: 20px;
   }

   .modal-footer {
      padding: 20px;
      flex-direction: column;
   }

   .modal-footer .btn {
      width: 100%;
      margin-bottom: 10px;
   }

   .modal-title {
      font-size: 20px;
   }
}

/* Password Input Wrapper */
.password-input-wrapper {
   position: relative;
   display: flex;
   align-items: center;
}

.password-input-wrapper .form-control {
   padding-right: 38px;
}

.toggle-password-icon {
   position: absolute;
   right: 12px;
   cursor: pointer;
   color: var(--accent-color);
   font-size: 18px;
   user-select: none;
   transition: 0.3s;
}

.toggle-password-icon:hover {
   color: blue;
   transform: scale(1.1);
}

/* Activity Image */
.activity-img {
   width: 100%;
   height: 180px;
   border-radius: 15px;
   overflow: hidden;
   margin-bottom: 15px;
}

.activity-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: 0.4s;
}

.service-card:hover .activity-img img {
   transform: scale(1.08);
}

/* Show More Button */
.show-more-btn {
   display: inline-block;
   padding: 12px 28px;
   /* background: var(--accent-color); */
   color: var(--accent-color);
   border: 1px solid var(--accent-color);
   border-radius: 30px;
   text-decoration: none;
   font-weight: 600;
   transition: 0.3s;
}

.show-more-btn:hover {
   background: var(--accent-color);
   color: white;
}

/* 🔴 Remove Sidebar */
.services .services-sidebar {
   display: none !important;
}

/* 🔴 Full width */
.services .col-lg-8 {
   width: 100%;
   flex: 0 0 100%;
   max-width: 100%;
}

/* 🔴 Desktop: 3 cards */
.services .col-md-6 {
   width: 33.3333%;
   flex: 0 0 33.3333%;
   max-width: 33.3333%;
}

/* 📱 Tablet: 2 cards */
@media (max-width: 992px) {
   .services .col-md-6 {
      width: 50% !important;
      flex: 0 0 50% !important;
      max-width: 50% !important;
   }
}

/* 📱 Mobile: 1 card (FIXED) */
@media (max-width: 576px) {
   .services .col-md-6 {
      width: 100% !important;
      flex: 0 0 100% !important;
      max-width: 100% !important;
   }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
   padding: 100px 0;
}

.portfolio .filter-header {
   margin-bottom: 50px;
}

.portfolio .portfolio-filters {
   padding: 0;
   margin: 0;
   list-style: none;
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
}

.portfolio .portfolio-filters li {
   cursor: pointer;
   font-size: 15px;
   font-weight: 500;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
   transition: all 0.3s ease-out;
   position: relative;
   padding-bottom: 8px;
}

.portfolio .portfolio-filters li::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 1px;
   background: var(--default-color);
   transition: width 0.3s ease-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
   color: var(--default-color);
}

.portfolio .portfolio-filters li:hover::after,
.portfolio .portfolio-filters li.filter-active::after {
   width: 100%;
}

@media (max-width: 576px) {
   .portfolio .portfolio-filters {
      gap: 20px;
   }

   .portfolio .portfolio-filters li {
      font-size: 14px;
   }
}

.portfolio .portfolio-card {
   position: relative;
}

.portfolio .portfolio-image {
   position: relative;
   overflow: hidden;
}

.portfolio .portfolio-image img {
   width: 100%;
   aspect-ratio: 4/3;
   object-fit: cover;
   transition: transform 0.5s ease-out;
}

.portfolio .portfolio-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: color-mix(in srgb, var(--default-color), transparent 50%);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: opacity 0.3s ease-out;
}

.portfolio .overlay-actions {
   display: flex;
   gap: 15px;
}

.portfolio .action-btn {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background: var(--contrast-color);
   color: var(--default-color);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   transition: all 0.3s ease-out;
   transform: translateY(20px);
   opacity: 0;
}

.portfolio .action-btn:hover {
   background: var(--accent-color);
   color: var(--contrast-color);
   transform: translateY(-4px);
}

.portfolio .portfolio-card:hover .portfolio-image img {
   transform: scale(1.05);
}

.portfolio .portfolio-card:hover .portfolio-overlay {
   opacity: 1;
}

.portfolio .portfolio-card:hover .action-btn {
   transform: translateY(0);
   opacity: 1;
}

.portfolio .portfolio-card:hover .action-btn:nth-child(2) {
   transition-delay: 0.1s;
}

.portfolio .portfolio-content {
   padding: 25px 0;
}

.portfolio .portfolio-category {
   font-size: 14px;
   font-weight: 500;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
   display: block;
   margin-bottom: 8px;
}

.portfolio .portfolio-title {
   font-size: 24px;
   font-weight: 600;
   color: var(--heading-color);
   margin: 0;
   letter-spacing: -0.5px;
   line-height: 1.2;
}

.portfolio .portfolio-cta {
   text-align: center;
   margin-top: 60px;
}

.portfolio .view-all-link {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-size: 16px;
   font-weight: 500;
   color: var(--default-color);
   position: relative;
   padding-bottom: 4px;
   background: linear-gradient(currentColor, currentColor) 0 100%/0 1px no-repeat;
   transition: background-size 0.3s ease-out;
}

.portfolio .view-all-link i {
   transition: transform 0.3s ease-out;
}

.portfolio .view-all-link:hover {
   color: var(--default-color);
   background-size: 100% 1px;
}

.portfolio .view-all-link:hover i {
   transform: translateX(5px);
}

@media (max-width: 768px) {
   .portfolio {
      padding: 80px 0;
   }

   .portfolio .filter-header {
      margin-bottom: 40px;
   }

   .portfolio .portfolio-content {
      padding: 20px 0;
   }

   .portfolio .portfolio-title {
      font-size: 20px;
   }

   .portfolio .portfolio-cta {
      margin-top: 40px;
   }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
   height: auto !important;
   padding: 20px 0 40px;
}

.testimonials .testimonial-item {
   background: white;
   color: black;
   padding: 40px 35px;
   border-radius: 15px;
   position: relative;
   height: 350px;
   display: flex;
   flex-direction: column;
   transition: all 0.4s ease;
}

.testimonials .testimonial-item:hover {
   transform: translateY(-8px);
}

.testimonials .testimonial-quote {
   position: absolute;
   top: 25px;
   right: 30px;
}

.testimonials .testimonial-quote i {
   font-size: 60px;
   color: color-mix(in srgb, var(--accent-color), transparent 85%);
   line-height: 1;
}

.testimonials .testimonial-text {
   font-size: 17px;
   line-height: 1.8;
   color: black;
   font-style: italic;
   margin-bottom: 25px;
   flex-grow: 1;
   position: relative;
   z-index: 1;
}

.testimonials .stars-rating {
   display: flex;
   gap: 4px;
   margin-bottom: 25px;
}

.testimonials .stars-rating i {
   color: #f59e0b;
   font-size: 16px;
}

.testimonials .testimonial-author {
   display: flex;
   align-items: center;
   gap: 15px;
   padding-top: 25px;
   border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 88%);
   position: relative;
}

.testimonials .author-image {
   flex-shrink: 0;
}

.testimonials .author-image img {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   object-fit: cover;
   border: 2px solid var(--accent-color);
   padding: 3px;
   background: var(--surface-color);
}

.testimonials .author-details {
   flex: 1;
}

.testimonials .author-details h4 {
   margin: 0 0 5px;
   font-size: 18px;
   font-weight: 700;
   color: black;
}

.testimonials .author-details>span {
   display: block;
   font-size: 14px;
   color: black;
   font-weight: 600;
   margin-bottom: 8px;
}

.testimonials .company-info {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 13px;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .company-info i {
   font-size: 12px;
}

.testimonials .verified-icon {
   position: absolute;
   top: 25px;
   right: 0;
}

.testimonials .verified-icon i {
   font-size: 24px;
   color: #22c55e;
}

.testimonials .swiper-navigation-wrapper {
   display: flex;
   justify-content: center;
   gap: 15px;
   margin-top: 30px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
   position: static;
   width: 50px;
   height: 50px;
   /* background: var(--accent-color); */
   background: white;
   border-radius: 50%;
   margin: 0;
   transition: all 0.3s ease;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
   font-size: 18px;
   color: black;
   font-weight: bold;
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
   background: color-mix(in srgb, var(--accent-color), #ebe5e5 15%);
   transform: scale(1.1);
   color: white;
}

@media (max-width: 992px) {
   .testimonials .testimonial-item {
      padding: 35px 30px;
   }

   .testimonials .testimonial-quote i {
      font-size: 50px;
   }

   .testimonials .testimonial-text {
      font-size: 16px;
   }
}

@media (max-width: 767px) {
   .testimonials .testimonial-item {
      padding: 30px 25px;
   }

   .testimonials .testimonial-quote {
      top: 20px;
      right: 20px;
   }

   .testimonials .testimonial-quote i {
      font-size: 40px;
   }

   .testimonials .testimonial-text {
      font-size: 15px;
      line-height: 1.7;
   }

   .testimonials .author-image img {
      width: 60px;
      height: 60px;
   }

   .testimonials .author-details h4 {
      font-size: 16px;
   }

   .testimonials .author-details>span {
      font-size: 13px;
   }

   .testimonials .verified-icon i {
      font-size: 20px;
   }

   .testimonials .swiper-button-prev,
   .testimonials .swiper-button-next {
      width: 44px;
      height: 44px;
   }

   .testimonials .swiper-button-prev::after,
   .testimonials .swiper-button-next::after {
      font-size: 16px;
   }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
   height: 100%;
}

.team .team-card .card-inner {
   background: var(--surface-color);
   border-radius: 20px;
   padding: 40px 30px;
   text-align: center;
   height: 100%;
   position: relative;
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.team .team-card .card-inner:hover {
   transform: translateY(-10px);
   box-shadow: 0 25px 60px color-mix(in srgb, var(--accent-color), transparent 85%);
   border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-card .card-inner:hover .avatar-container .avatar-ring {
   transform: scale(1.1);
   opacity: 1;
}

.team .team-card .card-inner:hover .avatar-container img {
   transform: scale(1.05);
}

.team .team-card .card-inner:hover .social-links a {
   background: var(--accent-color);
   color: var(--contrast-color);
}

.team .team-card .avatar-container {
   position: relative;
   width: 130px;
   height: 130px;
   margin: 0 auto 25px;
}

.team .team-card .avatar-container img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 50%;
   position: relative;
   z-index: 2;
   transition: transform 0.4s ease;
}

.team .team-card .avatar-container .avatar-ring {
   position: absolute;
   top: -8px;
   left: -8px;
   right: -8px;
   bottom: -8px;
   border: 3px solid var(--accent-color);
   border-radius: 50%;
   opacity: 0.5;
   transition: all 0.4s ease;
}

.team .team-card .member-info {
   margin-bottom: 15px;
}

.team .team-card .member-info h4 {
   font-size: 1.25rem;
   font-weight: 700;
   margin: 0 0 8px 0;
   color: var(--heading-color);
}

.team .team-card .member-info .position {
   display: inline-block;
   font-size: 0.8rem;
   color: var(--accent-color);
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 2px;
   padding: 4px 12px;
   background: color-mix(in srgb, var(--accent-color), transparent 90%);
   border-radius: 20px;
}

.team .team-card .member-bio {
   font-size: 0.9rem;
   line-height: 1.7;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   margin-bottom: 20px;
}

.team .team-card .social-links {
   display: flex;
   justify-content: center;
   gap: 10px;
}

.team .team-card .social-links a {
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background: color-mix(in srgb, var(--default-color), transparent 92%);
   color: var(--default-color);
   font-size: 1rem;
   transition: all 0.3s ease;
}

.team .team-card .social-links a:hover {
   background: color-mix(in srgb, var(--accent-color), black 15%);
   color: var(--contrast-color);
   transform: translateY(-3px);
}

/* Premium Slide-Up Social Bar */
.team .team-card .card-inner {
   overflow: hidden;
   /* Hide the social bar before hover */
}

.team .team-card .social-slide-up {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   padding: 20px 0;
   background: rgba(28, 26, 85, 0.95);
   /* Deep premium blue */
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 15px;
   transform: translateY(100%);
   transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
   /* Bouncy slide up */
   z-index: 10;
   border-radius: 0 0 20px 20px;
}

.team .team-card .card-inner:hover .social-slide-up {
   transform: translateY(0);
}

.team .team-card .social-slide-up a {
   color: white;
   background: rgba(255, 255, 255, 0.15);
   width: 38px;
   height: 38px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   font-size: 16px;
   transition: all 0.3s ease;
   backdrop-filter: blur(4px);
}

.team .team-card .social-slide-up a:hover {
   background: var(--accent-color);
   color: white;
   transform: scale(1.15) translateY(-3px);
   box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.team .stats-row {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 30px;
   margin-top: 60px;
   padding: 0;
}

@media (max-width: 992px) {
   .team .stats-row {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
   }
}

@media (max-width: 576px) {
   .team .stats-row {
      grid-template-columns: 1fr;
   }
}

.team .stats-row .stat-item {
   display: flex;
   align-items: center;
   gap: 20px;
   padding: 30px;
   background: var(--surface-color);
   border-radius: 16px;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
   transition: all 0.3s ease;
}

.team .stats-row .stat-item:hover {
   border-color: var(--accent-color);
   transform: translateY(-5px);
   box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.team .stats-row .stat-item:hover .stat-icon {
   background: var(--accent-color);
   color: var(--contrast-color);
}

.team .stats-row .stat-item .stat-icon {
   width: 60px;
   height: 60px;
   min-width: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 12px;
   background: color-mix(in srgb, var(--accent-color), transparent 88%);
   color: var(--accent-color);
   font-size: 1.5rem;
   transition: all 0.3s ease;
}

.team .stats-row .stat-item .stat-data {
   display: flex;
   flex-direction: column;
}

.team .stats-row .stat-item .stat-data .stat-value {
   font-size: 1.75rem;
   font-weight: 700;
   color: var(--heading-color);
   line-height: 1.2;
}

.team .stats-row .stat-item .stat-data .stat-label {
   font-size: 0.85rem;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   margin-top: 4px;
}

.team .join-team-banner {
   margin-top: 60px;
   background: linear-gradient(120deg,
         var(--accent-color) 0%,
         color-mix(in srgb, var(--accent-color), black 25%) 100%);
   border-radius: 24px;
   padding: 60px;
   position: relative;
   overflow: hidden;
}

@media (max-width: 768px) {
   .team .join-team-banner {
      padding: 40px 30px;
   }
}

.team .join-team-banner .banner-bg-pattern {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-image:
      radial-gradient(circle at 20% 80%,
         color-mix(in srgb, var(--contrast-color), transparent 90%) 0%,
         transparent 50%),
      radial-gradient(circle at 80% 20%,
         color-mix(in srgb, var(--contrast-color), transparent 92%) 0%,
         transparent 40%);
   pointer-events: none;
}

.team .join-team-banner .banner-content {
   position: relative;
   z-index: 2;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 40px;
}

@media (max-width: 992px) {
   .team .join-team-banner .banner-content {
      flex-direction: column;
      text-align: center;
   }
}

.team .join-team-banner .banner-text {
   flex: 1;
}

.team .join-team-banner .banner-text .badge-label {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: color-mix(in srgb, var(--contrast-color), transparent 85%);
   color: var(--contrast-color);
   padding: 8px 18px;
   border-radius: 30px;
   font-size: 0.8rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 20px;
}

.team .join-team-banner .banner-text .badge-label i {
   font-size: 1rem;
}

.team .join-team-banner .banner-text h3 {
   font-size: 2.25rem;
   font-weight: 700;
   color: var(--contrast-color);
   margin: 0 0 15px 0;
}

@media (max-width: 768px) {
   .team .join-team-banner .banner-text h3 {
      font-size: 1.75rem;
   }
}

.team .join-team-banner .banner-text p {
   font-size: 1rem;
   color: color-mix(in srgb, var(--contrast-color), transparent 15%);
   line-height: 1.7;
   margin: 0;
   max-width: 550px;
}

@media (max-width: 992px) {
   .team .join-team-banner .banner-text p {
      max-width: none;
   }
}

.team .join-team-banner .banner-actions {
   display: flex;
   flex-direction: column;
   gap: 15px;
}

@media (max-width: 992px) {
   .team .join-team-banner .banner-actions {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
   }
}

@media (max-width: 576px) {
   .team .join-team-banner .banner-actions {
      flex-direction: column;
      width: 100%;
   }
}

.team .join-team-banner .banner-actions .btn-primary-action,
.team .join-team-banner .banner-actions .btn-secondary-action {
   display: inline-flex;
   align-items: center;
   gap: 12px;
   padding: 16px 30px;
   border-radius: 50px;
   font-weight: 600;
   font-size: 0.95rem;
   text-decoration: none;
   transition: all 0.3s ease;
   white-space: nowrap;
}

.team .join-team-banner .banner-actions .btn-primary-action i,
.team .join-team-banner .banner-actions .btn-secondary-action i {
   font-size: 1.1rem;
}

.team .join-team-banner .banner-actions .btn-primary-action {
   background: var(--contrast-color);
   color: var(--accent-color);
}

.team .join-team-banner .banner-actions .btn-primary-action:hover {
   background: var(--surface-color);
   transform: translateY(-3px);
   box-shadow: 0 10px 30px color-mix(in srgb, black, transparent 70%);
}

.team .join-team-banner .banner-actions .btn-secondary-action {
   background: transparent;
   border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
   color: var(--contrast-color);
}

.team .join-team-banner .banner-actions .btn-secondary-action:hover {
   background: color-mix(in srgb, var(--contrast-color), transparent 85%);
   border-color: var(--contrast-color);
   transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
   background: var(--surface-color);
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
   border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
   transition: all 0.3s ease;
   height: 100%;
   display: flex;
   flex-direction: column;
   position: relative;
}

.pricing .pricing-card:hover {
   box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
   transform: translateY(-6px);
}

.pricing .pricing-card.highlighted {
   border: 2px solid var(--accent-color);
   box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.pricing .pricing-card.highlighted .card-header {
   background: var(--accent-color);
}

.pricing .pricing-card.highlighted .card-header .plan-icon {
   background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
   color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .card-header .plan-title,
.pricing .pricing-card.highlighted .card-header .plan-subtitle {
   color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .btn-pricing {
   background: var(--accent-color);
   color: var(--contrast-color);
}

.pricing .pricing-card.highlighted .btn-pricing:hover {
   background: color-mix(in srgb, var(--accent-color) 85%, black);
}

.pricing .pricing-card.highlighted:hover {
   transform: translateY(-8px);
   box-shadow: 0 16px 56px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.pricing .card-header {
   padding: 32px 28px 24px;
   background: color-mix(in srgb, var(--accent-color) 6%, transparent);
   text-align: center;
   border-bottom: 1px solid color-mix(in srgb, var(--default-color) 6%, transparent);
}

.pricing .plan-icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 56px;
   height: 56px;
   border-radius: 12px;
   background: color-mix(in srgb, var(--accent-color) 15%, transparent);
   color: var(--accent-color);
   font-size: 24px;
   margin-bottom: 16px;
}

.pricing .plan-title {
   font-size: 22px;
   font-weight: 700;
   margin-bottom: 6px;
   color: var(--heading-color);
}

.pricing .plan-subtitle {
   font-size: 14px;
   color: color-mix(in srgb, var(--default-color) 60%, transparent);
   margin: 0;
}

.pricing .card-body {
   padding: 28px;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
}

.pricing .price-wrapper {
   display: flex;
   align-items: baseline;
   justify-content: center;
   gap: 2px;
   margin-bottom: 4px;
}

.pricing .price-wrapper .currency {
   font-size: 22px;
   font-weight: 700;
   color: var(--heading-color);
   align-self: flex-start;
   margin-top: 8px;
}

.pricing .price-wrapper .amount {
   font-size: 52px;
   font-weight: 800;
   color: var(--heading-color);
   line-height: 1;
   letter-spacing: -2px;
}

.pricing .price-wrapper .amount.annual-price {
   display: none;
}

.pricing .price-wrapper .period {
   font-size: 16px;
   color: color-mix(in srgb, var(--default-color) 50%, transparent);
   font-weight: 500;
}

.pricing .price-wrapper.custom-pricing {
   padding: 12px 0;
}

.pricing .price-wrapper.custom-pricing .custom-text {
   font-size: 36px;
   font-weight: 800;
   color: var(--heading-color);
   letter-spacing: -1px;
}

.pricing .billing-info {
   font-size: 13px;
   color: color-mix(in srgb, var(--default-color) 50%, transparent);
   text-align: center;
   margin-bottom: 24px;
}

.pricing .billing-info.annual-billing {
   display: none;
}

.pricing .feature-list {
   list-style: none;
   padding: 0;
   margin: 0 0 24px;
   flex-grow: 1;
}

.pricing .feature-list li {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 10px 0;
   font-size: 14px;
   color: var(--default-color);
}

.pricing .feature-list li i {
   font-size: 16px;
   color: var(--accent-color);
   flex-shrink: 0;
}

.pricing .btn-pricing {
   display: block;
   width: 100%;
   padding: 14px 24px;
   background: color-mix(in srgb, var(--accent-color) 12%, transparent);
   color: var(--accent-color);
   border-radius: 10px;
   font-size: 15px;
   font-weight: 600;
   text-align: center;
   transition: all 0.3s ease;
   border: none;
}

.pricing .btn-pricing:hover {
   background: var(--accent-color);
   color: var(--contrast-color);
}

.pricing .trial-note {
   display: block;
   font-size: 12px;
   color: color-mix(in srgb, var(--default-color) 50%, transparent);
   text-align: center;
   margin-top: 12px;
}

.pricing .security-badges {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
   margin-top: 64px;
   padding: 32px;
   background: var(--surface-color);
   border-radius: 16px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 992px) {
   .pricing .security-badges {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 576px) {
   .pricing .security-badges {
      grid-template-columns: 1fr;
      padding: 24px;
      gap: 16px;
   }
}

.pricing .badge-item {
   display: flex;
   align-items: center;
   gap: 14px;
   padding: 16px;
   background: color-mix(in srgb, var(--accent-color) 5%, transparent);
   border-radius: 12px;
   transition: all 0.3s ease;
}

.pricing .badge-item:hover {
   background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.pricing .badge-item i {
   font-size: 28px;
   color: var(--accent-color);
   flex-shrink: 0;
}

.pricing .badge-item .badge-content {
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.pricing .badge-item .badge-content strong {
   font-size: 14px;
   font-weight: 600;
   color: var(--heading-color);
}

.pricing .badge-item .badge-content span {
   font-size: 12px;
   color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.pricing .help-links {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 32px;
   margin-top: 40px;
}

.pricing .help-links a {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 14px;
   font-weight: 600;
   color: var(--accent-color);
   transition: all 0.3s ease;
   padding: 8px 0;
}

.pricing .help-links a i {
   font-size: 18px;
}

.pricing .help-links a:hover {
   color: color-mix(in srgb, var(--accent-color) 75%, black);
   transform: translateY(-2px);
}

@media (max-width: 576px) {
   .pricing .help-links {
      flex-direction: column;
      align-items: center;
      gap: 16px;
   }
}

@media (max-width: 768px) {
   .pricing .card-header {
      padding: 24px 20px 20px;
   }

   .pricing .card-body {
      padding: 24px 20px;
   }

   .pricing .price-wrapper .amount {
      font-size: 44px;
   }

   .pricing .price-wrapper.custom-pricing .custom-text {
      font-size: 30px;
   }

   .pricing .plan-icon {
      width: 48px;
      height: 48px;
      font-size: 20px;
   }

   .pricing .security-badges {
      margin-top: 48px;
   }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-wrapper {
   display: grid;
   grid-template-columns: 300px 1fr;
   gap: 48px;
   align-items: start;
}

@media (max-width: 992px) {
   .faq .faq-wrapper {
      grid-template-columns: 1fr;
      gap: 32px;
   }
}

.faq .faq-categories {
   display: flex;
   flex-direction: column;
   gap: 12px;
   position: sticky;
   top: 100px;
}

@media (max-width: 992px) {
   .faq .faq-categories {
      position: static;
   }
}

.faq .faq-categories .nav-tabs {
   display: flex;
   flex-direction: column;
   gap: 12px;
   border: none;
   width: 100%;
}

@media (max-width: 992px) {
   .faq .faq-categories .nav-tabs {
      flex-direction: row;
      flex-wrap: wrap;
   }
}

.faq .faq-categories .nav-tabs .nav-item {
   width: 100%;
}

@media (max-width: 992px) {
   .faq .faq-categories .nav-tabs .nav-item {
      flex: 1;
      min-width: 140px;
      width: auto;
   }
}

.faq .category-card {
   display: flex;
   align-items: center;
   gap: 16px;
   padding: 20px 24px;
   background: var(--surface-color);
   border-radius: 14px;
   cursor: pointer;
   transition: all 0.3s ease;
   border: 2px solid transparent;
   width: 100%;
   text-align: left;
}

@media (max-width: 992px) {
   .faq .category-card {
      padding: 16px 20px;
   }
}

@media (max-width: 576px) {
   .faq .category-card {
      padding: 14px 16px;
      gap: 12px;
   }
}

.faq .category-card:hover {
   border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
   transform: translateX(4px);
}

@media (max-width: 992px) {
   .faq .category-card:hover {
      transform: translateY(-4px);
   }
}

.faq .category-card.active {
   background: var(--accent-color);
   border-color: var(--accent-color);
}

.faq .category-card.active .category-icon {
   background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
   color: var(--contrast-color);
}

.faq .category-card.active .category-info h5 {
   color: var(--contrast-color);
}

.faq .category-card.active .category-info span {
   color: color-mix(in srgb, var(--contrast-color) 80%, transparent);
}

.faq .category-card .category-icon {
   width: 48px;
   height: 48px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: color-mix(in srgb, var(--accent-color) 12%, transparent);
   border-radius: 12px;
   color: var(--accent-color);
   font-size: 22px;
   transition: all 0.3s ease;
}

@media (max-width: 576px) {
   .faq .category-card .category-icon {
      width: 40px;
      height: 40px;
      font-size: 18px;
      border-radius: 10px;
   }
}

.faq .category-card .category-info h5 {
   margin: 0 0 4px;
   font-size: 16px;
   font-weight: 600;
   color: var(--heading-color);
   transition: all 0.3s ease;
}

@media (max-width: 576px) {
   .faq .category-card .category-info h5 {
      font-size: 14px;
   }
}

.faq .category-card .category-info span {
   font-size: 13px;
   color: color-mix(in srgb, var(--default-color) 60%, transparent);
   transition: all 0.3s ease;
}

@media (max-width: 576px) {
   .faq .category-card .category-info span {
      font-size: 12px;
   }
}

.faq .help-box {
   margin-top: 24px;
   padding: 28px;
   background: linear-gradient(135deg,
         color-mix(in srgb, var(--accent-color) 10%, transparent) 0%,
         color-mix(in srgb, var(--accent-color) 5%, transparent) 100%);
   border-radius: 16px;
   text-align: center;
   border: 1px solid color-mix(in srgb, var(--accent-color) 20%, transparent);
}

@media (max-width: 992px) {
   .faq .help-box {
      flex-basis: 100%;
      margin-top: 12px;
   }
}

.faq .help-box .help-icon {
   width: 56px;
   height: 56px;
   margin: 0 auto 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--accent-color);
   border-radius: 50%;
   color: var(--contrast-color);
   font-size: 24px;
}

.faq .help-box h4 {
   margin: 0 0 8px;
   font-size: 18px;
   font-weight: 700;
   color: var(--heading-color);
}

.faq .help-box p {
   margin: 0 0 20px;
   font-size: 14px;
   color: color-mix(in srgb, var(--default-color) 70%, transparent);
   line-height: 1.6;
}

.faq .help-box .help-link {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 15px;
   font-weight: 600;
   color: var(--accent-color);
   text-decoration: none;
   transition: all 0.3s ease;
}

.faq .help-box .help-link i {
   font-size: 18px;
   transition: transform 0.3s ease;
}

.faq .help-box .help-link:hover {
   gap: 12px;
}

.faq .help-box .help-link:hover i {
   transform: translateX(4px);
}

.faq .faq-content-area .faq-header-info {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 32px;
   flex-wrap: wrap;
   gap: 16px;
}

.faq .faq-content-area .faq-header-info .questions-count {
   font-size: 14px;
   font-weight: 600;
   color: var(--accent-color);
   padding: 8px 16px;
   background: color-mix(in srgb, var(--accent-color) 10%, transparent);
   border-radius: 20px;
}

.faq .faq-content-area .faq-header-info .search-box {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 12px 20px;
   background: var(--surface-color);
   border-radius: 30px;
   border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
   transition: all 0.3s ease;
}

.faq .faq-content-area .faq-header-info .search-box:focus-within {
   border-color: var(--accent-color);
   box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.faq .faq-content-area .faq-header-info .search-box i {
   color: color-mix(in srgb, var(--default-color) 50%, transparent);
   font-size: 18px;
}

.faq .faq-content-area .faq-header-info .search-box input {
   border: none;
   background: transparent;
   outline: none;
   font-size: 14px;
   color: var(--default-color);
   width: 200px;
}

.faq .faq-content-area .faq-header-info .search-box input::placeholder {
   color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

@media (max-width: 576px) {
   .faq .faq-content-area .faq-header-info .search-box input {
      width: 140px;
   }
}

.faq .tab-content .tab-pane.show {
   animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
   from {
      opacity: 0;
      transform: translateY(10px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.faq .faq-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.faq .faq-item {
   background: var(--surface-color);
   border-radius: 16px;
   overflow: hidden;
   transition: all 0.4s ease;
   border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
}

.faq .faq-item:hover {
   border-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.faq .faq-item.faq-active {
   border-color: var(--accent-color);
   box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color) 12%, transparent);
}

.faq .faq-item.faq-active .faq-question {
   background: color-mix(in srgb, var(--accent-color) 5%, transparent);
}

.faq .faq-item.faq-active .faq-question .question-icon {
   background: var(--accent-color);
   color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-question .toggle-icon {
   transform: rotate(180deg);
   color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-answer {
   max-height: 300px;
   padding: 0 28px 24px 76px;
   opacity: 1;
}

@media (max-width: 576px) {
   .faq .faq-item.faq-active .faq-answer {
      padding: 0 20px 20px 20px;
   }
}

.faq .faq-item .faq-question {
   display: flex;
   align-items: center;
   gap: 16px;
   padding: 24px 28px;
   cursor: pointer;
   transition: all 0.3s ease;
   margin: 0;
   font-size: 17px;
   font-weight: 600;
   color: var(--heading-color);
   line-height: 1.5;
}

@media (max-width: 576px) {
   .faq .faq-item .faq-question {
      padding: 18px 20px;
      gap: 12px;
      font-size: 15px;
   }
}

.faq .faq-item .faq-question .question-icon {
   flex-shrink: 0;
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: color-mix(in srgb, var(--accent-color) 10%, transparent);
   border-radius: 50%;
   color: var(--accent-color);
   font-size: 18px;
   transition: all 0.3s ease;
}

@media (max-width: 576px) {
   .faq .faq-item .faq-question .question-icon {
      width: 32px;
      height: 32px;
      font-size: 14px;
   }
}

.faq .faq-item .faq-question .toggle-icon {
   flex-shrink: 0;
   margin-left: auto;
   color: color-mix(in srgb, var(--default-color) 50%, transparent);
   font-size: 20px;
   transition: all 0.4s ease;
}

@media (max-width: 576px) {
   .faq .faq-item .faq-question .toggle-icon {
      font-size: 16px;
   }
}

.faq .faq-item .faq-answer {
   max-height: 0;
   overflow: hidden;
   padding: 0 28px 0 76px;
   opacity: 0;
   transition: all 0.4s ease;
}

@media (max-width: 576px) {
   .faq .faq-item .faq-answer {
      padding: 0 20px 0 20px;
   }
}

.faq .faq-item .faq-answer p {
   margin: 0;
   font-size: 15px;
   line-height: 1.8;
   color: color-mix(in srgb, var(--default-color) 75%, transparent);
}

@media (max-width: 576px) {
   .faq .faq-item .faq-answer p {
      font-size: 14px;
   }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .main-contact-wrapper {
   background: var(--surface-color);
   border-radius: 30px;
   padding: 40px;
   box-shadow: 0 25px 80px color-mix(in srgb, var(--default-color), transparent 94%);
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.row {
   justify-content: center;
}

.contact .info-box {
   text-align: center;
   padding: 30px 20px;
   background: linear-gradient(180deg,
         color-mix(in srgb, var(--accent-color), transparent 95%),
         transparent);
   border-radius: 20px;
   border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
   height: 100%;
   transition: all 0.3s ease;
}

.contact .info-box:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
   border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .info-box:hover .icon-wrap {
   background: var(--accent-color);
   transform: scale(1.1);
}

.contact .info-box:hover .icon-wrap i {
   color: var(--contrast-color);
}

.contact .info-box .icon-wrap {
   width: 56px;
   height: 56px;
   background: color-mix(in srgb, var(--accent-color), transparent 88%);
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 18px;
   transition: all 0.3s ease;
}

.contact .info-box .icon-wrap i {
   font-size: 24px;
   color: var(--accent-color);
   transition: all 0.3s ease;
}

.contact .info-box h5 {
   font-size: 17px;
   font-weight: 700;
   margin-bottom: 8px;
   color: var(--heading-color);
}

.contact .info-box p {
   font-size: 15px;
   font-weight: 500;
   color: var(--default-color);
   margin-bottom: 6px;
}

.contact .info-box .availability {
   font-size: 12px;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
   display: block;
}

.contact .form-section {
   margin-top: 40px;
   padding-top: 40px;
   border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .form-section .form-intro {
   margin-bottom: 30px;
}

.contact .form-section .form-intro h3 {
   font-size: 28px;
   font-weight: 700;
   color: var(--heading-color);
   margin-bottom: 10px;
}

.contact .form-section .form-intro p {
   font-size: 15px;
   color: color-mix(in srgb, var(--default-color), transparent 25%);
   line-height: 1.7;
   margin-bottom: 0;
}

.contact .form-section .php-email-form .input-group-custom {
   position: relative;
}

.contact .form-section .php-email-form .input-group-custom i {
   position: absolute;
   left: 18px;
   top: 50%;
   transform: translateY(-50%);
   font-size: 18px;
   color: color-mix(in srgb, var(--default-color), transparent 50%);
   z-index: 2;
   transition: color 0.3s ease;
}

.contact .form-section .php-email-form .input-group-custom.textarea-group i {
   top: 20px;
   transform: none;
}

.contact .form-section .php-email-form .input-group-custom:focus-within i {
   color: var(--accent-color);
}

.contact .form-section .php-email-form .form-control {
   padding: 15px 18px 15px 50px;
   border-radius: 14px;
   border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
   background-color: var(--surface-color);
   color: var(--default-color);
   font-size: 15px;
   transition: all 0.3s ease;
}

.contact .form-section .php-email-form .form-control:focus {
   border-color: var(--accent-color);
   box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-color), transparent 92%);
   outline: none;
}

.contact .form-section .php-email-form .form-control::placeholder {
   color: color-mix(in srgb, var(--default-color), transparent 55%);
}

.contact .form-section .php-email-form textarea.form-control {
   min-height: 130px;
   resize: vertical;
}

.contact .form-section .form-footer {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-top: 25px;
   gap: 20px;
}

.contact .form-section .form-footer .form-messages {
   flex: 1;
}

.contact .form-section .btn-submit {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: var(--accent-color);
   color: var(--contrast-color);
   border: none;
   padding: 16px 32px;
   border-radius: 50px;
   font-size: 15px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   white-space: nowrap;
}

.contact .form-section .btn-submit i {
   font-size: 18px;
   transition: transform 0.3s ease;
}

.contact .form-section .btn-submit:hover {
   background: color-mix(in srgb, var(--accent-color), #000 15%);
   transform: translateY(-3px);
   box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .form-section .btn-submit:hover i {
   transform: translateX(3px) rotate(-15deg);
}

.contact .sidebar-panel {
   background: linear-gradient(160deg,
         var(--accent-color),
         color-mix(in srgb, var(--accent-color), #7c3aed 40%));
   border-radius: 30px;
   padding: 35px;
   height: 100%;
   color: var(--contrast-color);
   position: relative;
   overflow: hidden;
}

.contact .sidebar-panel:before {
   content: "";
   position: absolute;
   top: -50%;
   right: -50%;
   width: 100%;
   height: 100%;
   background: radial-gradient(circle,
         color-mix(in srgb, var(--contrast-color), transparent 90%) 0%,
         transparent 70%);
   pointer-events: none;
}

.contact .sidebar-panel .panel-header {
   text-align: center;
   margin-bottom: 30px;
   position: relative;
}

.contact .sidebar-panel .panel-header .header-badge {
   width: 60px;
   height: 60px;
   background: color-mix(in srgb, var(--contrast-color), transparent 85%);
   border-radius: 16px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 16px;
}

.contact .sidebar-panel .panel-header .header-badge i {
   font-size: 28px;
   color: var(--contrast-color);
}

.contact .sidebar-panel .panel-header h4 {
   font-size: 22px;
   font-weight: 700;
   color: var(--contrast-color);
   margin-bottom: 0;
}

.contact .sidebar-panel .metrics-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 15px;
   margin-bottom: 30px;
   position: relative;
}

.contact .sidebar-panel .metrics-grid .metric-item {
   background: color-mix(in srgb, var(--contrast-color), transparent 88%);
   border-radius: 16px;
   padding: 20px 15px;
   text-align: center;
   transition: all 0.3s ease;
}

.contact .sidebar-panel .metrics-grid .metric-item:hover {
   background: color-mix(in srgb, var(--contrast-color), transparent 80%);
   transform: scale(1.03);
}

.contact .sidebar-panel .metrics-grid .metric-item .metric-value {
   font-size: 26px;
   font-weight: 800;
   color: var(--contrast-color);
   margin-bottom: 4px;
}

.contact .sidebar-panel .metrics-grid .metric-item .metric-desc {
   font-size: 12px;
   color: color-mix(in srgb, var(--contrast-color), transparent 20%);
   font-weight: 500;
}

.contact .sidebar-panel .testimonial-mini {
   background: color-mix(in srgb, var(--contrast-color), transparent 90%);
   border-radius: 18px;
   padding: 24px;
   margin-bottom: 25px;
   position: relative;
}

.contact .sidebar-panel .testimonial-mini .quote-icon {
   position: absolute;
   top: -10px;
   left: 20px;
   width: 32px;
   height: 32px;
   background: var(--contrast-color);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.contact .sidebar-panel .testimonial-mini .quote-icon i {
   font-size: 16px;
   color: var(--accent-color);
}

.contact .sidebar-panel .testimonial-mini p {
   font-size: 14px;
   font-style: italic;
   line-height: 1.7;
   color: color-mix(in srgb, var(--contrast-color), transparent 10%);
   margin-bottom: 18px;
   margin-top: 10px;
}

.contact .sidebar-panel .testimonial-mini .client-info {
   display: flex;
   align-items: center;
   gap: 12px;
}

.contact .sidebar-panel .testimonial-mini .client-info .client-avatar {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   object-fit: cover;
   border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .sidebar-panel .testimonial-mini .client-info .client-details {
   display: flex;
   flex-direction: column;
}

.contact .sidebar-panel .testimonial-mini .client-info .client-details .client-name {
   font-size: 14px;
   font-weight: 600;
   color: var(--contrast-color);
}

.contact .sidebar-panel .testimonial-mini .client-info .client-details .client-role {
   font-size: 12px;
   color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.contact .sidebar-panel .social-bar {
   text-align: center;
   position: relative;
}

.contact .sidebar-panel .social-bar .social-label {
   display: block;
   font-size: 13px;
   font-weight: 600;
   color: color-mix(in srgb, var(--contrast-color), transparent 15%);
   margin-bottom: 14px;
}

.contact .sidebar-panel .social-bar .social-icons {
   display: flex;
   justify-content: center;
   gap: 10px;
}

.contact .sidebar-panel .social-bar .social-icons a {
   width: 38px;
   height: 38px;
   background: color-mix(in srgb, var(--contrast-color), transparent 85%);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--contrast-color);
   transition: all 0.3s ease;
}

.contact .sidebar-panel .social-bar .social-icons a:hover {
   background: var(--contrast-color);
   color: var(--accent-color);
   transform: translateY(-4px);
}

.contact .sidebar-panel .social-bar .social-icons a i {
   font-size: 16px;
}

@media (max-width: 992px) {
   .contact .main-contact-wrapper {
      padding: 30px;
   }

   .contact .sidebar-panel {
      margin-top: 20px;
   }

   .contact .form-section .form-intro h3 {
      font-size: 24px;
   }
}

@media (max-width: 768px) {
   .contact .main-contact-wrapper {
      padding: 25px 20px;
   }

   .contact .form-section {
      margin-top: 30px;
      padding-top: 30px;
   }

   .contact .form-section .form-footer {
      flex-direction: column;
      align-items: stretch;
   }

   .contact .form-section .btn-submit {
      width: 100%;
      justify-content: center;
   }

   .contact .sidebar-panel {
      padding: 30px 25px;
   }

   .contact .sidebar-panel .metrics-grid {
      gap: 12px;
   }

   .contact .sidebar-panel .metrics-grid .metric-item {
      padding: 16px 12px;
   }

   .contact .sidebar-panel .metrics-grid .metric-item .metric-value {
      font-size: 22px;
   }
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
   position: relative;
   border-radius: 16px;
   overflow: hidden;
   margin-bottom: 0;
}

.service-details .service-hero img {
   width: 100%;
   height: 400px;
   object-fit: cover;
}

.service-details .service-hero .hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg,
         color-mix(in srgb, var(--accent-color), transparent 20%) 0%,
         rgba(0, 0, 0, 0.7) 100%);
   z-index: 1;
}

.service-details .service-hero .hero-content {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   padding: 3rem;
   z-index: 2;
}

.service-details .service-hero .hero-content .service-badge {
   display: inline-block;
   background: var(--accent-color);
   color: var(--contrast-color);
   padding: 0.4rem 1rem;
   border-radius: 30px;
   font-size: 0.8rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 1rem;
}

.service-details .service-hero .hero-content h2 {
   color: var(--contrast-color);
   font-size: 2.8rem;
   font-weight: 700;
   margin-bottom: 0.75rem;
}

.service-details .service-hero .hero-content p {
   color: color-mix(in srgb, var(--contrast-color), transparent 15%);
   font-size: 1.1rem;
   max-width: 600px;
   margin: 0;
}

.service-details .facts-strip {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 1.5rem;
   background: var(--surface-color);
   padding: 2rem;
   border-radius: 12px;
   margin-top: -3rem;
   margin-left: 2rem;
   margin-right: 2rem;
   position: relative;
   z-index: 3;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   margin-bottom: 3rem;
}

.service-details .facts-strip .fact-box {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.service-details .facts-strip .fact-box i {
   font-size: 2rem;
   color: var(--accent-color);
}

.service-details .facts-strip .fact-box .fact-info {
   display: flex;
   flex-direction: column;
}

.service-details .facts-strip .fact-box .fact-info .label {
   font-size: 0.8rem;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.service-details .facts-strip .fact-box .fact-info strong {
   color: var(--heading-color);
   font-size: 1rem;
}

.service-details .content-grid {
   display: grid;
   grid-template-columns: 1.2fr 0.8fr;
   gap: 3rem;
   margin-bottom: 3rem;
}

.service-details .main-column .description-block {
   margin-bottom: 2.5rem;
}

.service-details .main-column .description-block h3 {
   color: var(--heading-color);
   font-size: 1.75rem;
   font-weight: 700;
   margin-bottom: 1.25rem;
}

.service-details .main-column .description-block p {
   line-height: 1.8;
   color: color-mix(in srgb, var(--default-color), transparent 15%);
   margin-bottom: 1rem;
}

.service-details .main-column .description-block p:last-child {
   margin-bottom: 0;
}

.service-details .main-column .features-grid h4 {
   color: var(--heading-color);
   font-size: 1.4rem;
   font-weight: 600;
   margin-bottom: 1.5rem;
}

.service-details .main-column .features-grid .features-wrapper {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1.25rem;
}

.service-details .main-column .features-grid .feature-card {
   background: var(--surface-color);
   padding: 1.75rem;
   border-radius: 12px;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
   transition: all 0.3s ease;
}

.service-details .main-column .features-grid .feature-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
   border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.service-details .main-column .features-grid .feature-card .card-icon {
   width: 50px;
   height: 50px;
   background: color-mix(in srgb, var(--accent-color), transparent 85%);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 1.25rem;
}

.service-details .main-column .features-grid .feature-card .card-icon i {
   font-size: 1.5rem;
   color: var(--accent-color);
}

.service-details .main-column .features-grid .feature-card h5 {
   color: var(--heading-color);
   font-size: 1.1rem;
   font-weight: 600;
   margin-bottom: 0.75rem;
}

.service-details .main-column .features-grid .feature-card p {
   font-size: 0.9rem;
   color: color-mix(in srgb, var(--default-color), transparent 25%);
   line-height: 1.6;
   margin: 0;
}

.service-details .side-column .process-timeline {
   background: var(--surface-color);
   padding: 2rem;
   border-radius: 12px;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
   margin-bottom: 2rem;
}

.service-details .side-column .process-timeline h4 {
   color: var(--heading-color);
   font-size: 1.3rem;
   font-weight: 600;
   margin-bottom: 1.75rem;
}

.service-details .side-column .process-timeline .timeline-items {
   position: relative;
}

.service-details .side-column .process-timeline .timeline-items::before {
   content: "";
   position: absolute;
   left: 15px;
   top: 0;
   bottom: 0;
   width: 2px;
   background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .side-column .process-timeline .timeline-item {
   display: flex;
   gap: 1.25rem;
   padding-bottom: 1.5rem;
   position: relative;
}

.service-details .side-column .process-timeline .timeline-item:last-child {
   padding-bottom: 0;
}

.service-details .side-column .process-timeline .timeline-item .timeline-marker {
   width: 32px;
   height: 32px;
   background: var(--accent-color);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   position: relative;
   z-index: 1;
}

.service-details .side-column .process-timeline .timeline-item .timeline-marker span {
   color: var(--contrast-color);
   font-weight: 700;
   font-size: 0.85rem;
}

.service-details .side-column .process-timeline .timeline-item .timeline-content {
   padding-top: 0.25rem;
}

.service-details .side-column .process-timeline .timeline-item .timeline-content h6 {
   color: var(--heading-color);
   font-size: 1rem;
   font-weight: 600;
   margin-bottom: 0.5rem;
}

.service-details .side-column .process-timeline .timeline-item .timeline-content p {
   font-size: 0.875rem;
   color: color-mix(in srgb, var(--default-color), transparent 25%);
   line-height: 1.5;
   margin: 0;
}

.service-details .side-column .client-feedback {
   background: linear-gradient(135deg,
         var(--accent-color) 0%,
         color-mix(in srgb, var(--accent-color), #000 20%) 100%);
   padding: 2rem;
   border-radius: 12px;
   position: relative;
}

.service-details .side-column .client-feedback .quote-icon {
   position: absolute;
   top: 1.5rem;
   right: 1.5rem;
   opacity: 0.2;
}

.service-details .side-column .client-feedback .quote-icon i {
   font-size: 3rem;
   color: var(--contrast-color);
}

.service-details .side-column .client-feedback blockquote {
   color: var(--contrast-color);
   font-size: 1rem;
   font-style: italic;
   line-height: 1.7;
   margin: 0 0 1.5rem 0;
   position: relative;
   z-index: 1;
}

.service-details .side-column .client-feedback .client-profile {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.service-details .side-column .client-feedback .client-profile .client-avatar {
   width: 55px;
   height: 55px;
   border-radius: 50%;
   object-fit: cover;
   border: 3px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.service-details .side-column .client-feedback .client-profile .client-details strong {
   display: block;
   color: var(--contrast-color);
   font-size: 1rem;
}

.service-details .side-column .client-feedback .client-profile .client-details span {
   font-size: 0.85rem;
   color: color-mix(in srgb, var(--contrast-color), transparent 25%);
}

.service-details .inquiry-section {
   background: var(--surface-color);
   border-radius: 16px;
   padding: 3rem;
   display: grid;
   grid-template-columns: 1fr 1.5fr;
   gap: 3rem;
   align-items: center;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .inquiry-section .inquiry-content h3 {
   color: var(--heading-color);
   font-size: 1.75rem;
   font-weight: 700;
   margin-bottom: 1rem;
}

.service-details .inquiry-section .inquiry-content p {
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   line-height: 1.7;
   margin: 0;
}

.service-details .inquiry-section .inquiry-form-wrapper .form-row {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1rem;
}

.service-details .inquiry-section .inquiry-form-wrapper .form-row .message-group {
   grid-column: span 3;
}

.service-details .inquiry-section .inquiry-form-wrapper .form-control {
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
   border-radius: 8px;
   padding: 0.85rem 1rem;
   font-size: 0.95rem;
   color: var(--default-color);
   background-color: var(--background-color);
}

.service-details .inquiry-section .inquiry-form-wrapper .form-control:focus {
   border-color: var(--accent-color);
   box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .inquiry-section .inquiry-form-wrapper .form-control::placeholder {
   color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.service-details .inquiry-section .inquiry-form-wrapper .form-actions {
   margin-top: 1.25rem;
   text-align: right;
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request {
   background: var(--accent-color);
   color: var(--contrast-color);
   border: none;
   padding: 0.9rem 2rem;
   border-radius: 8px;
   font-weight: 600;
   font-size: 0.95rem;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   transition: all 0.3s ease;
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request i {
   font-size: 1.1rem;
   transition: transform 0.3s ease;
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request:hover {
   background: color-mix(in srgb, var(--accent-color), #000 15%);
   transform: translateY(-2px);
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request:hover i {
   transform: translateX(4px);
}

@media (max-width: 1200px) {
   .service-details .content-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .service-details .side-column {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
   }

   .service-details .side-column .process-timeline,
   .service-details .side-column .client-feedback {
      margin-bottom: 0;
   }
}

@media (max-width: 992px) {
   .service-details .facts-strip {
      grid-template-columns: repeat(2, 1fr);
      margin-left: 1rem;
      margin-right: 1rem;
   }

   .service-details .inquiry-section {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2rem;
   }

   .service-details .inquiry-section .inquiry-form-wrapper .form-row {
      grid-template-columns: 1fr 1fr;
   }

   .service-details .inquiry-section .inquiry-form-wrapper .form-row .message-group {
      grid-column: span 2;
   }

   .service-details .side-column {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 768px) {
   .service-details .service-hero img {
      height: 300px;
   }

   .service-details .service-hero .hero-content {
      padding: 2rem;
   }

   .service-details .service-hero .hero-content h2 {
      font-size: 2rem;
   }

   .service-details .service-hero .hero-content p {
      font-size: 1rem;
   }

   .service-details .facts-strip {
      grid-template-columns: 1fr;
      margin-left: 0;
      margin-right: 0;
      margin-top: -2rem;
      padding: 1.5rem;
   }

   .service-details .facts-strip .fact-box {
      padding-bottom: 1rem;
      border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
   }

   .service-details .facts-strip .fact-box:last-child {
      padding-bottom: 0;
      border-bottom: none;
   }

   .service-details .main-column .features-grid .features-wrapper {
      grid-template-columns: 1fr;
   }

   .service-details .inquiry-section .inquiry-form-wrapper .form-row {
      grid-template-columns: 1fr;
   }

   .service-details .inquiry-section .inquiry-form-wrapper .form-row .message-group {
      grid-column: span 1;
   }

   .service-details .inquiry-section .inquiry-form-wrapper .form-actions {
      text-align: center;
   }

   .service-details .inquiry-section .inquiry-form-wrapper .btn-request {
      width: 100%;
      justify-content: center;
   }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
   margin-bottom: 50px;
   padding: 40px 30px;
   background: linear-gradient(135deg,
         color-mix(in srgb, var(--accent-color), transparent 97%) 0%,
         color-mix(in srgb, var(--accent-color), transparent 100%) 100%);
   border-radius: 20px;
   text-align: center;
}

.terms-of-service .tos-header .header-content {
   max-width: 800px;
   margin: 0 auto;
}

.terms-of-service .tos-header .header-content .badge-wrapper {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 10px 24px;
   background-color: var(--surface-color);
   border-radius: 50px;
   margin-bottom: 25px;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.terms-of-service .tos-header .header-content .badge-wrapper i {
   color: var(--accent-color);
   font-size: 1.1rem;
}

.terms-of-service .tos-header .header-content .badge-wrapper .last-updated {
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   font-size: 0.9rem;
   font-weight: 500;
}

.terms-of-service .tos-header .header-content h2 {
   font-size: 2.8rem;
   margin-bottom: 18px;
   font-weight: 700;
}

@media (max-width: 768px) {
   .terms-of-service .tos-header .header-content h2 {
      font-size: 2.2rem;
   }
}

.terms-of-service .tos-header .header-content p {
   color: color-mix(in srgb, var(--default-color), transparent 40%);
   font-size: 1.05rem;
   line-height: 1.6;
}

.terms-of-service .tos-sidebar {
   position: sticky;
   top: 100px;
   background-color: var(--surface-color);
   border-radius: 16px;
   padding: 30px 20px;
   box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
   .terms-of-service .tos-sidebar {
      position: static;
      margin-bottom: 30px;
   }
}

.terms-of-service .tos-sidebar h5 {
   font-size: 1rem;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 20px;
   font-weight: 600;
}

.terms-of-service .tos-sidebar .terms-nav {
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item {
   display: flex;
   align-items: center;
   gap: 15px;
   padding: 12px 15px;
   border-radius: 10px;
   text-decoration: none;
   transition: all 0.3s;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.terms-of-service .tos-sidebar .terms-nav .nav-item .number {
   font-size: 0.85rem;
   font-weight: 700;
   color: color-mix(in srgb, var(--default-color), transparent 60%);
   min-width: 25px;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item .text {
   font-size: 0.95rem;
   font-weight: 500;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item:hover,
.terms-of-service .tos-sidebar .terms-nav .nav-item.active {
   background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
   color: var(--accent-color);
}

.terms-of-service .tos-sidebar .terms-nav .nav-item:hover .number,
.terms-of-service .tos-sidebar .terms-nav .nav-item.active .number {
   color: var(--accent-color);
}

.terms-of-service .tos-content .content-section {
   position: relative;
   margin-bottom: 45px;
   padding: 35px;
   background-color: var(--surface-color);
   border-radius: 16px;
   scroll-margin-top: 100px;
   box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.terms-of-service .tos-content .content-section:last-of-type {
   margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .section-number {
   position: absolute;
   top: -15px;
   left: 35px;
   width: 50px;
   height: 50px;
   background-color: var(--accent-color);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
   font-weight: 700;
   color: var(--contrast-color);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.terms-of-service .tos-content .content-section h3 {
   font-size: 1.6rem;
   margin-bottom: 18px;
   margin-top: 15px;
   color: var(--heading-color);
   font-weight: 700;
}

.terms-of-service .tos-content .content-section p {
   color: color-mix(in srgb, var(--default-color), transparent 25%);
   line-height: 1.8;
   margin-bottom: 18px;
   font-size: 1rem;
}

.terms-of-service .tos-content .content-section p:last-child {
   margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .highlight-card {
   display: flex;
   gap: 18px;
   padding: 22px;
   background: linear-gradient(135deg,
         color-mix(in srgb, var(--accent-color), transparent 94%) 0%,
         color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
   border-radius: 12px;
   margin-top: 20px;
   border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.terms-of-service .tos-content .content-section .highlight-card .card-icon {
   width: 45px;
   height: 45px;
   background-color: var(--accent-color);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .highlight-card .card-icon i {
   font-size: 1.3rem;
   color: var(--contrast-color);
}

.terms-of-service .tos-content .content-section .highlight-card .card-text {
   flex: 1;
   display: flex;
   align-items: center;
}

.terms-of-service .tos-content .content-section .highlight-card .card-text p {
   margin: 0;
   font-size: 0.95rem;
   line-height: 1.6;
}

.terms-of-service .tos-content .content-section .list-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 15px;
   margin-top: 20px;
}

@media (max-width: 768px) {
   .terms-of-service .tos-content .content-section .list-grid {
      grid-template-columns: 1fr;
   }
}

.terms-of-service .tos-content .content-section .list-grid .list-card {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   padding: 16px;
   background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
   border-radius: 10px;
   border-left: 3px solid var(--accent-color);
}

.terms-of-service .tos-content .content-section .list-grid .list-card i {
   color: var(--accent-color);
   font-size: 1.1rem;
   margin-top: 2px;
   flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .list-grid .list-card span {
   font-size: 0.93rem;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   line-height: 1.5;
}

.terms-of-service .tos-content .content-section .warning-card {
   padding: 25px;
   background-color: color-mix(in srgb, #ffc107, transparent 94%);
   border-radius: 12px;
   margin-top: 20px;
   border: 1px solid color-mix(in srgb, #ffc107, transparent 80%);
}

.terms-of-service .tos-content .content-section .warning-card .warning-header {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 12px;
}

.terms-of-service .tos-content .content-section .warning-card .warning-header i {
   font-size: 1.5rem;
   color: #ffc107;
}

.terms-of-service .tos-content .content-section .warning-card .warning-header h5 {
   margin: 0;
   font-size: 1.1rem;
   font-weight: 600;
}

.terms-of-service .tos-content .content-section .warning-card p {
   margin: 0;
   font-size: 0.95rem;
   padding-left: 38px;
}

.terms-of-service .tos-content .content-section .prohibited-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 15px;
   margin-top: 20px;
}

@media (max-width: 768px) {
   .terms-of-service .tos-content .content-section .prohibited-grid {
      grid-template-columns: 1fr;
   }
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card {
   padding: 18px;
   background-color: color-mix(in srgb, #dc3545, transparent 96%);
   border-radius: 10px;
   display: flex;
   align-items: center;
   gap: 14px;
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card .prohibited-icon {
   width: 40px;
   height: 40px;
   background-color: color-mix(in srgb, #dc3545, transparent 88%);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card .prohibited-icon i {
   color: #dc3545;
   font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card p {
   margin: 0;
   font-size: 0.93rem;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-card {
   background-color: color-mix(in srgb, var(--default-color), transparent 97%);
   padding: 28px;
   border-radius: 12px;
   margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-card h6 {
   font-size: 1.05rem;
   margin-bottom: 18px;
   font-weight: 600;
   color: var(--heading-color);
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   margin-bottom: 14px;
   color: color-mix(in srgb, var(--default-color), transparent 25%);
   font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li:last-child {
   margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li i {
   color: var(--accent-color);
   font-size: 1.1rem;
   margin-top: 2px;
   flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li span {
   flex: 1;
   line-height: 1.6;
}

.terms-of-service .tos-content .content-section .notice-card {
   display: flex;
   align-items: flex-start;
   gap: 16px;
   padding: 22px;
   background: linear-gradient(135deg,
         color-mix(in srgb, var(--accent-color), transparent 94%) 0%,
         color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
   border-radius: 12px;
   margin-top: 20px;
   border-left: 4px solid var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-card i {
   font-size: 1.4rem;
   color: var(--accent-color);
   flex-shrink: 0;
   margin-top: 2px;
}

.terms-of-service .tos-content .content-section .notice-card p {
   margin: 0;
   font-size: 0.95rem;
   line-height: 1.6;
}

.terms-of-service .tos-content .tos-contact {
   margin-top: 40px;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper {
   background: linear-gradient(135deg,
         var(--accent-color) 0%,
         color-mix(in srgb, var(--accent-color), #000 15%) 100%);
   border-radius: 16px;
   padding: 40px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 30px;
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
   .terms-of-service .tos-content .tos-contact .contact-wrapper {
      flex-direction: column;
      text-align: center;
   }
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-info {
   flex: 1;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-info h4 {
   font-size: 1.5rem;
   margin-bottom: 10px;
   color: var(--contrast-color);
   font-weight: 700;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-info p {
   color: color-mix(in srgb, var(--contrast-color), transparent 20%);
   margin: 0;
   font-size: 1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 14px 32px;
   background-color: var(--contrast-color);
   color: var(--accent-color);
   border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
   transition: all 0.3s;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn i {
   font-size: 1.1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn span {
   font-size: 1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn:hover {
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media print {

   .terms-of-service .tos-sidebar,
   .terms-of-service .tos-contact {
      display: none;
   }

   .terms-of-service .content-section {
      page-break-inside: avoid;
      box-shadow: none;
   }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
   font-size: 1rem;
   line-height: 1.75;
}

.privacy .policy-sidebar {
   position: sticky;
   top: 100px;
   padding: 30px;
   background-color: var(--surface-color);
   border-radius: 16px;
   box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .policy-sidebar .effective-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 16px;
   background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
   border-radius: 30px;
   font-size: 0.85rem;
   color: var(--accent-color);
   margin-bottom: 20px;
}

.privacy .policy-sidebar .effective-badge i {
   font-size: 1rem;
}

.privacy .policy-sidebar h1 {
   font-size: 2rem;
   font-weight: 700;
   color: var(--heading-color);
   margin-bottom: 15px;
}

.privacy .policy-sidebar .sidebar-intro {
   font-size: 0.95rem;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   margin-bottom: 30px;
   line-height: 1.6;
}

.privacy .policy-sidebar .policy-nav {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-bottom: 30px;
   border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
   padding-top: 25px;
}

.privacy .policy-sidebar .policy-nav .nav-link {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 12px 15px;
   border-radius: 10px;
   color: var(--default-color);
   text-decoration: none;
   transition: all 0.3s ease;
}

.privacy .policy-sidebar .policy-nav .nav-link:hover,
.privacy .policy-sidebar .policy-nav .nav-link.active {
   background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
   color: var(--accent-color);
}

.privacy .policy-sidebar .policy-nav .nav-link:hover .nav-number,
.privacy .policy-sidebar .policy-nav .nav-link.active .nav-number {
   background-color: var(--accent-color);
   color: var(--contrast-color);
}

.privacy .policy-sidebar .policy-nav .nav-link .nav-number {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 28px;
   height: 28px;
   background-color: color-mix(in srgb, var(--default-color), transparent 90%);
   border-radius: 6px;
   font-size: 0.75rem;
   font-weight: 600;
   transition: all 0.3s ease;
}

.privacy .policy-sidebar .policy-nav .nav-link .nav-text {
   font-size: 0.9rem;
   font-weight: 500;
}

.privacy .policy-sidebar .contact-card {
   padding: 20px;
   background: linear-gradient(135deg,
         color-mix(in srgb, var(--accent-color), transparent 90%),
         color-mix(in srgb, var(--accent-color), transparent 95%));
   border-radius: 12px;
}

.privacy .policy-sidebar .contact-card h4 {
   font-size: 1.1rem;
   font-weight: 600;
   color: var(--heading-color);
   margin-bottom: 5px;
}

.privacy .policy-sidebar .contact-card p {
   font-size: 0.9rem;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   margin-bottom: 15px;
}

.privacy .policy-sidebar .contact-card .contact-email {
   display: flex;
   align-items: center;
   gap: 10px;
   color: var(--accent-color);
   font-weight: 500;
   margin-bottom: 12px;
   font-size: 0.9rem;
}

.privacy .policy-sidebar .contact-card .contact-email i {
   font-size: 1.1rem;
}

.privacy .policy-sidebar .contact-card .contact-address {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   font-size: 0.85rem;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.privacy .policy-sidebar .contact-card .contact-address i {
   font-size: 1rem;
   margin-top: 2px;
}

.privacy .policy-content {
   padding-left: 20px;
}

.privacy .policy-content .policy-section {
   margin-bottom: 50px;
   padding-bottom: 50px;
   border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .policy-content .policy-section:last-child {
   border-bottom: none;
   margin-bottom: 0;
   padding-bottom: 0;
}

.privacy .policy-content .policy-section .section-header {
   display: flex;
   align-items: center;
   gap: 15px;
   margin-bottom: 25px;
}

.privacy .policy-content .policy-section .section-header .section-number {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 45px;
   height: 45px;
   background-color: var(--accent-color);
   color: var(--contrast-color);
   border-radius: 12px;
   font-size: 1rem;
   font-weight: 700;
}

.privacy .policy-content .policy-section .section-header h2 {
   font-size: 1.6rem;
   font-weight: 700;
   color: var(--heading-color);
   margin: 0;
}

.privacy .policy-content .policy-section .section-body p {
   margin-bottom: 20px;
   color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-content .policy-section .section-body p:last-child {
   margin-bottom: 0;
}

.privacy .policy-content .policy-section .section-body h3 {
   font-size: 1.2rem;
   font-weight: 600;
   color: var(--heading-color);
   margin: 25px 0 15px;
}

.privacy .policy-content .policy-section .section-body h3 i {
   margin-right: 10px;
   color: var(--accent-color);
}

.privacy .policy-content .policy-section .section-body ul {
   list-style: none;
   padding: 0;
   margin: 15px 0;
}

.privacy .policy-content .policy-section .section-body ul li {
   position: relative;
   padding-left: 28px;
   margin-bottom: 12px;
   color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-content .policy-section .section-body ul li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 8px;
   width: 8px;
   height: 8px;
   background-color: var(--accent-color);
   border-radius: 50%;
}

.privacy .policy-content .policy-section .section-body ul li:last-child {
   margin-bottom: 0;
}

.privacy .info-card {
   background-color: var(--surface-color);
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
   border-radius: 12px;
   padding: 25px;
   margin-bottom: 20px;
}

.privacy .info-card:last-child {
   margin-bottom: 0;
}

.privacy .info-card h3 {
   margin-top: 0 !important;
}

.privacy .usage-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 15px;
   margin-top: 25px;
}

.privacy .usage-grid .usage-item {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 18px 20px;
   background-color: var(--surface-color);
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
   border-radius: 10px;
   transition: all 0.3s ease;
}

.privacy .usage-grid .usage-item:hover {
   border-color: var(--accent-color);
   transform: translateY(-2px);
}

.privacy .usage-grid .usage-item i {
   font-size: 1.4rem;
   color: var(--accent-color);
}

.privacy .usage-grid .usage-item span {
   font-size: 0.9rem;
   font-weight: 500;
   color: var(--heading-color);
}

.privacy .sharing-item {
   margin-bottom: 25px;
}

.privacy .sharing-item:last-child {
   margin-bottom: 0;
}

.privacy .sharing-item h3 {
   font-size: 1.15rem;
   font-weight: 600;
   color: var(--heading-color);
   margin-bottom: 10px;
   padding-bottom: 10px;
   border-bottom: 2px solid var(--accent-color);
   display: inline-block;
}

.privacy .security-features {
   display: flex;
   flex-direction: column;
   gap: 20px;
   margin-top: 25px;
}

.privacy .security-features .feature {
   display: flex;
   gap: 20px;
   padding: 20px;
   background-color: var(--surface-color);
   border-radius: 12px;
   border-left: 4px solid var(--accent-color);
}

.privacy .security-features .feature .feature-icon {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 50px;
   height: 50px;
   background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
   border-radius: 10px;
   flex-shrink: 0;
}

.privacy .security-features .feature .feature-icon i {
   font-size: 1.5rem;
   color: var(--accent-color);
}

.privacy .security-features .feature .feature-content h4 {
   font-size: 1.1rem;
   font-weight: 600;
   color: var(--heading-color);
   margin-bottom: 5px;
}

.privacy .security-features .feature .feature-content p {
   font-size: 0.9rem;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   margin: 0;
}

.privacy .rights-list {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
   margin-top: 25px;
}

.privacy .rights-list .right-item {
   display: flex;
   gap: 15px;
   padding: 20px;
   background-color: var(--surface-color);
   border-radius: 12px;
   box-shadow: 0 3px 15px color-mix(in srgb, var(--default-color), transparent 95%);
   transition: all 0.3s ease;
}

.privacy .rights-list .right-item:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .rights-list .right-item i {
   font-size: 1.5rem;
   color: var(--accent-color);
   flex-shrink: 0;
}

.privacy .rights-list .right-item h4 {
   font-size: 1rem;
   font-weight: 600;
   color: var(--heading-color);
   margin-bottom: 5px;
}

.privacy .rights-list .right-item p {
   font-size: 0.85rem;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   margin: 0;
}

.privacy .update-notice {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   padding: 20px;
   background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
   border-radius: 10px;
   margin-top: 25px;
}

.privacy .update-notice i {
   font-size: 1.3rem;
   color: var(--accent-color);
   flex-shrink: 0;
   margin-top: 2px;
}

.privacy .update-notice span {
   font-size: 0.95rem;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   line-height: 1.6;
}

@media (max-width: 992px) {
   .privacy .policy-sidebar {
      position: relative;
      top: 0;
      margin-bottom: 40px;
   }

   .privacy .policy-sidebar .policy-nav {
      display: none;
   }

   .privacy .policy-content {
      padding-left: 0;
   }
}

@media (max-width: 768px) {
   .privacy .usage-grid {
      grid-template-columns: 1fr;
   }

   .privacy .rights-list {
      grid-template-columns: 1fr;
   }

   .privacy .policy-content .policy-section .section-header h2 {
      font-size: 1.4rem;
   }

   .privacy .policy-content .policy-section .section-header .section-number {
      width: 40px;
      height: 40px;
      font-size: 0.9rem;
   }

   .privacy .security-features .feature {
      flex-direction: column;
      text-align: center;
   }

   .privacy .security-features .feature .feature-icon {
      margin: 0 auto;
   }
}

@media print {
   .privacy .policy-sidebar {
      display: none;
   }

   .privacy .policy-content {
      padding-left: 0;
   }

   .privacy .policy-content .policy-section {
      page-break-inside: avoid;
   }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
   padding: 100px 0;
   min-height: 100vh;
   display: flex;
   align-items: center;
   background-color: var(--background-color);
   position: relative;
   overflow: hidden;
}

.error-404::before {
   content: "";
   position: absolute;
   top: -50%;
   right: -20%;
   width: 70%;
   height: 150%;
   background: radial-gradient(ellipse,
         color-mix(in srgb, var(--accent-color), transparent 92%) 0%,
         transparent 70%);
   pointer-events: none;
}

.error-404 .error-visual {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 40px 0;
}

.error-404 .error-visual .glitch-wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
}

.error-404 .error-visual .glitch-wrapper .digit {
   font-size: clamp(100px, 18vw, 180px);
   font-weight: 700;
   font-family: var(--heading-font);
   color: var(--accent-color);
   line-height: 1;
   text-shadow: 4px 4px 0 color-mix(in srgb, var(--accent-color), transparent 80%);
}

.error-404 .error-visual .glitch-wrapper .digit-middle {
   font-size: clamp(80px, 14vw, 140px);
   color: color-mix(in srgb, var(--accent-color), transparent 30%);
   animation: float 3s ease-in-out infinite;
}

.error-404 .error-visual .glitch-wrapper .digit-middle i {
   display: block;
}

.error-404 .error-visual .error-decoration {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   pointer-events: none;
}

.error-404 .error-visual .error-decoration .circle {
   position: absolute;
   border-radius: 50%;
   border: 2px dashed color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-visual .error-decoration .circle-1 {
   width: 300px;
   height: 300px;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   animation: rotate 20s linear infinite;
}

.error-404 .error-visual .error-decoration .circle-2 {
   width: 220px;
   height: 220px;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   animation: rotate 15s linear infinite reverse;
}

.error-404 .error-visual .error-decoration .circle-3 {
   width: 140px;
   height: 140px;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   animation: rotate 10s linear infinite;
}

.error-404 .error-content .error-badge {
   display: inline-block;
   padding: 8px 20px;
   background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
   color: var(--accent-color);
   border-radius: 30px;
   font-size: 14px;
   font-weight: 500;
   letter-spacing: 0.05em;
   text-transform: uppercase;
   margin-bottom: 24px;
}

.error-404 .error-content .error-title {
   font-size: clamp(28px, 4vw, 42px);
   font-weight: 600;
   color: var(--heading-color);
   margin-bottom: 20px;
   line-height: 1.2;
}

.error-404 .error-content .error-description {
   font-size: 17px;
   line-height: 1.8;
   color: color-mix(in srgb, var(--default-color), transparent 25%);
   margin-bottom: 32px;
   max-width: 480px;
}

.error-404 .error-content .search-box {
   display: flex;
   max-width: 400px;
   margin-bottom: 32px;
   border-radius: 50px;
   overflow: hidden;
   border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
   transition: all 0.3s ease;
}

.error-404 .error-content .search-box:focus-within {
   border-color: var(--accent-color);
   box-shadow: 0 4px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.error-404 .error-content .search-box input {
   flex: 1;
   padding: 14px 24px;
   border: none;
   background-color: transparent;
   color: var(--default-color);
   font-size: 15px;
   outline: none;
}

.error-404 .error-content .search-box input::placeholder {
   color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .error-content .search-box button {
   padding: 14px 24px;
   background-color: var(--accent-color);
   color: var(--contrast-color);
   border: none;
   cursor: pointer;
   transition: all 0.3s ease;
}

.error-404 .error-content .search-box button:hover {
   background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.error-404 .error-content .search-box button i {
   font-size: 18px;
}

.error-404 .error-content .error-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
}

.error-404 .error-content .error-actions .btn-home {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 14px 28px;
   background-color: var(--accent-color);
   color: var(--contrast-color);
   border-radius: 50px;
   text-decoration: none;
   font-weight: 500;
   font-size: 15px;
   transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-home:hover {
   background-color: color-mix(in srgb, var(--accent-color), #000 15%);
   transform: translateX(-4px);
}

.error-404 .error-content .error-actions .btn-home i {
   font-size: 18px;
}

.error-404 .error-content .error-actions .btn-contact {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 14px 28px;
   background-color: transparent;
   color: var(--heading-color);
   border-radius: 50px;
   text-decoration: none;
   font-weight: 500;
   font-size: 15px;
   transition: all 0.3s ease;
   border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-content .error-actions .btn-contact:hover {
   border-color: var(--accent-color);
   color: var(--accent-color);
}

.error-404 .error-content .error-actions .btn-contact i {
   font-size: 18px;
}

.error-404 .quick-links {
   background-color: var(--surface-color);
   border-radius: 16px;
   padding: 40px;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.error-404 .quick-links h4 {
   font-size: 20px;
   font-weight: 600;
   color: var(--heading-color);
   margin-bottom: 28px;
   text-align: center;
}

.error-404 .quick-links .links-wrapper {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
}

@media (max-width: 992px) {
   .error-404 .quick-links .links-wrapper {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 576px) {
   .error-404 .quick-links .links-wrapper {
      grid-template-columns: 1fr;
   }
}

.error-404 .quick-links .quick-link-item {
   display: flex;
   align-items: center;
   gap: 16px;
   padding: 20px;
   background-color: var(--background-color);
   border-radius: 12px;
   text-decoration: none;
   transition: all 0.3s ease;
}

.error-404 .quick-links .quick-link-item:hover {
   transform: translateY(-4px);
   box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.error-404 .quick-links .quick-link-item:hover .link-icon {
   background-color: var(--accent-color);
   color: var(--contrast-color);
}

.error-404 .quick-links .quick-link-item .link-icon {
   width: 50px;
   height: 50px;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
   color: var(--accent-color);
   border-radius: 10px;
   font-size: 22px;
   transition: all 0.3s ease;
   flex-shrink: 0;
}

.error-404 .quick-links .quick-link-item .link-text {
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.error-404 .quick-links .quick-link-item .link-text .link-title {
   font-size: 16px;
   font-weight: 600;
   color: var(--heading-color);
}

.error-404 .quick-links .quick-link-item .link-text .link-subtitle {
   font-size: 13px;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@keyframes float {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-15px);
   }
}

@keyframes rotate {
   from {
      transform: translate(-50%, -50%) rotate(0deg);
   }

   to {
      transform: translate(-50%, -50%) rotate(360deg);
   }
}

@media (max-width: 992px) {
   .error-404 {
      padding: 80px 0;
   }

   .error-404 .error-visual {
      margin-bottom: 40px;
   }

   .error-404 .error-visual .error-decoration .circle-1 {
      width: 240px;
      height: 240px;
   }

   .error-404 .error-visual .error-decoration .circle-2 {
      width: 180px;
      height: 180px;
   }

   .error-404 .error-visual .error-decoration .circle-3 {
      width: 120px;
      height: 120px;
   }

   .error-404 .error-content {
      text-align: center;
   }

   .error-404 .error-content .error-description {
      margin-left: auto;
      margin-right: auto;
   }

   .error-404 .error-content .search-box {
      margin-left: auto;
      margin-right: auto;
   }

   .error-404 .error-content .error-actions {
      justify-content: center;
   }

   .error-404 .quick-links {
      padding: 30px 20px;
   }
}

@media (max-width: 576px) {
   .error-404 .error-content .search-box {
      max-width: 100%;
   }

   .error-404 .error-content .error-actions {
      flex-direction: column;
      width: 100%;
   }

   .error-404 .error-content .error-actions .btn-home,
   .error-404 .error-content .error-actions .btn-contact {
      width: 100%;
      justify-content: center;
   }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
   /* Add your styles here */
}

/*--------------------------------------------------------------
# Premium Gallery Section
--------------------------------------------------------------*/

.gallery-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 25px;
}

.gallery-item {
   position: relative;
   overflow: hidden;
   border-radius: 18px;
   display: block;
}

.gallery-item img {
   width: 100%;
   height: 260px;
   object-fit: cover;
   transition: 0.6s ease;
}

/* Hover Zoom */
.gallery-item:hover img {
   transform: scale(1.12);
}

/* Overlay */
.gallery-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: 0.4s;
}

.gallery-overlay i {
   color: #fff;
   font-size: 28px;
   background: rgba(255, 255, 255, 0.2);
   padding: 14px;
   border-radius: 50%;
   backdrop-filter: blur(6px);
}

.gallery-item:hover .gallery-overlay {
   opacity: 1;
}

/* Button */
.gallery-btn {
   padding: 14px 35px;
   /* background: var(--accent-color); */
   color: var(--accent-color);
   border-radius: 40px;
   border: 1px solid var(--accent-color);
   font-weight: 600;
   text-decoration: none;
   transition: 0.3s;
}

.gallery-btn:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
   background: var(--accent-color);
   color: white;
}

/* Responsive */
@media (max-width: 992px) {
   .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 576px) {
   .gallery-grid {
      grid-template-columns: 1fr;
   }
}

/*--------------------------------------------------------------
# Donation Section
--------------------------------------------------------------*/

.donation {
   background: linear-gradient(180deg, #f8fbff 0%, #eef5f1 100%);
   padding: 70px 0;
}

.donation-wrapper {
   display: grid;
   grid-template-columns: minmax(0, 1.1fr) minmax(340px, 460px);
   align-items: center;
   gap: 36px;
}

/* LEFT */
.donation-content {
   min-width: 0;
   padding: 8px 0;
}

.donation-content h2 {
   font-size: 34px;
   font-weight: 700;
   line-height: 1.25;
   margin-bottom: 16px;
   color: #102a43;
}

.donation-content p {
   font-size: 16px;
   line-height: 1.8;
   margin-bottom: 22px;
   color: #425466;
}

.donation-content ul,
.donation-points {
   list-style: none;
   padding: 0;
   margin: 0;
}

.donation-content li,
.donation-points li {
   position: relative;
   margin-bottom: 12px;
   padding-left: 28px;
   font-size: 15px;
   line-height: 1.65;
   color: #243b53;
}

.donation-content li::before {
   content: "\F26A";
   position: absolute;
   left: 0;
   top: 1px;
   font-family: "bootstrap-icons";
   color: #0f9f6e;
}

.donation-points i {
   color: #0f9f6e;
   margin-right: 8px;
}

.donation-points li {
   padding-left: 0;
}

.donation-points li::before {
   content: none;
}

/* RIGHT CARD */
.donation-card {
   background: #fff;
   padding: 28px;
   border: 1px solid #dce7ef;
   border-radius: 8px;
   box-shadow: 0 18px 44px rgba(16, 42, 67, 0.1);
   width: 100%;
}

.donation-card h4 {
   font-weight: 700;
   margin-bottom: 18px;
   color: #102a43;
}

/* AMOUNT BUTTONS */
.amount-options {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 10px;
   margin-bottom: 20px;
}

.donor-fields {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 12px;
   margin-bottom: 20px;
}

.donor-fields textarea {
   grid-column: 1 / -1;
   resize: vertical;
}

.amount-options button {
   min-height: 44px;
   padding: 10px;
   border: 1px solid #d7e2ea;
   border-radius: 8px;
   background: #f8fafc;
   color: #243b53;
   cursor: pointer;
   font-weight: 600;
   transition: 0.2s ease;
}

.amount-options button.active,
.amount-options button:hover {
   border-color: #0f9f6e;
   background: #0f9f6e;
   color: #fff;
}

/* INPUT */
.custom-amount input,
.donation-card .form-control,
.donation-card .form-select,
.donation .payment-form input {
   width: 100%;
   min-height: 48px;
   padding: 11px 14px;
   border-radius: 8px;
   border: 1px solid #d7e2ea;
   margin-bottom: 20px;
   outline: none;
   color: #102a43;
   background-color: #fff;
}

.donation-card .form-select {
   margin-bottom: 0;
}

.custom-amount input:focus,
.donation-card .form-control:focus,
.donation-card .form-select:focus,
.donation .payment-form input:focus {
   border-color: #0f9f6e;
   box-shadow: 0 0 0 4px rgba(15, 159, 110, 0.12);
}

.donation .payment-fields,
.donation .payment-box {
   border: 1px solid #dce7ef;
   border-radius: 8px;
   background: #f8fafc;
   padding: 16px;
}

.donation .payment-info {
   border-radius: 8px;
   background: #eef8f3;
   color: #243b53;
   padding: 14px;
}

.donation .payment-info strong {
   display: block;
   margin-bottom: 6px;
   color: #102a43;
}

.donation .bank-info {
   display: grid;
   gap: 10px;
   margin-bottom: 16px;
}

.donation .info-item {
   display: grid;
   grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1.2fr);
   gap: 12px;
   align-items: center;
   padding: 12px;
   border-radius: 8px;
   background: #fff;
}

.donation .info-item .label {
   color: #627d98;
   font-size: 13px;
   font-weight: 600;
}

.donation .info-item .value {
   color: #102a43;
   font-size: 14px;
   font-weight: 600;
   overflow-wrap: anywhere;
}

.donation .payment-form {
   display: grid;
   gap: 12px;
}

.donation .payment-form input {
   margin-bottom: 0;
}

/* BUTTON */
.donate-btn {
   width: 100%;
   min-height: 50px;
   padding: 13px 18px;
   border: none;
   border-radius: 8px;
   background: #d84f4f;
   color: #fff;
   font-weight: 600;
   font-size: 16px;
   cursor: pointer;
   transition: 0.2s ease;
}

.donate-btn i {
   margin-right: 8px;
}

.donate-btn:hover {
   background: #bd3f3f;
}

/* NOTE */
.secure-note {
   margin-top: 12px;
   font-size: 13px;
   color: #777;
   text-align: center;
}

.secure-note i {
   color: #0f9f6e;
   margin-right: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
   .donation-wrapper {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 768px) {
   .donation-card {
      width: 100%;
   }

   .amount-options {
      grid-template-columns: repeat(2, 1fr);
   }

   .donor-fields {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 480px) {
   .donation {
      padding: 45px 0;
   }

   .donation-card {
      padding: 20px;
   }

   .donation-content h2 {
      font-size: 28px;
   }

   .donation .info-item {
      grid-template-columns: 1fr;
      gap: 4px;
   }
}





.footer-logo {
   height: 100px;
   margin-right: 10px;
   object-fit: contain;
   background-color: white;
   border-radius: 10px;
}

.partners-section {
   padding: 80px 0;
   background: #f7fafd;
   text-align: center;
}

.section-title {
   font-size: 32px;
   color: #271bb1;

   margin-bottom: 10px;
}

.section-subtitle {
   color: #666;
   margin-bottom: 40px;
}

/* SLIDER */
.slider {
   overflow: hidden;
   position: relative;
}

.slide-track {
   display: flex;
   width: calc(250px * 12);
   animation: scroll 25s linear infinite;
}

/* CARD */
.partner-card {
   width: 250px;
   margin: 0 10px;

   padding: 25px 15px;

   transition: 0.4s;
}

.partner-card img {
   width: 100%;
   height: 100px;
   margin-bottom: 10px;
   filter: grayscale(100%);
   transition: 0.8s;
}

.partner-card h4 {
   color: #0b3c5d;
}

.partner-card p {
   font-size: 13px;
   color: #777;
}

/* 🔥 Hover Premium Effect */
.partner-card:hover {
   transform: translateY(-10px) scale(1.03);
   /* box-shadow: 0 15px 40px rgba(0,0,0,0.1); */
}

.partner-card:hover img {
   filter: grayscale(0%);
   transform: scale(1.1);
}

/* 🔁 Auto Scroll Animation */
@keyframes scroll {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-50%);
   }
}

/* 
.partner-card:hover {
  border: 1px solid rgba(11,60,93,0.2);
} */

/* 
become a member section */

.member-section {
   padding: 90px 0;
   background: linear-gradient(135deg, #f0f7ff, #ffffff);
   position: relative;
   overflow: hidden;
}

/* Glow effect background */
.member-section::before {
   content: "";
   position: absolute;
   top: -100px;
   right: -100px;
   width: 300px;
   height: 300px;
   background: radial-gradient(circle, rgba(0, 150, 255, 0.15), transparent 70%);
}

/* Content */
.member-content h2 {
   font-size: 36px;
   font-weight: 700;
   color: #0f0b46;
   margin-bottom: 15px;
}

.member-content .subtitle {
   color: #555;
   margin-bottom: 25px;
   font-size: 16px;
}

/* Benefits List */
.member-benefits {
   list-style: none;
   padding: 0;
   margin-bottom: 30px;
}

.member-benefits li {
   margin-bottom: 12px;
   font-size: 15px;
   color: #444;
   display: flex;
   align-items: center;
   gap: 10px;
}

.member-benefits i {
   color: #0b3c5d;
   font-size: 18px;
}

/* Button */
.member-btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 14px 30px;
   background: #271bb1;
   border: 1px solid #271bb1;
   color: #fff;
   border-radius: 40px;
   text-decoration: none;
   font-weight: 600;
   transition: 0.4s;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.member-btn i {
   transition: 0.3s;
}

.member-btn:hover {
   transform: translateY(-4px);
   box-shadow: 0 15px 35px rgba(83, 82, 82, 0.15);
   color: black;
   background: white;

}

.member-btn:hover i {
   transform: translateX(5px);
}

/* Image */
.member-image img {
   max-width: 100%;
   animation: float 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
   0% {
      transform: translateY(0px);
   }

   50% {
      transform: translateY(-12px);
   }

   100% {
      transform: translateY(0px);
   }
}

/* Responsive */
@media (max-width: 768px) {
   .member-content {
      text-align: center;
   }

   .member-image img {
      margin-top: 20px;
   }

   .member-benefits li {
      justify-content: center;
   }
}

/* strategy-section css  */

.strategy-banner {
   background: #271bb1;
   color: #fff;
   position: relative;
   overflow: hidden;
}

/* Left Content */
.strategy-content h2 {
   font-weight: 800;
   margin-bottom: 15px;
}

.strategy-desc {
   font-size: 15px;
   margin-bottom: 20px;
   color: #e6f3ff;
}

/* List */
.strategy-list {
   list-style: none;
   padding: 0;
   margin-bottom: 25px;
}

.strategy-list li {
   margin-bottom: 10px;
   font-size: 14px;
   display: flex;
   align-items: flex-start;
   gap: 8px;
   transition: 0.3s;
}

.strategy-list li i {
   color: #00ffcc;
   margin-top: 3px;
}

.strategy-list li:hover {
   transform: translateX(5px);
}

/* Button */
.strategy-btn {
   display: inline-block;
   padding: 10px 25px;
   background: #fff;
   color: #0b3c5d;
   border-radius: 30px;
   text-decoration: none;
   font-weight: 500;
   transition: 0.3s;
}

.strategy-btn:hover {
   background: #e6f3ff;
}

/* Right Highlight Box */
.strategy-highlight {
   background: rgba(255, 255, 255, 0.1);
   padding: 40px;
   border-radius: 20px;
   backdrop-filter: blur(10px);
   font-size: 16px;
   line-height: 1.7;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Decorative Shape */
.strategy-banner::before {
   content: "";
   position: absolute;
   width: 300px;
   height: 300px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   top: -100px;
   right: -100px;
}

/* Responsive */
@media (max-width: 992px) {
   .strategy-highlight {
      margin-top: 30px;
   }
}

/* leadershipment css */

/* ===== SECTION ===== */

.leadership-section {
   padding: 90px 0;
}

.section-title {
   text-align: center;
   margin-bottom: 60px;
}

.section-title h2 {
   font-size: 36px;
   margin-bottom: 10px;
}

.section-title p {
   color: #666;
   max-width: 650px;
   margin: auto;
}

/* ===== CARD ===== */

.leader-card {
   display: flex;
   align-items: center;
   gap: 50px;
   background: #ffffff;
   padding: 40px;
   border-radius: 14px;
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
   flex-wrap: wrap;
}

/* ===== IMAGE ===== */

.leader-image {
   flex: 1;
   text-align: center;
}

.leader-image img {
   width: 100%;
   max-width: 380px;
   border-radius: 12px;
   object-fit: cover;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ===== CONTENT ===== */

.leader-content {
   flex: 1.2;
}

.leader-content h3 {
   font-size: 28px;
   margin-bottom: 5px;
   color: #222;
}

.position {
   display: inline-block;
   color: #0b5ed7;
   font-weight: 600;
   margin-bottom: 20px;
}

.leader-content p {
   color: #555;
   line-height: 1.7;
   margin-bottom: 15px;
}

/* ===== HIGHLIGHTS ===== */

.leader-highlights {
   display: flex;
   gap: 20px;
   margin-top: 25px;
   flex-wrap: wrap;
}

.highlight {
   flex: 1;
   background: #f1f5ff;
   padding: 20px;
   border-radius: 10px;
   min-width: 200px;
}

.highlight h4 {
   margin-bottom: 8px;
   color: #0b5ed7;
}

.highlight p {
   font-size: 14px;
   color: #555;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
   .leader-card {
      flex-direction: column;
      text-align: center;
   }

   .leader-content {
      text-align: center;
   }
}

@media (max-width: 576px) {
   .section-title h2 {
      font-size: 28px;
   }

   .section-title p {
      font-size: 16px;
   }

   .leader-card {
      padding: 25px;
   }
}



/* donation-banner.css */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

.donation-banner {
   width: 100%;
   background: linear-gradient(135deg, #0f0b46 0%, #1c1a55 50%, #271bb1 100%);
   color: #ffffff;
   padding: 90px 20px;
   position: relative;
   overflow: hidden;
}

/* Background Effects */
.donation-banner::before {
   content: '';
   position: absolute;
   inset: 0;
   background: radial-gradient(circle at 25% 25%, rgba(167, 139, 250, 0.22) 0%, transparent 50%);
   z-index: 1;
}

.donation-banner-container {
   max-width: 1300px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 70px;
   position: relative;
   z-index: 2;
}

.donation-banner-content {
   flex: 1;
}

/* Glassmorphic Tagline */
.tagline {
   display: inline-block;
   background: rgba(255, 255, 255, 0.08);
   backdrop-filter: blur(16px);
   -webkit-backdrop-filter: blur(16px);
   padding: 10px 26px;
   border-radius: 50px;
   font-size: 1.1rem;
   font-weight: 700;
   margin-bottom: 18px;
   border: 1px solid rgba(255, 255, 255, 0.18);
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.donation-banner h2 {
   font-size: 3.5rem;
   font-weight: 900;
   line-height: 1.1;
   margin-bottom: 22px;
   background: linear-gradient(90deg, #ffffff, #d4c8ff);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.donation-banner p {
   font-size: 1.35rem;
   line-height: 1.65;
   max-width: 580px;
   margin-bottom: 35px;
   opacity: 0.95;
}

/* Glassmorphic Progress Bar Container */
.progress-container {
   background: rgba(255, 255, 255, 0.08);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   border: 1px solid rgba(255, 255, 255, 0.15);
   border-radius: 30px;
   height: 14px;
   margin-bottom: 12px;
   overflow: hidden;
   box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

.progress-bar {
   height: 100%;
   width: 78%;
   background: linear-gradient(90deg, #a78bfa, #c4b5ff);
   border-radius: 30px;
   position: relative;
}

.progress-bar::after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
   animation: shine 3.5s linear infinite;
}

@keyframes shine {
   0% {
      transform: translateX(-150%);
   }

   100% {
      transform: translateX(400%);
   }
}

.progress-info {
   display: flex;
   justify-content: space-between;
   font-size: 1.12rem;
   font-weight: 600;
   margin-bottom: 38px;
}

/* Glassmorphic Donate Button */
.donate-button {
   background: rgba(39, 27, 177, 0.75);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   color: white;
   border: 1px solid rgba(255, 255, 255, 0.2);
   padding: 22px 58px;
   font-size: 1.45rem;
   font-weight: 800;
   border-radius: 60px;
   cursor: pointer;
   box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4),
      inset 0 2px 8px rgba(255, 255, 255, 0.3);
   transition: all 0.4s ease;
   display: inline-flex;
   align-items: center;
   gap: 14px;
   text-transform: uppercase;
   letter-spacing: 1.5px;
}

.donate-button:hover {
   background: rgba(59, 45, 212, 0.9);
   transform: translateY(-8px);
   box-shadow: 0 20px 45px rgba(39, 27, 177, 0.7);
}

.heart {
   animation: heartbeat 2s infinite;
}

@keyframes heartbeat {

   0%,
   100% {
      transform: scale(1);
   }

   50% {
      transform: scale(1.25);
   }
}

/* Glassmorphic Right Side Card */
.impact-side {
   background: rgba(255, 255, 255, 0.09);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 28px;
   padding: 45px 38px;
   text-align: center;
   min-width: 290px;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.big-icon {
   font-size: 5.8rem;
   margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 992px) {
   .donation-banner-container {
      flex-direction: column;
      text-align: center;
      gap: 55px;
   }

   .donation-banner h2 {
      font-size: 2.8rem;
   }
}

@media (max-width: 576px) {
   .donation-banner {
      padding: 70px 15px;
   }

   .donation-banner h2 {
      font-size: 2.4rem;
   }

   .impact-side {
      padding: 35px 25px;
   }
}




/* Privacy Section */
.privacy-section {
   background: linear-gradient(to bottom, #f5f7ff, #ffffff);
}

.privacy-card {
   max-width: 1100px;
   margin: auto;
   background: #fff;
   padding: 50px;
   border-radius: 24px;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Header */
.privacy-header {
   margin-bottom: 50px;
}

.privacy-badge {
   display: inline-block;
   background: rgba(81, 153, 215, 0.12);
   color: #13007C;
   padding: 8px 18px;
   border-radius: 50px;
   font-size: 14px;
   font-weight: 600;
   margin-bottom: 18px;
}

.privacy-header h1 {
   font-size: 42px;
   font-weight: 700;
   color: #13007C;
   margin-bottom: 10px;
}

.privacy-header p {
   color: #666;
   font-size: 16px;
}

/* Blocks */
.privacy-block {
   margin-bottom: 45px;
}

.privacy-block h3 {
   font-size: 24px;
   color: #13007C;
   margin-bottom: 18px;
   display: flex;
   align-items: center;
   gap: 12px;
}

.privacy-block h3 i {
   color: #5199D7;
}

.privacy-block p {
   color: #555;
   line-height: 1.9;
   font-size: 16px;
}

/* Policy Points */
.policy-points {
   margin-top: 20px;
}

.policy-item {
   display: flex;
   align-items: start;
   gap: 12px;
   padding: 14px 0;
   border-bottom: 1px solid #eee;
}

.policy-item i {
   color: #5199D7;
   font-size: 18px;
   margin-top: 2px;
}

.policy-item span {
   color: #555;
   line-height: 1.7;
}

/* Grid Cards */
.policy-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 25px;
   margin-top: 25px;
}

.policy-card {
   background: #f7faff;
   padding: 25px;
   border-radius: 18px;
   transition: 0.3s ease;
   border: 1px solid #eef2ff;
}

.policy-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.policy-card i {
   font-size: 35px;
   color: #5199D7;
   margin-bottom: 15px;
}

.policy-card h4 {
   color: #13007C;
   margin-bottom: 10px;
   font-size: 20px;
}

.policy-card p {
   margin: 0;
   color: #666;
   font-size: 15px;
   line-height: 1.7;
}

/* Contact Box */
.contact-box {
   background: linear-gradient(135deg, #13007C, #5199D7);
   padding: 35px;
   border-radius: 20px;
   color: #fff;
   margin-top: 50px;
}

.contact-box h4 {
   font-size: 26px;
   margin-bottom: 25px;
   color: white;
}

.contact-item {
   display: flex;
   align-items: center;
   gap: 14px;
   margin-bottom: 15px;
   font-size: 16px;
}

.contact-item i {
   font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {

   .privacy-card {
      padding: 35px;
   }

   .privacy-header h1 {
      font-size: 34px;
   }

   .policy-grid {
      grid-template-columns: 1fr;
   }

}

@media (max-width: 576px) {

   .privacy-card {
      padding: 25px;
      border-radius: 18px;
   }

   .privacy-header h1 {
      font-size: 28px;
   }

   .privacy-block h3 {
      font-size: 20px;
   }

   .privacy-block p,
   .policy-item span {
      font-size: 15px;
   }

   .contact-box {
      padding: 25px;
   }

}


/* Terms Section */
.terms-section {
   background: linear-gradient(to bottom, #f4f7ff, #ffffff);
}

.terms-card {
   max-width: 1150px;
   margin: auto;
   background: #fff;
   padding: 55px;
   border-radius: 28px;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Header */
.terms-header {
   margin-bottom: 55px;
}

.terms-badge {
   display: inline-block;
   background: rgba(81, 153, 215, 0.12);
   color: #13007C;
   padding: 8px 20px;
   border-radius: 50px;
   font-size: 14px;
   font-weight: 600;
   margin-bottom: 18px;
}

.terms-header h1 {
   font-size: 44px;
   font-weight: 700;
   color: #13007C;
   margin-bottom: 12px;
}

.terms-header p {
   color: #666;
   font-size: 16px;
}

/* Blocks */
.terms-block {
   margin-bottom: 50px;
}

.terms-block h3 {
   font-size: 25px;
   color: #13007C;
   margin-bottom: 18px;
   display: flex;
   align-items: center;
   gap: 12px;
}

.terms-block h3 i {
   color: #5199D7;
}

.terms-block p {
   color: #555;
   line-height: 1.9;
   font-size: 16px;
}

/* Terms Points */
.terms-points {
   margin-top: 25px;
}

.terms-item {
   display: flex;
   align-items: start;
   gap: 12px;
   padding: 15px 0;
   border-bottom: 1px solid #eee;
}

.terms-item i {
   color: #5199D7;
   font-size: 18px;
   margin-top: 2px;
}

.terms-item span {
   color: #555;
   line-height: 1.7;
}

/* Grid */
.terms-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 25px;
   margin-top: 30px;
}

.terms-box {
   background: #f7faff;
   border: 1px solid #eef2ff;
   padding: 28px;
   border-radius: 20px;
   transition: 0.3s ease;
}

.terms-box:hover {
   transform: translateY(-6px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.terms-box i {
   font-size: 36px;
   color: #5199D7;
   margin-bottom: 18px;
}

.terms-box h4 {
   color: #13007C;
   font-size: 20px;
   margin-bottom: 12px;
}

.terms-box p {
   color: #666;
   margin: 0;
   line-height: 1.7;
   font-size: 15px;
}

/* Contact */
.terms-contact {
   margin-top: 60px;
   background: linear-gradient(135deg, #13007C, #5199D7);
   padding: 35px;
   border-radius: 22px;
   color: #fff;
}

.terms-contact h4 {
   font-size: 28px;
   margin-bottom: 25px;
   color: white;
}

.contact-info {
   display: flex;
   flex-direction: column;
   gap: 15px;
}

.contact-row {
   display: flex;
   align-items: center;
   gap: 14px;
   font-size: 16px;
}

.contact-row i {
   font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {

   .terms-card {
      padding: 35px;
   }

   .terms-grid {
      grid-template-columns: 1fr;
   }

   .terms-header h1 {
      font-size: 34px;
   }

}

@media (max-width: 576px) {

   .terms-card {
      padding: 24px;
      border-radius: 18px;
   }

   .terms-header h1 {
      font-size: 28px;
   }

   .terms-block h3 {
      font-size: 20px;
   }

   .terms-block p,
   .terms-item span {
      font-size: 15px;
   }

   .terms-contact {
      padding: 25px;
   }

}