

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #0b0f14; /* Background color for the entire website, including individual sections */
  --default-color: #fff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #fff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e03a3c; /* 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: #fff;  /* The default color of the main navmenu links */
  --nav-hover-color: #e03a3c; /* 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: #e03a3c; /* 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: #0b0f14;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 18px 0;
  transition: all 0.4s ease;
  z-index: 997;
}

.header .logo img {
  max-height: 42px;
}

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

.drawer-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 55%);
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.drawer-toggle:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: #0b0f14;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.35s ease;
  z-index: 9997;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: -420px;
  width: 390px;
  max-width: 90%;
  height: 100vh;
  background: #0b0f14;
  color: #fff;
  z-index: 9998;
  padding: 35px 30px;
  transition: 0.4s ease;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
}



.drawer-menu.active {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 20px;
  transition: 0.3s ease;
}

.drawer-close:hover {
  background: var(--accent-color);
}

.drawer-logo img {
  max-height: 52px;
  margin-bottom: 22px;
}

.drawer-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 35px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.drawer-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 13px 16px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.drawer-nav a:hover,
.drawer-nav a.active {
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
  color: var(--accent-color);
  padding-left: 22px;
}

.drawer-menu hr {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 25px 0;
}

.drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.drawer-contact i {
  color: var(--accent-color);
  margin-right: 10px;
}

.drawer-social {
  margin-top: 32px;
}

.drawer-social p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
}

.drawer-social div {
  display: flex;
  gap: 12px;
}

.drawer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s ease;
}

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

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 575px) {
  .drawer-menu {
    width: 100%;
    max-width: 100%;
    right: -100%;
    padding: 32px 24px;
  }

  .header .logo img {
    max-height: 36px;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* CUSTOM FOOTER */
.custom-footer {
  background: #0b0f14;
  padding: 70px 0 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-main {
  padding-bottom: 55px;
}

.footer-small-text {
  color: rgba(255,255,255,0.60);
  font-size: 16px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-email {
  display: inline-block;
  color: #fff;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-email:hover {
  color: #ed1f24;
}

.footer-social {
  gap: 14px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #ed1f24;
  color: #fff;
  transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-copy {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

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

.footer-right a:hover {
  color: #ed1f24;
}

.crafted-text {
  color: rgba(255,255,255,0.65);
}

.adexp-logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

/* MOBILE */
@media (max-width: 991px) {
  .footer-email {
    font-size: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .custom-footer {
    padding: 55px 0 22px;
  }

  .footer-email {
    font-size: 28px;
    word-break: break-word;
  }

  .footer-main {
    padding-bottom: 40px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
/*--------------------------------------------------------------
# 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 {
  --background-color: var(--alt-background-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

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

.section-bg {
  background-color: transparent;
  padding: 160px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {

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

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

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

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* HERO SECTION */
.custom-hero {
  background: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.custom-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,0,0,0.16), transparent 32%),
    radial-gradient(circle at 85% 70%, rgba(255,0,0,0.10), transparent 35%);
  pointer-events: none;
}

.hero-content,
.hero-image-wrap {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero-content p {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.9;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 14px;
  background: #ff8a00;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ff9d2e;
  color: #fff;
  transform: translateY(-4px);
}

/* RIGHT IMAGE */
.hero-image-wrap {
  padding: 18px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 25px 60px rgba(0,0,0,0.40);
  animation: heroFloat 4s ease-in-out infinite;
}

.hero-gif {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

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

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

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

/* MOBILE */
@media (max-width: 991px) {
  .custom-hero {
    padding: 90px 0 60px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 34px;
  }

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

  .hero-image-wrap {
    border-radius: 26px;
    padding: 12px;
  }

  .hero-gif {
    border-radius: 20px;
  }
}

	/* ABOUT SECTION */
.about.dark-background{
    background: #0b0f14;
    position: relative;
    overflow: hidden;
}

/* LEFT CONTENT */
.about-content{
    position: relative;
    z-index: 2;
}

.about-tag{
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255,138,0,0.12);
    color: #ed1f24;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-title{
    color: #fff;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-text{
    color: rgba(255,255,255,0.70);
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 10px;
}

/* BUTTONS */
.about-btn-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    background: #ed1f24;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn-primary:hover{
    background: #ff9d2e;
    transform: translateY(-3px);
    color: #fff;
}

.about-btn-outline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn-outline:hover{
    background: rgba(255,255,255,0.08);
    color: #fff;
    transform: translateY(-3px);
}

/* CARDS */
.about-card{
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 30px;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.about-card:hover{
    transform: translateY(-8px);
    border-color: rgba(255,138,0,0.45);
    box-shadow: 0 20px 45px rgba(255,138,0,0.10);
}

/* ICON */
.about-icon{
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: rgba(255,138,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.about-icon i{
    color: #ed1f24;
    font-size: 28px;
}

/* CARD TEXT */
.about-card h4{
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.about-card p{
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 15px;
}

/* MOBILE */
@media(max-width:991px){

    .about-title{
        font-size: 38px;
    }

}

@media(max-width:575px){

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

    .about-card{
        padding: 24px;
    }

}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/

/* SECTION */
.tabs.dark-background{
    background: #0b0f14;
    overflow: hidden;
}

.section-badge{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255,138,0,0.12);
    color: #ed1f24;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* CUSTOM TABS */
.custom-tabs{
    gap: 16px;
    border: 0;
}

.custom-tabs .nav-link{
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.70);
    border-radius: 18px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.35s ease;
    font-weight: 600;
}

.custom-tabs .nav-link i{
    color: #ed1f24;
    font-size: 20px;
}

.custom-tabs .nav-link.active{
    background: linear-gradient(145deg, rgba(255,138,0,0.18), rgba(255,138,0,0.06));
    border-color: rgba(255,138,0,0.35);
    color: #fff;
    box-shadow: 0 12px 30px rgba(255,138,0,0.12);
}

.custom-tabs .nav-link:hover{
    transform: translateY(-4px);
    color: #fff;
}

/* CONTENT BOX */
.tab-content-box{
    padding: 10px;
}

.mini-badge{
    display: inline-block;
    padding: 7px 16px;
    border-radius: 50px;
    background: rgba(255,138,0,0.12);
    color: #ed1f24;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

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

.tab-content-box p{
    color: rgba(255,255,255,0.68);
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 25px;
}

/* LIST */
.tab-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-list li{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.80);
    font-size: 15px;
}

.tab-list li i{
    color: #ed1f24;
    font-size: 18px;
}

/* IMAGE */
.tab-image-wrapper{
    position: relative;
}

.tab-image-wrapper img{
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

/* MOBILE */
@media(max-width:991px){

    .tab-content-box h3{
        font-size: 32px;
    }

    .custom-tabs{
        flex-direction: column;
    }

    .custom-tabs .nav-link{
        width: 100%;
        justify-content: center;
    }

}

@media(max-width:575px){

    .tab-content-box h3{
        font-size: 28px;
    }

}
	
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/


	.services.dark-background {
  background: #0b0f14;
}

.service-card {
  display: flex;
  gap: 22px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 138, 0, 0.45);
  box-shadow: 0 18px 45px rgba(255, 138, 0, 0.12);
}

.service-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 16px;
  background: rgba(255, 138, 0, 0.12);
  color: #ed1f24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.service-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.service-card p {
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .service-card {
    padding: 22px;
    gap: 16px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 24px;
  }
}

/* FOUNDER SECTION */
.founder.dark-background {
  background: #0b0f14;
  position: relative;
  overflow: hidden;
}

.section-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 138, 0, 0.12);
  color: #ed1f24;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

/* IMAGE CARD */
.founder-image-card {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.founder-image-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  }

.founder-badge {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 35px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(11, 15, 20, 0.88);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.founder-badge i {
  color: #ed1f24;
  font-size: 22px;
}

/* CONTENT */
.founder-content h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

.founder-content h5 {
  color: #ed1f24;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
}

.founder-content p {
  color: rgba(255,255,255,0.70);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* INFO BOX */
.founder-info-box {
  height: 100%;
  padding: 22px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.founder-info-box:hover {
  transform: translateY(-5px);
  border-color: rgba(255,138,0,0.40);
}

.founder-info-box i {
  color: #ed1f24;
  font-size: 26px;
  margin-bottom: 12px;
}

.founder-info-box h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.founder-info-box span {
  color: rgba(255,255,255,0.60);
  font-size: 14px;
}

/* BUTTON */
.founder-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  background: #ed1f24;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.founder-btn:hover {
  background: #ff9d2e;
  color: #fff;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 991px) {
  .founder-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .founder-content h2 {
    font-size: 30px;
  }

  .founder-badge {
    position: static;
    margin-top: 16px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
/* CLIENT REVIEWS */
.client-reviews.dark-background {
  background: #0b0f14;
  overflow: hidden;
}

.reviews-content h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.reviews-content p {
  color: rgba(255,255,255,0.70);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 28px;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  background: #ed1f24;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.review-btn:hover {
  background: #ff9d2e;
  color: #fff;
  transform: translateY(-3px);
}

/* SCROLLING RIGHT AREA */
.reviews-scroll-box {
  max-height: 460px;
  overflow-y: auto;
  padding: 10px 14px 10px 4px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews-scroll-box::-webkit-scrollbar {
  width: 6px;
}

.reviews-scroll-box::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
}

.reviews-scroll-box::-webkit-scrollbar-thumb {
  background: rgba(255,138,0,0.65);
  border-radius: 50px;
}

/* REVIEW CARD */
.review-card {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,138,0,0.40);
}

.review-card p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.review-card h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.google-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -1px;
}

.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }

.stars {
  color: #ffb400;
  font-size: 15px;
}

/* MOBILE */
@media (max-width: 991px) {
  .reviews-content h2 {
    font-size: 36px;
  }

  .reviews-scroll-box {
    max-height: 420px;
  }
}

@media (max-width: 575px) {
  .reviews-content h2 {
    font-size: 30px;
  }

  .review-card {
    padding: 22px;
  }
}

/* VIDEO ENQUIRY SECTION */
.video-enquiry.dark-background {
  background: #0b0f14;
  overflow: hidden;
}

.video-box h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.video-box p,
.enquiry-card p {
  color: rgba(255,255,255,0.70);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.video-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FORM CARD */
.enquiry-card {
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.enquiry-card h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 15px;
}

/* FORM FIELDS */
.enquiry-card .form-control,
.enquiry-card .form-select {
  height: 54px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: none;
}

.enquiry-card textarea.form-control {
  height: auto;
  resize: none;
}

.enquiry-card .form-control::placeholder {
  color: rgba(255,255,255,0.45);
}

.enquiry-card .form-control:focus,
.enquiry-card .form-select:focus {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,138,0,0.55);
  color: #fff;
  box-shadow: none;
}

.enquiry-card .form-select option {
  color: #000;
}

/* BUTTON */
.enquiry-btn {
  width: 100%;
  border: 0;
  padding: 15px 28px;
  border-radius: 14px;
  background: #ed1f24;
  color: #fff;
  font-weight: 700;
  transition: 0.3s ease;
}

.enquiry-btn:hover {
  background: #ff9d2e;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 991px) {
  .video-box h2 {
    font-size: 34px;
  }

  .enquiry-card h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .enquiry-card {
    padding: 24px;
  }

  .video-box h2 {
    font-size: 30px;
  }
}

/* PARTNERS SECTION */
.partners.dark-background {
  background: #0b0f14;
  overflow: hidden;
}

.partners-content h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.partners-content p {
  color: rgba(255,255,255,0.70);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 28px;
}

.partners-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  background: #ed1f24;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.partners-btn:hover {
  background: #ff9d2e;
  color: #fff;
  transform: translateY(-3px);
}

/* LOGO CARD */
.partners-logo-card {
  padding: 32px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.partner-logo-box {
  height: 120px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  transition: 0.3s ease;
}

.partner-logo-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255,138,0,0.45);
  background: rgba(255,255,255,0.09);
}

.partner-logo-box img {
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: 0.3s ease;
}

.partner-logo-box:hover img {
  filter: none;
  opacity: 1;
}

/* MOBILE */
@media (max-width: 991px) {
  .partners-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .partners-content h2 {
    font-size: 30px;
  }

  .partners-logo-card {
    padding: 22px;
  }

  .partner-logo-box {
    height: 100px;
  }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* LOCATION SECTION */
.locations.dark-background {
  background: #0b0f14;
  overflow: hidden;
}

/* LOCATION CARD */
.location-card {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  transition: 0.35s ease;
}

.location-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,138,0,0.45);
  box-shadow: 0 22px 55px rgba(255,138,0,0.10);
}

/* MAP */
.location-map {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(90%);
}

/* BODY */
.location-body {
  padding: 28px;
}

.location-body h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}

.location-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 15px;
}

.location-info i {
  color: #ed1f24;
  font-size: 20px;
  margin-top: 2px;
}

.location-info p {
  color: rgba(255,255,255,0.70);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* MOBILE */
@media (max-width: 575px) {
  .location-map {
    height: 220px;
  }

  .location-body {
    padding: 22px;
  }
}

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

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

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

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

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

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

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

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

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/* DISCLAIMER POPUP */
.legal-popup{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
}

.legal-popup-content{
    width: 100%;
    max-width: 650px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03)
    );
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
    text-align: center;
}

.legal-icon{
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(255,138,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-icon i{
    color: #ff8a00;
    font-size: 34px;
}

.legal-popup-content h2{
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 18px;
}

.legal-popup-content p{
    color: rgba(255,255,255,0.72);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 22px;
}

.legal-popup-content ul{
    text-align: left;
    padding-left: 18px;
    margin-bottom: 30px;
}

.legal-popup-content ul li{
    color: rgba(255,255,255,0.70);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 15px;
}

/* BUTTONS */
.legal-buttons{
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.agree-btn{
    border: 0;
    padding: 14px 32px;
    border-radius: 12px;
    background: #ff8a00;
    color: #fff;
    font-weight: 700;
    transition: 0.3s ease;
}

.agree-btn:hover{
    background: #ff9d2e;
    transform: translateY(-3px);
}

.decline-btn{
    border: 1px solid rgba(255,255,255,0.12);
    padding: 14px 32px;
    border-radius: 12px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    transition: 0.3s ease;
}

.decline-btn:hover{
    background: rgba(255,255,255,0.08);
}

/* MOBILE */
@media(max-width:575px){

    .legal-popup-content{
        padding: 28px 22px;
    }

    .legal-popup-content h2{
        font-size: 28px;
    }

}