/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {

  --default-font: "gabarito", sans-serif !important;
  --heading-font: "DrukRegular" !important;
  --nav-font:"gabarito", sans-serif !important;

}

/* 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:#f2f2f2; /* Background color for the entire website, including individual sections */
  --default-color: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #caa606; /* Color for headings, subheadings and title throughout the website */
  --accent-color:#ff0000; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgb(255, 255, 255);  /* 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: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff0000; /* 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: #f7f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0e1d34;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #19335c;
  --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) !important;
}

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) !important;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(182, 0, 0, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--accent-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  max-height: 50px;
  margin-right: 10px;
  height: 4rem !important;
  width: 10rem; 
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: black;
  background:#ffff00;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: bold;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: black;
  background: #e7eb01;
}

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  padding: 10px 0;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(14, 29, 52, 0.9);
}

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

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

  .navmenu li {
    position: relative;
    font-weight: bold !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font) !important;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

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

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

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

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

.footer-contact i{
  font-weight: bold;
  font-size: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  color: yellow !important;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

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

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

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

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

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

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

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

.footer .copyright {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

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

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

.footer .credits a {
  color: var(--default-color);
}





 /* Section Title Container */
  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }

  /* Section Title - Main Heading */
  .section-title h2 {
    font-family: 'DrukRegular', sans-serif;
    color: #ff0000 !important;  /* Red color */
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.3s ease;
  }

  /* Section Subtitle (optional span) */
  .section-title span {
    font-family: 'Gabarito', sans-serif;
    color: #8b9088;
    font-size: 16px;
    display: block;
  }

  /* Section Description */
  .section-title p {
    font-family: 'Gabarito', sans-serif;
    color: #a9a903;  /* Yellow color */
    font-size: 18px;
    margin-top: 10px;
  }

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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

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

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .breadcrumbs ol a:hover {
  color: var(--contrast-color);
}

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

 /* Common button style */
  .btn {
    background-color: #ff0000 !important;  /* red button */
    color: #ffffff !important;              /* white text */
    border: none !important;
    transition: 0.3s ease;
  }

  /* Hover effect for all buttons */
  .btn:hover {
    background-color: #ffff00 !important;  /* yellow on hover */
    color: #000000 !important;             /* black text for contrast */
  }

  /* Optional: outline buttons */
  .btn-outline-primary {
    border: 2px solid #ff0000 !important;
    background-color: transparent !important;
    color: #ff0000 !important;
    transition: 0.3s ease;
  }

  .btn-outline-primary:hover {
    background-color: #ffff00 !important;
    border-color: #ffff00 !important;
    color: #000000 !important;
  }



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

.hero .hero-wrapper {
  padding: 80px 0;
}

@media (max-width: 992px) {
  .hero .hero-wrapper {
    padding: 100px 15px 60px;
    text-align: center;
  }
}



/* Move left content slightly down */
.hero-left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;          /* fills container height */
  padding-top: 80px;     /* adjust this value as needed */
}

@media (max-width: 992px) {
  .hero-left-content {
    padding-top: 60px;   /* reduce on smaller screens */
  }
}

/*==============================
 Hero Heading
===============================*/
.hero .hero-wrapper .hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #050568;
}

.hero .hero-wrapper .hero-content h1 .heading-primary-white {
  display: block;          /* line break */
  margin-top: 12px;        /* spacing */
  color: #0d6efd;          /* highlight color */
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Responsive heading */
@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero .hero-wrapper .hero-content h1 .heading-primary-white {
    margin-top: 8px;
  }
}

@media (max-width: 576px) {
  .hero .hero-wrapper .hero-content h1 {
    font-size: 2rem;
  }
  .hero .hero-wrapper .hero-content h1 .heading-primary-white {
    margin-top: 6px;
  }
}

/* Hero Description */
.hero .hero-wrapper .hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/*==============================
 Stats Row
===============================*/
.hero .hero-wrapper .hero-content .stats-row {
  display: flex;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .stats-row {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero .hero-wrapper .hero-content .stats-row .stat-item {
  margin-right: 2.5rem;
  text-align: center;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .stats-row .stat-item {
    margin: 0 1.5rem 1rem;
  }
}

.hero .hero-wrapper .hero-content .stats-row .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #0d6efd;
}

.hero .hero-wrapper .hero-content .stats-row .stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6c757d;
}

/*==============================
 Hero Buttons
===============================*/
.hero .hero-wrapper .hero-content .action-buttons {
  display: flex;
  gap: 15px;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .action-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero .hero-wrapper .hero-content .action-buttons a {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .hero .hero-wrapper .hero-content .action-buttons a {
    width: 100%;
  }
}

.hero .hero-wrapper .hero-content .action-buttons .btn-primary {
  background: #0d6efd;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-primary:hover {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-secondary {
  background: #f1f1f1;
  color: #050568;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-secondary:hover {
  background: #e0e0e0;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/*==============================
 Hero Media / Carousel
===============================*/
.hero .hero-wrapper .hero-media {
  position: relative;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-media {
    margin-top: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}



/* Hero right carousel centering */
.hero-right-content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically centers carousel in column */
  height: 100%; 
  padding-top: 80px;           /* fill the container height */
}

.hero-right-content .carousel-inner img {
  border-radius: 15px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .hero-right-content {
    margin-top: 30px; /* add spacing on tablets/mobiles */
    justify-content: flex-start; /* top-align for smaller screens */
  }
}

.hero .hero-wrapper .hero-media .carousel-inner img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.hero .hero-wrapper .hero-media .carousel-inner img:hover {
  transform: scale(1.02);
}

.hero .hero-wrapper .hero-media .image-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-media .image-overlay {
    right: 0;
  }
}

.hero .hero-wrapper .hero-media .badge-accredited {
  background: #0d6efd;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-wrapper .hero-media .badge-accredited i {
  font-size: 1.3rem;
}

/*==============================
 Feature Cards
===============================*/
.hero .feature-cards-wrapper {
  margin-top: 40px; /* updated spacing */
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}

.hero .feature-cards-wrapper .feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border-left: 4px solid transparent;
}

.hero .feature-cards-wrapper .feature-card:hover,
.hero .feature-cards-wrapper .feature-card.active {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-left-color: #0d6efd;
}

.hero .feature-cards-wrapper .feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hero .feature-cards-wrapper .feature-card.active .feature-icon {
  background: #0d6efd;
  color: #fff;
}

.hero .feature-cards-wrapper .feature-card .feature-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #050568;
}

.hero .feature-cards-wrapper .feature-card .feature-content p {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/*==============================
 Responsive Fixes
===============================*/
@media (max-width: 992px) {
  .hero .feature-cards-wrapper .feature-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  .hero .feature-cards-wrapper .feature-card .feature-icon {
    margin: 0 auto 10px;
  }
  .hero .feature-cards-wrapper .feature-card .feature-content h3 {
    font-size: 1.15rem;
  }
  .hero .feature-cards-wrapper .feature-card .feature-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .hero .feature-cards-wrapper .feature-card {
    padding: 1rem;
  }
  .hero .feature-cards-wrapper .feature-card .feature-content h3 {
    font-size: 1.1rem;
  }
  .hero .feature-cards-wrapper .feature-card .feature-content p {
    font-size: 0.85rem;
  }
}

/* Feature Card Bubbles */
.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.bubble-1 {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  right: -20px;
  bottom: -20px;
}





/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .intro-content {
  margin-bottom: 2rem;
}

.stats .intro-content .section-heading {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .stats .intro-content .section-heading {
    font-size: 2rem;
  }
}

.stats .intro-content .section-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.stats .metric-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.stats .metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stats .metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.stats .metric-card:hover::before {
  transform: scaleX(1);
}

.stats .metric-card:hover .metric-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  transform: rotate(360deg);
}

.stats .metric-card:hover .metric-icon-wrapper i {
  color: var(--contrast-color);
}


/*==============================
 Services Cards Images - Larger Size
===============================*/
.metric-card .metric-header img {
  width: 100px !important;           /* increased width */
  height: 100px !important;          /* increased height */
  object-fit: cover;
  border-radius: 50%;    /* makes image round */
  border: 3px solid #ff0000; /* red border */
  padding: 5px;          /* optional padding inside border */
  background: #fff;      /* optional background for contrast */
  transition: all 0.3s ease;
}

.metric-card .metric-header img:hover {
  transform: scale(1.1); /* slight zoom on hover */
}



.stats .metric-card .metric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.stats .metric-card .metric-header .metric-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.stats .metric-card .metric-header .metric-icon-wrapper i {
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.stats .metric-card .metric-header .metric-value {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1;
}

.stats .metric-card .metric-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: rgb(8, 0, 0);
}

.stats .metric-card .metric-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.stats .highlights-section .highlights-content {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .stats .highlights-section .highlights-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.stats .highlights-section .highlights-content .highlights-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .stats .highlights-section .highlights-content .highlights-title {
    font-size: 1.8rem;
  }
}

.stats .highlights-section .highlights-content .highlights-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.stats .highlights-section .highlights-content .highlights-features {
  margin-bottom: 2.5rem;
}

.stats .highlights-section .highlights-content .highlights-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.stats .highlights-section .highlights-content .highlights-features .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 1rem;
}

.stats .highlights-section .highlights-content .highlights-features .feature-item span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--default-color);
}

.stats .highlights-section .highlights-content .highlights-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.primary {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border: 2px solid transparent;
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.secondary {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.secondary:hover {
  background: var(--heading-color);
  color: var(--contrast-color);
}

.stats .highlights-section .highlights-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 400px;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item.large {
  grid-row: 1/3;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h5,
.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h6 {
  color: var(--contrast-color);
  margin: 0;
  font-weight: 600;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h5 {
  font-size: 1.1rem;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h6 {
  font-size: 0.95rem;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .stats .highlights-section .highlights-gallery .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 200px);
    height: auto;
  }

  .stats .highlights-section .highlights-gallery .gallery-grid .gallery-item.large {
    grid-row: auto;
  }
}


  .recent-news .post-item {
    flex-direction: column;
  }

  .recent-news .post-img {
    flex: 0 0 auto;
  }

  .recent-news .post-img img {
    width: 100%;
    height: 200px;
  }

  .recent-news .post-content {
    padding: 24px;
  }

  .recent-news .post-title a {
    font-size: 20px;
  }



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: red !important;
}


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

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
  color: rgb(6, 6, 0);
}

.about .content p{
  color: rgb(101, 99, 99) !important;
}

.about .content ul p {
  font-size: 15px;
  color: gray;
}

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/* About Hero Image: reduce height */
.about-hero-img {
  max-height: 400px;    /* Set desired max height */
  width: auto;          /* Maintain aspect ratio */
  object-fit: cover;    /* Cover container nicely */
  border-radius: 10px !important;
}








  /* ===============================
  # Table Styles
  =============================== */
  .portfolio-table .table,
  .aera-table table {
    background-color: rgb(255, 255, 255) !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: white !important;
    width: 100%;
    table-layout: auto; /* lets columns adjust naturally */
    animation: fadeInTable 0.8s ease forwards;
    opacity: 0;
  }

  /* Sticky Header */
  .portfolio-table .table thead th,
  #projectsTable thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #f50808d8 !important; /* unified header color */
    color: white !important;
    border-bottom: 2px solid #ffd902;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    padding: 12px;
    white-space: nowrap; /* prevent header text from wrapping */
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  /* Table Body */
  .portfolio-table .table tbody td,
  #projectsTable tbody td {
    background-color: rgb(255, 255, 255) !important;
    color: rgb(197, 0, 0) !important;
    border-bottom: 1px solid #333;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    word-break: break-word; /* prevents overflow in small screens */
  }

  /* Hover Effects */
  .portfolio-table .table-hover tbody tr:hover,
  #projectsTable tbody tr:hover {
    background: #ffffff !important;
    color: white !important;
    transform: scale(1.02);
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  /* Buttons inside table */
  #projectsTable tbody tr td a.btn {
    transition: all 0.3s ease;
  }

  #projectsTable tbody tr td a.btn:hover {
    transform: scale(1.05);
  }

  /* Scrollable container */
  .table-responsive {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: auto;
    margin-top: 1rem;
  }

  /* Responsive Table: Mobile-friendly stacked cells */
  @media (max-width: 768px) {
    .table thead { display: none; }

    .table tbody tr {
      display: block;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      padding: 10px;
      border-radius: 5px;
    }

    .table tbody td {
      display: flex;
      justify-content: space-between;
      padding: 5px 10px;
      text-align: left;
    }

    .table tbody td::before {
      content: attr(data-label);
      font-weight: 600;
    }

    .btn { margin-top: 5px; }

    .portfolio-table .table,
    .aera-table table { font-size: 0.9rem; }

    .portfolio-table .table thead th { font-size: 0.85rem; padding: 8px; }

    .portfolio-table .table tbody td { font-size: 0.8rem; padding: 6px; }
  }

  @media (max-width: 576px) {
    .portfolio-table .table,
    .aera-table table { font-size: 0.8rem; }

    .portfolio-table .table td,
    .portfolio-table .table th,
    .table tbody td,
    .table tbody th { white-space: normal; }
  }

  /* Search Input Styling */
  #projectSearch {
    padding-left: 2.5rem;
    transition: all 0.3s ease;
    border-radius: 0.25rem;
  }

  #projectSearch:focus {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    border-color: #007bff;
  }

  #projectSearch::placeholder {
    color: #007bff;
    font-weight: 500;
  }

  /* Table fade-in animation */
  @keyframes fadeInTable {
    from { opacity: 0; }
    to { opacity: 1; }
  }



  /* Table Styles */
  .portfolio-table .table {
    background-color: black !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: white !important;
    width: 100%;
    table-layout: auto; /* lets columns adjust naturally */
  }

  /* Sticky Header */
  .portfolio-table .table thead th {
    position: sticky;
    top: 0;
    z-index: 5;
    background-color: #680147 !important; /* Blue header */
    color: #fff !important;
    border-bottom: 2px solid #9f0f07;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    padding: 12px;
    white-space: nowrap; /* prevent header text from wrapping */
  }

  /* Table Body */
  .portfolio-table .table tbody td {
    background-color: rgba(1, 38, 124, 0.921) !important;
    color: white !important;
    border-bottom: 1px solid #333;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    word-break: break-word; /* prevents overflow in small screens */
  }

  /* Hover */
  .portfolio-table .table-hover tbody tr:hover {
    background: #111 !important;
    color: white !important;
  }

  /* Scrollable container */
  .table-responsive {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: auto;
  }

  /* Responsive text scaling */
  @media (max-width: 768px) {
    .portfolio-table .table {
      font-size: 0.9rem;
    }
    .portfolio-table .table thead th {
      font-size: 0.85rem;
      padding: 8px;
    }
    .portfolio-table .table td {
      font-size: 0.8rem;
      padding: 6px;
    }
  }

  @media (max-width: 576px) {
    .portfolio-table .table {
      font-size: 0.8rem;
    }
    .portfolio-table .table td,
    .portfolio-table .table th {
      white-space: normal; /* allow wrapping */
    }
  }








  .aera-table {
    margin: 20px auto;
    width: 95%;
  }

  .table-responsive {
    overflow-x: auto;
  }

  /* Mobile-friendly: stack cells on small screens */
  @media (max-width: 768px) {
    .table thead {
      display: none;
    }
    .table tbody tr {
      display: block;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      padding: 10px;
      border-radius: 5px;
    }
    .table tbody td {
      display: flex;
      justify-content: space-between;
      padding: 5px 10px;
      text-align: left;
    }
    .table tbody td::before {
      content: attr(data-label);
      font-weight: 600;
    }
    .btn {
      margin-top: 5px;
    }
  }

  /* Search Input Styling */
  #projectSearch {
    padding-left: 2.5rem;
    transition: all 0.3s ease;
    border-radius: 0.25rem;
  }

  #projectSearch:focus {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    border-color: #007bff;
  }

  /* Add search icon inside input */
  #projectSearch::placeholder {
    color: #007bff;
    font-weight: 500;
  }

  /* Table Styling */
  .aera-table {
    overflow-x: auto;
    margin-top: 1rem;
  }

  /* Sticky Header */
  #projectsTable thead th {
    position: sticky;
    top: 0;
    background-color: #007bff;
    color: white;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  /* Row hover animation */
  #projectsTable tbody tr {
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  #projectsTable tbody tr:hover {
    transform: scale(1.02);
    background-color: rgba(0, 123, 255, 0.1);
  }

  /* Button hover */
  #projectsTable tbody tr td a.btn {
    transition: all 0.3s ease;
  }

  #projectsTable tbody tr td a.btn:hover {
    transform: scale(1.05);
  }

  /* Optional: smooth table fade-in on load */
  .aera-table table {
    animation: fadeInTable 0.8s ease forwards;
    opacity: 0;
  }

  @keyframes fadeInTable {
    from { opacity: 0; }
    to { opacity: 1; }
  }

/*------------------------------------------------------------
# About Services Section
-------------------------------------------------------------*/
.about-services {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Section title */
.about-services .section-title span {
    display: block;
    font-size: 1rem;
    color: #007bff; /* Bootstrap primary blue */
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-services .section-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0045ae;
    margin-bottom: 0.5rem;
}

.about-services .section-title p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

/* Card styles */
.about-services .card {
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

/* Card image */
.about-services .card .card-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10%;
    padding: 5px;
    background: #fff;
    margin-bottom: 15px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.about-services .card:hover .card-img img {
    transform: scale(1.05);
}

/* Card text */
.about-services .card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e80c0c !important;
    margin-bottom: 10px;
}

.about-services .card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    padding: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-services .card .card-img img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .about-services .section-title h2 {
        font-size: 2rem;
    }
    .about-services .card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .about-services {
        padding: 60px 15px;
    }
    .about-services .card .card-img img {
        width: 80px;
        height: 80px;
    }
    .about-services .card h3 {
        font-size: 1.25rem;
    }
    .about-services .card p {
        font-size: 0.9rem;
    }
}



/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  height: 50px;
}

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

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

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

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

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





/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.features .features-item img {
  border-radius: 10px !important;      /* Rounded corners */
  /* border: 5px solid rgb(200, 203, 2) !important;    Red border, 5px solid */
}


.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  color:rgb(226, 22, 22) !important;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: rgb(214, 214, 5) !important;
}

.features .features-item p:last-child {
  margin-bottom: 0;
}


/* ===============================
   Features Section: Why Choose Us
===============================*/
.features {
  padding: 60px 0;
  background: #f8f9fa;
}

.features .section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #050568;
  margin-bottom: 0.5rem;
}

.features .section-title p {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* Card Styling */
.features .card {
  border: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: #fff;
  padding: 25px 20px;
}

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

/* Circular Icon */
.features .card .card-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  /* border: 3px solid #e90a0a; */
  padding: 5px;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.features .card:hover .card-img img {
  transform: scale(1.05);
  border-color: #050568;
}

/* Title (number + text combined) */
.features .card h4.title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e90a0a;
  margin-bottom: 10px;
}

/* Description */
.features .card p.desc {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* =========================================
   Responsive Fixes (Tablet & Mobile)
========================================= */
@media (max-width: 992px) {
  .features .card {
    margin-bottom: 30px;
  }
  .features .card .card-img img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 768px) {
  .features .card {
    padding: 30px 25px;
  }
  .features .card h4.title {
    font-size: 1.3rem;
  }
  .features .card p.desc {
    font-size: 1rem;
  }
}

/* ✅ Improved Mobile View */
@media (max-width: 576px) {
  .features .card {
    width: 90%;
    margin: 0 auto 25px;
    padding: 35px 30px;
  }
  .features .card .card-img img {
    width: 100px;
    height: 100px;
  }
  .features .card h4.title {
    font-size: 1.4rem;
  }
  .features .card p.desc {
    font-size: 1.05rem;
    line-height: 1.6;
  }
}








  


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

.testimonials .testimonial-item {
  background-color: #fff;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-radius: 15px;
  text-align: center; /* Center everything */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #7e7e7e;
  margin: 0 auto 15px auto; /* Center the image and give bottom margin */
  display: block;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  margin: 0 0 10px 0;
}

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  color: #555;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ff6b6b;
  font-size: 1.2rem;
  vertical-align: top;
  margin: 0 5px;
}

/* Carousel Controls - Updated Blue Color */
.carousel-control-prev-icon {
  background-color: rgb(172, 4, 4) !important;
  color: white;
}

.carousel-control-next-icon {
  background-color: rgb(172, 4, 4) !important;
  color: white;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 35px;
  height: 35px;
  background-size: contain;
}




/* Services Section */
.services {
  padding: 60px 0;
  text-align: center; /* Center align text globally */
}

.services .section-title {
  text-align: center; /* Ensure heading & paragraph center */
  margin-bottom: 40px;
}

.services .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
  color: #222;
}

.services .section-title p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto; /* Center paragraph block */
}

.services .card {
  background: #feffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 20px;
  text-align: center; /* Center text in cards */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.services .card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 6px 20px rgba(0,0,0,0.12);
}

.services .card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.services .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.services .card-img img:hover {
  transform: scale(1.05);
}

.services .card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.services .card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .services .card-img {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .services .card-img {
    height: 180px;
  }
  .services .section-title h2 {
    font-size: 26px;
  }
  .services .card h3 {
    font-size: 18px;
  }
  .services .card p {
    font-size: 14px;
  }
}



.features .card {
  border: none;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.features .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.features .card-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
}

.features .card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps aspect ratio */
}

.features .number {
  font-size: 22px;
  font-weight: 700;
  color: #555;
  margin-bottom: 8px;
}

.features .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.features .desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 260px;
}

/* Responsive layout */
@media (min-width: 1200px) {
  .features .col-lg-2 {
    flex: 0 0 20%;
    max-width: 20%; /* 5 per row */
  }
}

@media (max-width: 991px) {
  .features .col-md-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%; /* 3 per row */
  }
}

@media (max-width: 767px) {
  .features .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; /* 2 per row */
  }
}

@media (max-width: 480px) {
  .features .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%; /* 1 per row */
  }
}





















/* ===============================
   HOW IT WORKS SECTION
=============================== */
.section-how {
  background: #f8f9fa;
}

/* Step Box */
.step-box {
  background: linear-gradient(to right, rgba(241, 235, 235, 0.523), rgba(180, 180, 111, 0.394)) !important;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-height: 280px;
}

.step-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Step Icon */
.step-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.step-box:hover .step-icon-wrapper {
  transform: scale(1.1);
}

/* Step Text */
.step-number {
  color: #680505;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-description {
  color: #003360;
  font-size: 15px;
  margin: 0;
  font-weight: bold;
}



/* Gradient Colors */
.bg-gradient-1 {
  background: linear-gradient(135deg, #0033cc, #0099ff);
}

.bg-gradient-2 {
  background: linear-gradient(135deg, #ff6600, #ff9933);
}

.bg-gradient-3 {
  background: linear-gradient(135deg, #28a745, #6fdc8c);
}

/* Arrows */
.step-arrow {
  font-size: 28px;
  color: #f90707 !important;
  opacity: 0.6;
  position: relative;
  transition: color 0.3s;
}

.step-arrow:hover {
  color: #ad5a02;
}


.how-tagline-box h2{
  color: #000;
}

.how-tagline-box .btn{
  background: #dede07 !important;
  color: #000 !important;
  font-weight: bold;
}
.how-tagline-box .btn:hover{
  background-color: rgb(183, 166, 15)7 !important;
}
.how-tagline-box{
  background-color: #ff0000 !important;

}



/* Arrow Animation (Desktop) */
.animate-arrow {
  animation: moveRight 1.2s infinite ease-in-out;
}

@keyframes moveRight {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(10px);
    opacity: 0.6;
  }
}

/* On mobile — arrow rotates down and animates downward */
@media (max-width: 992px) {
  .step-arrow {
    transform: rotate(90deg);
  }

  .animate-arrow {
    animation: moveDown 1.2s infinite ease-in-out;
  }

  @keyframes moveDown {
    0%, 100% {
      transform: rotate(90deg) translateY(0);
      opacity: 1;
    }
    50% {
      transform: rotate(90deg) translateY(10px);
      opacity: 0.6;
    }
  }
}

/* Small Device Adjustments */
@media (max-width: 576px) {
  .step-box {
    padding: 20px;
  }
  .step-icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  .step-number {
    font-size: 16px;
  }
}




/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  overflow: hidden;
  transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  color: red;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}



.faq .faq-container .faq-item h3 span {
  color: red;
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: rgb(214, 22, 22);
}

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

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

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: rgba(159, 159, 8, 0.95) !important;
}

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

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--heading-color) !important;
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: yellow;
}

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

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





/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font) !important;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

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

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

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

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

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

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

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


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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Get A Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-a-quote .php-email-form {
    padding: 20px;
  }
}

.get-a-quote .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

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

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

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

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

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

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






/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}




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

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

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

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

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

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

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

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

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

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

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

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

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

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}





/* Sticky Vertical Pest Control Button */
.pest-control-btn {
  position: fixed;
  top: 70%;
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

/* Button Styling */
.pest-control-btn a {
  background: linear-gradient(135deg, #ba0618, #ac031f);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(10, 169, 148, 0.4);
  transition: all 0.3s ease;
}

/* Hover Effect */
.pest-control-btn a:hover {
  background: linear-gradient(135deg, #b89b09, #917b03);
  transform: scale(1.05);
}

/* Icon Style */
.pest-control-btn i {
  font-size: 20px;
  color: #fff;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .pest-control-btn a {
    padding: 10px 18px;
    font-size: 13px;
  }
  .pest-control-btn i {
    font-size: 18px;
  }
}




/*--------------------------------------------------------------
# Whatsapp Section Section
--------------------------------------------------------------*/


.chat-with-us {
  position: fixed; 
  bottom: 12%;    
  right: 13px;     
  z-index: 1000;   
  background-color: #25D366; 
  padding: 16px;   
  border-radius: 50%; 
  box-shadow: 0 2px 10px rgba(77, 18, 113, 0.2);
  width: 50px;     
  height: 50px;    
  display: flex;   
  justify-content: center; 
  align-items: center; 
  transition: background-color 0.3s; 
}

.whatsapp-text {
    font-size: 16px; /* Adjust text size */
}
.chat-with-us:hover {
  background-color: #128C7E; 
}

.whatsapp-link {
  color: white; 
  text-decoration: none; 
  text-align: center; 
}

.whatsapp-icon {
  font-size: 24px; 
}

/* ===============================
# Call Button (Floating)
=============================== */
.call-us {
  position: fixed;
  bottom: 130px;       /* Distance from bottom */
  right: 15px;        /* Distance from right */
  z-index: 1000;      /* Ensure it’s on top of other content */
}

.call-us .phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  background-color: #d80707;  /* Blue color for call */
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover Effect */
.call-us .phone-link:hover {
  transform: scale(1.1);
  background-color: #dfea06; /* Darker blue on hover */
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .call-us {
    bottom: 170px;
    right: 15px;
  }
  .call-us .phone-link {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}















.features {
  padding: 60px 15px;
}

.features .section-title {
  margin-bottom: 40px;
}

.features .features-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
}

/* Images */
.features .features-item img {
  border-radius: 15px;
  object-fit: cover;
  width: 100%;
  max-height: 300px;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

/* Text & Lists */
.features .features-item h3 {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #e90a0a !important;
  display: inline-block; /* ensures underline fits only the text */
  position: relative;
}




.features .features-item p {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.features .features-item ul {
  padding-left: 0;
  list-style: none;
}

.features .features-item ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.features .features-item ul li i {
  font-size: 1.2rem;
  color: #28a745;
  margin-right: 10px;
  margin-top: 2px; /* vertically align with text */
}

/* Alternating layout for desktop */
.features .features-item:nth-child(even) .col-md-5 {
  order: 2;
}

.features .features-item:nth-child(even) .col-md-7 {
  order: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .features .features-item {
    flex-direction: column !important;
    text-align: center;
  }

  .features .features-item .col-md-5,
  .features .features-item .col-md-7 {
    order: unset !important;
    width: 100%;
    padding: 0 10px;
  }

  .features .features-item h3 {
    font-size: 1.3rem;
    margin-top: 15px;
  }

  .features .features-item p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .features .features-item ul li {
    font-size: 0.9rem;
    text-align: left;
    justify-content: flex-start;
  }

  .features .features-item ul li i {
    margin-top: 3px;
  }
}


/* Advertisement Overlay (background behind the box) */
.advertisement-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* semi-transparent dark overlay */
  backdrop-filter: blur(2px);      /* slight blur effect */
  z-index: 9999;
  display: none;
  animation: fadeIn 0.8s ease-in-out;
}

/* Advertisement Box Styling (semi-transparent background) */
.advertisement-box {
  max-width: 700px;
  background: rgba(255, 255, 255, 0.85); /* semi-transparent white */
  border: 2px solid #c1121f;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  position: relative;
  animation: slideUp 0.6s ease;
  color: #000; /* ensure text is readable */
}

/* Close Icon - default (desktop) */
.close-icon {
  position: absolute;
  top: -7px;          /* move above the box */
  right: -5px;         /* move outside the box */
  background: #c1121f;  /* red circular background */
  color: #fff;          /* white X */
  border: none;
  width: 36px;          /* make it circular */
  height: 36px;
  border-radius: 50%;
  font-size: 1.6rem;    /* X size */
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 10;
}

.close-icon:hover {
  background: #a00f1b;
  transform: scale(1.1);
}

.close-icon:hover {
  color: #000;
  transform: scale(1.1);
}



/* Fade-out animation */
.fade-out {
  opacity: 0 !important;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .advertisement-box {
    margin: 20px;
    padding: 15px;
  }
  .close-icon {
    top: -10px;        /* slightly higher on mobile */
    right: -10px;      /* slightly outside */
    width: 42px;       /* bigger circle */
    height: 42px;
    font-size: 1.8rem; /* bigger X */
  }
  .advertisement-box h3 {
    font-size: 1.4rem;
  }
}


























/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero {
  padding-top: 80px;
  padding-bottom: 20px;
}

.blog-hero .featured-post {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.blog-hero .featured-post img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.blog-hero .featured-post .post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 2rem;
  color: var(--contrast-color);
}

.blog-hero .featured-post .post-content {
  max-width: 800px;
}

.blog-hero .featured-post .post-title {
  font-size: 2rem;
  margin: 1rem 0;
}

.blog-hero .featured-post .post-title a {
  color: var(--contrast-color);
}

.blog-hero .featured-post .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.blog-hero .featured-post .post-excerpt {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.blog-hero .secondary-post {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.blog-hero .secondary-post .post-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-hero .secondary-post .post-content {
  padding: 1.5rem;
}

.blog-hero .secondary-post .post-title {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.blog-hero .secondary-post .post-title a {
  color: var(--heading-color);
}

.blog-hero .secondary-post .post-title a:hover {
  color: var(--accent-color);
}

.blog-hero .news-tabs {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
}

.blog-hero .news-tabs .nav-tabs {
  border: none;
  padding: 1rem 1rem 0;
  gap: 0.5rem;
  background-color: var(--surface-color);
}

.blog-hero .news-tabs .nav-tabs .nav-link {
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--default-color);
  font-weight: 500;
  border-radius: 20px;
  transition: 0.3s;
}

.blog-hero .news-tabs .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.blog-hero .news-tabs .nav-tabs .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.blog-hero .news-tabs .tab-content {
  padding: 1.5rem;
}

.blog-hero .tab-post {
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-hero .tab-post:first-child {
  padding-top: 0;
}

.blog-hero .tab-post:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.blog-hero .tab-post img {
  border-radius: 8px;
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.blog-hero .tab-post .post-content {
  padding-left: 1rem;
}

.blog-hero .tab-post .post-title {
  font-size: 0.9375rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.blog-hero .tab-post .post-title a {
  color: var(--heading-color);
}

.blog-hero .tab-post .post-title a:hover {
  color: var(--accent-color);
}

.blog-hero .category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-right: 0.5rem;
}

.blog-hero .date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-hero .post-author {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

.blog-hero .post-author span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-hero .post-author a {
  color: var(--accent-color);
  font-weight: 500;
}

.blog-hero .post-author a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 991.98px) {
  .blog-hero .featured-post img {
    height: 400px;
  }

  .blog-hero .featured-post .post-title {
    font-size: 1.75rem;
  }

  .blog-hero .secondary-post .post-image img {
    height: 220px;
  }

  .blog-hero .news-tabs {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .blog-hero .featured-post img {
    height: 500px;
  }

  .blog-hero .featured-post .post-title {
    font-size: 1.5rem;
  }

  .blog-hero .featured-post .post-overlay {
    padding: 1.5rem;
  }

  .blog-hero .tab-post .post-title {
    font-size: 0.875rem;
  }

  .blog-hero .tab-post img {
    height: 80px;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: red;
  font-weight: bold;
  margin-bottom: 10px;

}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

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

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}






/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/








.blog-details {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.blog-details .article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-details .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.blog-details .article-header .meta-categories .category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-details .article-header .meta-categories .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-header .title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .blog-details .article-header .title {
    font-size: 2.2rem;
  }
}

.blog-details .article-header .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-details .article-header .article-meta .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-header .article-meta .author .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-header .article-meta .author .author-info {
  text-align: left;
}

.blog-details .article-header .article-meta .author .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-header .article-meta .author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.blog-details .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .blog-details .article-header .article-meta {
    justify-content: center;
    text-align: center;
  }

  .blog-details .article-header .article-meta .post-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.blog-details .article-featured-image {
  margin: 0 -2rem 3rem;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.blog-details .article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-details .article-featured-image {
    margin: 0 -1rem 2rem;
    height: 300px;
  }
}

.blog-details .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 992px) {
  .blog-details .article-wrapper {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .table-of-contents {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .blog-details .article-wrapper .table-of-contents {
    display: none;
  }
}

.blog-details .article-wrapper .table-of-contents h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-weight: bolder;
}

.blog-details .article-wrapper .table-of-contents nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-wrapper .table-of-contents nav ul li {
  margin-bottom: 0.75rem;
}

.blog-details .article-wrapper .table-of-contents nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
}

.blog-details .article-wrapper .table-of-contents nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover,
.blog-details .article-wrapper .table-of-contents nav ul li a.active {
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover::before,
.blog-details .article-wrapper .table-of-contents nav ul li a.active::before {
  opacity: 1;
}

.blog-details .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.blog-details .article-wrapper .article-content .content-section {
  margin-bottom: 4rem;
}

.blog-details .article-wrapper .article-content .content-section .lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.blog-details .article-wrapper .article-content .content-section h2 {
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote {
  padding-left: 3rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
  float: right;
  max-width: 450px;
  margin: 0 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption img {
  width: 100%;
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption figcaption {
  padding: 1rem;
  background: var(--surface-color);
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .feature-points {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point h4 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point p {
  margin: 0;
  font-size: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid {
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.blog-details .article-wrapper .article-content .content-section .key-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .key-principles {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle .number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle h4 {
  color: var(--heading-color);
  margin: 1rem 0;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .info-box .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .info-box .content h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box .content p {
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .future-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .future-trends {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend:hover {
  transform: translateY(-5px);
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}







/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
}

.pagination-2 nav {
  position: relative;
}

.pagination-2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.pagination-2 li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  user-select: none;
}

.pagination-2 li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
}

.pagination-2 li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pagination-2 li a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pagination-2 li a i {
  font-size: 14px;
}

.pagination-2 li a span {
  margin: 0 4px;
}

@media (max-width: 575px) {
  .pagination-2 ul {
    gap: 4px;
  }

  .pagination-2 li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}




/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}





/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.call-to-action .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.call-to-action .cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
}

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

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.call-to-action .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.call-to-action .cta-buttons .btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

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

  .call-to-action .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.call-to-action .cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.call-to-action .cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

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

  .call-to-action .cta-features .feature-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    min-height: 400px;
    padding: 80px 0;
  }

  .call-to-action .cta-content h2 {
    margin-bottom: 1rem;
  }

  .call-to-action .cta-content p {
    margin-bottom: 2rem;
  }

  .call-to-action .cta-buttons {
    margin-bottom: 2rem;
  }
}


.avatar-icon {
  font-size: 48px;
  color: #6c757d;
}

.avatar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #f1f1f1;
}


.search-wrapper {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 40px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.search-input {
  border: none !important;
  box-shadow: none !important;
  font-size: 15px;
}

.search-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.search-btn {
  border-radius: 50%;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Prevent the bar from becoming full width */
.col-lg-4 {
  max-width: 450px;
}

/* Responsive */
@media (max-width: 476px) {
  .col-lg-4 {
    max-width: 90%;
  }
}
