/*
Theme Name: Creatify
Theme URI: https://templatesjungle.com/
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: Creatify is specially designed product packaged for agencies by TemplatesJungle.
Version: 1.1
*/

/*--------------------------------------------------------------
/** 0. Dark/Light Mode Variables
--------------------------------------------------------------*/
:root {
    /* Dark mode (default) */
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-tertiary: #b0b0b0;
    --accent-color: #F3C522;
    --accent-hover: #ffd700;
    --border-color: rgba(255, 255, 255, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.7);
    --card-bg: #1f1f1f;
    --header-bg: rgba(26, 26, 26, 0.98);
}

[data-theme="light"] {
    /* Light mode */
    --bg-primary: #ffffff;
    --bg-secondary: #F7F9FD;
    --bg-tertiary: #f0f0f0;
    --text-primary: #111111;
    --text-secondary: #555555;
    --text-tertiary: #777777;
    --accent-color: #F3C522;
    --accent-hover: #EBB017;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --card-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.95);
}

/*--------------------------------------------------------------
/** 1. Base Styles
--------------------------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
body {
  font-family: "inter", Verdana, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}
body.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}
a {
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--accent-hover);
}
ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
  padding: 0;
  list-style: none;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 5px;
  margin-bottom: 0;
}
ul li, ol li {
  margin-bottom: 5px;
  outline: 0;
}
ul li a:hover{
  color: #000;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}
dl {
  margin-top: 0;
  margin-bottom: 2rem;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: 0;
}
figure {
  margin: 0;
}
img {
  display: inline-block;
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
::selection {
  background: rgba(0,0,0,0.8);
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: rgba(0,0,0,0.8);
  color: #fff;
  text-shadow: none;
}
::-webkit-input-placeholder {
  color: #EDEBE4; /* WebKit browsers */
  -webkit-transition: color .2s;
  transition: color .2s;
}
::-moz-placeholder {
  color: #053634; /* Mozilla Firefox 19+ */
  -webkit-transition: color .2s;
  transition: color .2s;
}
:-ms-input-placeholder {
  color: #053634;/* Internet Explorer 10+ */
  -webkit-transition: color .2s;
  transition: color .2s;
}
::placeholder {
  color: #053634;
  -webkit-transition: color .2s;
  transition: color .2s;
}

/* - Floating & Alignment
------------------------------------------------------------- */
.align-left {
  float: left;
  text-align: left;
}
.align-right {
  float: right;
  text-align: right;
}
.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-content: center;
}

/*--------------------------------------------------------------
/** 3. Typography
--------------------------------------------------------------*/

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  line-height: 1.2;
  color: var(--text-primary);
}
h1.light, .h1, h2.light, .h2, h3.light, .h3, h4.light, .h4, h5.light, .h5, h6.light, .h6 {
  color: #fff;
}
h1, h2, h3 {
  margin: 0 0 25px;
}
h5, h6 {
  letter-spacing: 1px;
}
h1, .h1 {
  font-size: 2.5em;
  line-height: 1.4;
}
h2, .h2 {
  font-size: 1.5em;
  line-height: 1.4;
}
h3, .h3 {
  font-size: 1.4em;
  line-height: 1.4;
}
h4, .h4 {
  font-size: 1.1em;
  line-height: 1.4;
}
h5, .h5 {
  font-size: .83em;
  line-height: 1.25;
}
h6, .h6 {
  font-size: .67em;
  line-height: 1.1;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}
p {
   margin: 0 0 20px 0;
   line-height: 2;
}
p:empty {
  display: none;
}
small {
  font-size: 85%;
}
mark {
  background-color: #fcf8e3;
  padding: 0.28rem;
}
dfn, cite, em, i {
  font-style: italic;
}
code, kbd, var {
  font-size: 14px;
}
code {
  background-color: #f9f2f4;
}
abbr {
  border-bottom: 0.1px dotted #666;
  cursor: help;
}


/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/* - Button
------------------------------------------------------------- */

button {
    font-size: 1em;
    font-weight: 600;
    border: none;
    height: 65px;
    cursor: pointer;
    background: transparent;
}
.btn-wrap {
    margin-top: 70px;
}
.btn-wrap a {
    font-weight: 500;
    text-transform: uppercase;
}
.btn-normal {
    color: #fff;
}
.btn-accent {
    background-color: var(--accent-color);
    color: #000;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px var(--shadow-color);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    border: none;
}
.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px var(--shadow-color);
    color: #000;
}
.btn-accent:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.btn-pill {
    border-radius: 50px;
}
.btn-outline-accent {
    border: 2px solid var(--accent-color);
    color: var(--text-primary);
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}
.btn-outline-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.btn-outline-accent:hover {
    color: #000;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px var(--shadow-color);
}
.btn-outline-accent:hover::before {
    left: 0;
}
.btn-outline-accent:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
    padding: 30px 50px;
}
.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}
.btn-secondary {
    margin-left: 0;
}
.btn-accent-arrow {
    color: #053634;
}
.btn-light-arrow {
    color: #fff;
}
.btn-wrap i.icon {
    transition: 0.5s ease-out;
    font-size: 9px;
    padding-left: 10px;
}
.btn-wrap:hover i.icon {
    padding-left: 20px;
}
.btn-subscribe {
    width: 126px;
    height: 43px;
    font-weight: 500;
    color: #fff;
    background: #000;
    text-transform: uppercase;
}
.button-box {
    margin: 0 40px;
    width: 20%;
    display: flex;
    align-items: center;
}
.btn-subscribe:hover {
    color: #EBB017;
}
.btn-subscribe i.icon {
    font-size: 15px;
    padding-left: 5px;
}
i.icon.icon-ns-arrow-right {
    font-size: 11px;
    padding-left: 10px;
}


/*--- Button Hover Effect
-----------------------------------------------*/

.btn-hvr-effect {
  position: relative;
  margin: auto;
  padding: 0 22px;
  transition: all .2s ease;
  margin: 0;
  }
.btn-hvr-effect:before {
    content: "";
    position: absolute;
    top: -10px;
    right: 5px;
    display: block;
    border-radius: 28px;
    background: rgb(243 197 34);
    width: 35px;
    height: 35px;
    transition: all .3s ease;
  }
.btn-hvr-effect:hover:before {
    width: 100%;
  }
.btn-hvr-effect span {
    position: relative;
    font-size: 18px;
  }
.btn-hvr-effect:hover span,
.btn-hvr-effect:hover i.icon {
      color: #000;
   }
.btn-hvr-effect i.icon {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    transform: translateX(-5px);
    transition: all .3s ease;
    }
.btn-hvr-effect i.icon:active {
    transform: scale(.96);
  }


/*--- Image Dimension
-----------------------------------------------*/
img.single-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 15px;
}
img.review-image {
    width: 96px;
    border-radius: 50%;
    border: 5px solid var(--card-bg);
    box-shadow: -2px 1px 29px -9px var(--shadow-color);
    -webkit-box-shadow: -2px 1px 29px -9px var(--shadow-color);
    -moz-box-shadow: -2px 1px 29px -9px var(--shadow-color);
}
img.post-image {
    width: 100%;
    height: 297px;
    object-fit: cover;
}
img.project-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
img.association-image {
    height: 31px;
}


/*--- Image hover Effect
-----------------------------------------------*/
.image-hvr-effect {
    display: flex;
    overflow: hidden;
    cursor: pointer;
}
.image-hvr-effect img {
    transform: scale(1);
    will-change: transform;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}
.image-hvr-effect:hover img {
    transform: scale(1.2);
}

/*--- Image Hover Effect Grayscale
-----------------------------------------------*/
.hvr-grayscale:hover img {
  filter: grayscale(100%);
  cursor: pointer;
}

/*--- Pattern Overlay
-----------------------------------------------*/
.pattern-overlay {
    position: relative;
}
.pattern-overlay:before {
    content: "";
    position: absolute;
    left: -110px;
    top: 0;
    width: 424px;
    height: 500px;
    background: url(/images/map-pattern.png) no-repeat;
}

/*--- Section Title
-----------------------------------------------*/
h2.section-subtitle {
    font-family: "Cormorant SC", Georgia, serif;
    font-size: 1.2em;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1;
}
h2.section-subtitle.liner {
    position: relative;
    padding-left: 30px;
}
h2.section-subtitle.liner:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #F3C522 0%, #EBB017 100%);
    border-radius: 2px;
}
h3.section-title {
    font-family: "Jost", Georgia, serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1.3;
    text-transform: none;
    color: var(--text-primary);
    margin-top: 10px;
    letter-spacing: -0.5px;
}

/*----- Grid Layout
--------------------------------------------------------------*/
.container {
    max-width: 1421px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.inner-content {
    width: 100%;
    padding: 0 20px;
}
.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* Force single row for specific grids */
.demo-single-row,
.comparison-single-row,
.stats-single-row,
.security-single-row {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
}
.guide-three-columns {
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
}
 
/* - Scroll Button
------------------------------------------------------------- */
#scrollToTopBtn {
  position: fixed;
  right: 30px;
  bottom: 100px;
  z-index: 9;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  background-color: #111;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}
#scrollToTopBtn:hover {
  background-color: var(--accent-color);
  color: #111;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(243, 197, 34, 0.4);
}
#scrollToTopBtn:active {
  transform: translateY(-2px);
}

/* - Main Navigation
------------------------------------------------------------- */
#header-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--header-bg);
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
header#header {
    padding: 25px 0;
    background-color: transparent;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1001;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px var(--shadow-color);
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--shadow-color);
    border-color: var(--accent-color);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-icon {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon-light {
    opacity: 0;
    transform: rotate(90deg);
}

.theme-icon-dark {
    opacity: 1;
    transform: rotate(0deg);
}

[data-theme="light"] .theme-icon-light {
    opacity: 1;
    transform: rotate(0deg);
}

[data-theme="light"] .theme-icon-dark {
    opacity: 0;
    transform: rotate(-90deg);
}

@media only screen and (max-width: 768px) {
    .theme-toggle {
        top: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
} 
header#header ul.menu-list {
    display: flex;
}
nav#navbar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 15px;
}
#navbar .main-menu {
    margin-right: 65px;
}
.main-menu ul.menu-list a {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    padding: 0 25px;
    transition: color 0.3s ease;
}
.main-menu ul.menu-list a:hover {
    color: var(--text-primary);
}
.main-menu .hamburger {
    display: none;
}
.main-menu .hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #053634;
}

@media only screen and (max-width: 1180px) {
    .main-logo {
      margin: 0 auto;
    }
    .main-menu ul.menu-list {
        position: fixed;
        top: -500px;
        left: 0;
        width: 100%;
        flex-direction: column;
        text-align: center;
        transition: 0.8s;
        z-index: 9;
    }
    .main-menu .menu-list.responsive {
        top: 0;
        background-color: rgba(0,0,0,0.8);
        padding: 200px 0;
        height: 100%;
    }
    .main-menu .menu-list li.menu-item {
       margin-bottom: 50px;
    }
    #navbar .menu-list.responsive a {
      font-size: 3.5em;
      color: #fff;
      border-bottom: none;
    }
    #navbar .menu-list.responsive a:hover {
      color: #ebb017;
    }
    .main-menu .hamburger {
        display: block;
        position: fixed;
        top: 40px;
        left: 40px;
        z-index: 9;
        background: #f8f6f1;
        padding: 10px;
        cursor: pointer;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
 }

@media only screen and (max-width: 750px) {
   #navbar .btn-hvr-effect {
      display: none;
  }
  .main-logo {
      width: 100%;
      text-align: right;
  }
}

/*----- Billboard
--------------------------------------------------------------*/
#billboard {
    background-color: var(--bg-secondary);
    overflow: hidden;
}
#billboard .main-banner {
    display: flex;
    flex-wrap: wrap;
    width: 1430px;
    margin: 0 auto;
    padding: 110px;
}
#billboard .banner-content {
    width: 52%;
    padding-top: 55px;
    margin-right: 65px;
}
.banner-content h3.banner-title {
    font-size: 3.4em;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
}
.banner-content p {
    margin-bottom: 90px;
}
#billboard figure {
    width: 41%;
    z-index: 2;
}

@media only screen and (max-width: 1370px) {
  #billboard .main-banner {
      display: flex;
      flex-wrap: wrap;
      width: 1290px;
      margin: 0 auto;
  }
}
@media only screen and (max-width: 1200px) {
  #billboard .main-banner {
      width: 1160px;
      padding: 70px;
  }
  #billboard .banner-content {
      width: 50%;
  }
}
@media only screen and (max-width: 1080px) {
  #billboard .main-banner {
      width: 1060px;
      padding: 70px;
  }
  #billboard .banner-content {
      width: 80%;
      order: 2;
  }
  #billboard figure {
      width: 80%;
  }
}
@media only screen and (max-width: 820px) {
  #billboard .main-banner {
      width: 800px;
      padding: 70px;
  }
}
@media only screen and (max-width: 630px) {
  #billboard .main-banner {
      width: 610px;
      padding: 30px 30px 100px;
  }
  .banner-content h3.banner-title {
      font-size: 2.4em;
  }
}
@media only screen and (max-width: 500px) {
  #billboard .main-banner {
      width: 480px;
  }
}



/*----- About Section
--------------------------------------------------------------*/
#about {
    padding: 130px 65px;
    background: var(--bg-primary);
}
#about figure {
    width: 45%;
    margin-right: 85px;
}
#about .detail-entry {
    width: 45%;
    margin-top: 100px;
}
#about .detail-entry .detail-wrap {
    width: 85%;
}

@media only screen and (max-width: 1040px) {
  #about figure {
      width: 90%;
      margin-right: 0;
  }
  #about img.single-image {
      height: 500px;
  }
  #about .detail-entry {
      width: 90%;
  }
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 620px) {
  #about {
      padding: 130px 0;
  }
}

/*----- Services Section
--------------------------------------------------------------*/
#features {
    padding: 80px 0;
    position: relative;
}
#features .detail-entry {
    width: 36%;
    padding-top: 0;
}
#features .service-grid {
    width: 55%;
}
#features .column {
    width: 30%;
}
#features .column.odd-column {
    padding-top: 0;
}
#features .icon-box {
    background: var(--card-bg);
    width: 100%;
    padding: 30px 25px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 2px 8px var(--shadow-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}
/* Dark mode (default) - invert dark icons to white */
#features .icon-box img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
/* Light mode - keep icons dark */
[data-theme="light"] #features .icon-box img {
    filter: brightness(0) invert(0);
    opacity: 1;
}
#features .icon-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(243, 197, 34, 0.3);
    cursor: pointer;
}
#features .icon-box .title {
    font-family: "Jost", Verdana, sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    padding-top: 12px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

@media only screen and (max-width: 1140px) {
  #features .icon-box {
      padding: 20px 15px;
  }
}

@media only screen and (max-width: 1040px) {
  #features {
      padding: 20px 0 100px;
  }
  #features .detail-entry {
      width: 95%;
  }
  #features .service-grid {
      width: 95%;
  }
}

@media only screen and (max-width: 620px) {
  #features .service-grid {
      width: 95%;
      padding-top: 100px;
  }
  #features .column {
      width: 45%;
  }
  #features .column.odd-column {
      padding-top: 0;
  }
}

/*----- Services Section
--------------------------------------------------------------*/
#projects {
    background-color: var(--bg-secondary);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}
#projects .grid {
    justify-content: start;
    align-items: end;
}
#projects .project-style {
    width: 32%;
    margin-right: 25px;
    overflow: hidden;
}
#projects .project-style:last-child {
    margin-right: 0;
}
#projects .project-style img.project-item {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
#projects .project-style figcaption {
    display: flex;
    background: var(--card-bg);
    padding: 30px 20px;
    justify-content: space-between;
    align-items: center;
}
#projects .project-style:hover figcaption {
    cursor: pointer;
    background: var(--bg-secondary);
}
#projects .project-style h3 {
    font-size: 1.2em;
    text-transform: capitalize;
    margin: 0;
    color: var(--text-primary);
}
#projects .project-style h3 a {
    color: var(--text-primary);
}
#projects .project-style h3 a:hover {
    color: var(--accent-color);
}
#projects .category-title {
    font-size: 15px;
    color: var(--text-secondary);
}

#projects .slick-dots li button:before {
    font-size: 40px;
}
.tab-content .grid {
    padding-bottom: 60px;
}
#projects .tabs {
    justify-content: center;
    margin-bottom: 40px;
    margin-left: 250px;
}
#projects .tabs .tab {
    padding-right: 30px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}
#projects .tabs .tab.active, 
#projects .tabs .tab:hover {
    color: var(--accent-color);
}

#projects .slick-arrow {
    font-family: "icomoon";
    position: absolute;
    bottom: 212px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}
#projects .prev.slick-arrow {
    content: "\e900";
    left: -72px;
}
#projects .next.slick-arrow {
    content: "\e901";
    right: -42px;
}
#projects .slick-arrow:hover,
#projects .slick-arrow:focus{
   color: var(--accent-color);
}
#projects .slick-arrow i.icon {
    font-size: 25px;
    font-weight: bold;
    line-height: 1;
}
.slick-dots li button:before {
    color: var(--text-tertiary);
}
.slick-dots li.slick-active button:before {
    outline: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50%;
}
.slick-dots li button:hover:before {
    color: var(--text-secondary);
}

@media only screen and (max-width: 1400px) {
  #projects .project-style h3 {
      font-size: 1em;
  }
}

@media only screen and (max-width: 1300px) {
  #projects .tabs {
      margin-left: 50px;
  }
}

@media only screen and (max-width: 1200px) {
  .project-grid .slick-slide img {
      width: 100%;
  }
}

@media only screen and (max-width: 900px) {
  .project-grid img.project-image {
      height: auto;
  }
}

@media only screen and (max-width: 780px) {
  #projects .tabs {
      margin-left: 0;
  }
  #projects .tabs .tab {
      font-size: 15px;
      color: #fff;
      background: #f3c522;
      padding: 10px;
      margin-right: 10px;
      border-radius: 10px;
  }
}

/*----- Testimonial Section
--------------------------------------------------------------*/
#testimonial {
    padding: 180px 0;
    overflow: hidden;
}
#testimonial .grid {
    justify-content: center;
    position: relative;
}
#testimonial .section-header {
    width: 35%;
    margin-right: 130px;
}
#testimonial .testimonial-content {
    width: 45%;
}
#testimonial .slick-list {
    overflow: unset;
}
#testimonial .testimonial-item {
    display: flex;
}
#testimonial .author-detail {
    background: var(--card-bg);
    padding: 60px 70px;
    margin: 0 8px;
    width: 100%;
    box-shadow: -2px 1px 29px -9px var(--shadow-color);
    -webkit-box-shadow: -2px 1px 29px -9px var(--shadow-color);
    -moz-box-shadow: -2px 1px 29px -9px var(--shadow-color);
}
#testimonial .author-detail q {
    font-size: 18px;
    line-height: 2;
    color: var(--text-primary);
}
#testimonial .author-name {
    font-size: 1.3em;
    font-weight: 700;
    padding: 35px 0 15px 0;
    color: var(--text-primary);
}
#testimonial .author-thumb {
    display: flex;
    align-items: center;
    margin-right: -31px;
    z-index: 2;
}
#testimonial .button-container {
    display: flex;
    position: absolute;
    bottom: 0;
    right: 140px;
}
#testimonial button.prev.slick-arrow {
    border-right: 1px solid var(--border-color);
    margin-right: 30px;
    padding-right: 30px;
}
.button-container button.slick-arrow {
    font-size: 1.6em;
    line-height: 0;
    font-weight: 900;
    color: var(--text-primary);
    transition: color 0.3s ease;
}
.button-container button.slick-arrow:hover,
.button-container button.slick-arrow:focus {
    color: var(--accent-color);
}

@media only screen and (max-width: 1200px) {
  #testimonial .section-header {
      margin-right: 50px;
  }
}

@media only screen and (max-width: 1040px) {
  #testimonial .section-header {
      width: 70%;
  }
  #testimonial .testimonial-content {
      width: 70%;
  }
  #testimonial .button-container {
      right: 160px;
  }
}

@media only screen and (max-width: 900px) {
  #testimonial .section-header {
      margin-bottom: 30px;
  }
}

@media only screen and (max-width: 700px) {
  #testimonial .grid {
      justify-content: space-between;
  }
  #testimonial .section-header {
      width: 90%;
  }
  #testimonial .testimonial-content {
      width: 90%;
  }
  #testimonial .author-detail {
      padding: 50px 30px;
  }
  #testimonial .author-thumb {
      display: none;
  }
  #testimonial .button-container {
      right: 210px;
  }
  #testimonial button.slick-arrow {
      font-size: 1em;
  }
  #testimonial button.prev.slick-arrow {
      border-right: none;
      margin-right: 0;
  }
}


/*----- Affordable Price Section
--------------------------------------------------------------*/
#price-table {
    padding-bottom: 80px;
}
#price-table .column {
    width: 32%;
    padding: 85px 100px;
    box-shadow: -2px 1px 29px -9px rgb(0 0 0 / 20%);
    -webkit-box-shadow: -2px 1px 29px -9px rgb(0 0 0 / 20%);
    -moz-box-shadow: -2px 1px 29px -9px rgba(0,0,0,0.2);
}
#price-table .column:hover {
    cursor: pointer;
    background: #fcf8ef;
}
#price-table .category-title {
    font-size: 1.5em;
    font-weight: 600;
}
#price-table i.icon {
    font-size: 4em;
    color: #EDBD0E;
    background: #FEF6DB;
    border-radius: 50%;
    width: 162px;
    height: 162px;
    justify-content: center;
    display: flex;
    align-items: center;
    margin: 30px auto;
}
#price-table .price strong {
    font-size: 4.2em;
}
#price-table .price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 35px 0 60px;
}
#price-table sup {
    font-size: 1.2em;
    top: -1.5em;  
}
#price-table ul li {
    padding-bottom: 20px;
    margin-bottom:20px;
    border-bottom: 1px solid #F8F8F8;
}

@media only screen and (max-width: 1280px) {
  #price-table .column {
      padding: 85px 30px;
  }
}

@media only screen and (max-width: 980px) {
  #price-table .column {
      width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  #price-table .column {
      width: 80%;
  }
}

/*----- Blog Section
--------------------------------------------------------------*/

#latest-blog {
    margin: 100px 0;
}
#latest-blog article.column {
    width: 31%;
}
#latest-blog .meta-tag {
    display: flex;
    padding-bottom: 20px;
}
#latest-blog .meta-date {
    padding-right: 15px;
    margin-right: 30px;
    position: relative;
}
#latest-blog .meta-date:before {
    content: ".";
    font-size: 81px;
    color: #ccc;
    position: absolute;
    right: -18px;
    bottom: -14px;
}
#latest-blog .post-item {
    padding: 36px 32px;
}

@media only screen and (max-width: 999px) {
  #latest-blog article.column {
      width: 48%;
  }
}

@media only screen and (max-width: 699px) {
  #latest-blog article.column {
      width: 100%;
  }
}

/*----- Subscribe Section
--------------------------------------------------------------*/
#subscribe {
    background-color: var(--bg-primary);
    padding: 145px 0;
}
#subscribe .container {
    max-width: 1200px;
}
#subscribe .section-header {
    width: 30%;
    margin-right: 300px;
}
#subscribe .subscribe-content {
    width: 44%;
}
#subscribe form#form {
    margin-top: 25px;
}
#subscribe input[type="text"] {
    width: 323px;
    padding: 10px;
    border: none;
    background: none;
    border-bottom: 1px solid #C4C4C4;
    font-style: italic;
}

@media only screen and (max-width: 1220px) {
  #subscribe .section-header {
      width: 35%;
      margin-right: 150px;
  }
}

@media only screen and (max-width: 1100px) {
  #subscribe .section-header {
    width: 45%;
    margin-right: 30px;
  }
  #subscribe .subscribe-content {
      width: 50%;
  }
}

@media only screen and (max-width: 960px) {
    #subscribe input[type="text"] {
      margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  #subscribe .section-header {
      width: 90%;
  }
  #subscribe .subscribe-content {
      width: 90%;
  }
}

/*----- Association Section
--------------------------------------------------------------*/
#association-with {
    padding: 100px 0;
}
#association-with img {
    opacity: 20%;
    cursor: pointer;
    margin: 30px; 
}
#association-with img:hover {
    opacity: 100%;
}


/*----- Association Section
--------------------------------------------------------------*/
#footer {
    background-color: var(--bg-secondary);
    padding: 130px 0;
}
#footer .container {
    max-width: 1200px;
}
#footer ul.menu-list li {
    margin-bottom: 20px;
    outline: 0;
}
#footer .footer-menu {
    width: 16%;
}
#footer strong {
    font-weight: 800;
    display: block;
    padding-bottom: 5px;
    color: #ffffff !important;
}
#footer h3,
#footer .footer-menu h3 {
    color: #ffffff !important;
    font-weight: 700;
}
#footer .footer-item {
    width: 40%;
    margin-left: 300px;
}
#footer .footer-item h2 {
    font-size: 3.4em;
    color: var(--text-primary);
}
#footer ul.menu-list li a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}
#footer ul.menu-list li a:hover {
    color: var(--accent-color);
}
#footer .footer-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}
#footer .copyright p,
#footer .copyright a {
    color: var(--text-secondary);
}
#footer .copyright a:hover {
    color: var(--accent-color);
}
#footer .social-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}
#footer .social-links a:hover {
    color: var(--accent-color);
}

#footer-bottom {
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    padding-top: 60px;
}
#footer-bottom ul {
    display: flex;
}
#footer-bottom li {
    padding-left: 10px;
}

@media only screen and (max-width: 1140px) {
  #footer .footer-item {
      margin-left: 100px;
  }
}

@media only screen and (max-width: 800px) {
  #footer .footer-menu {
      width: 50%;
      margin-bottom: 30px;
  }
  #footer .footer-item {
      width: 80%;
      margin-left: 10px;
  }
  #footer .footer-item h2 {
      font-size: 2.4em;
  }
}


@media only screen and (max-width: 500px) {
  #footer-bottom .grid {
      justify-content: center;
  }
  #footer-bottom p {
      text-align: center;
  }
}

/*----- Hero Stats
--------------------------------------------------------------*/
.hero-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0 50px;
    padding: 30px 0;
}
.hero-stats .stat-item {
    text-align: center;
}
.hero-stats .stat-item strong {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    color: #F3C522 !important;
    line-height: 1.2;
    white-space: nowrap;
}
.hero-stats .stat-item span {
    display: block;
    font-size: 0.75em;
    color: #ffffff !important;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media only screen and (max-width: 768px) {
  .hero-stats {
      flex-direction: column;
      gap: 20px;
  }
}

/*----- How It Works Section
--------------------------------------------------------------*/
#how-it-works {
    padding: 130px 0;
    background-color: var(--bg-primary);
}
.steps-container {
    margin-top: 60px;
    gap: 40px;
}
.step-item {
    width: 30%;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    z-index: 2;
}
.step-icon {
    margin: 20px auto 30px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.step-icon img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(0);
}
[data-theme="light"] .step-icon {
    background: #f5f5f5;
}
.step-item h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--text-primary);
}
.step-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

@media only screen and (max-width: 1040px) {
  .step-item {
      width: 48%;
      margin-bottom: 40px;
  }
}

@media only screen and (max-width: 620px) {
  .step-item {
      width: 100%;
  }
}

/*----- Feature Descriptions
--------------------------------------------------------------*/
.feature-desc {
    font-size: 0.85em;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 0;
    padding: 0;
}

/*----- Demo Section
--------------------------------------------------------------*/
.demo-grid {
    gap: 30px;
    margin-top: 60px;
}
.demo-item {
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.demo-item:hover {
    transform: translateY(-4px);
}
/* Default width removed - will be set by single-row class */
.demo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.demo-item:hover .demo-image {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.demo-item h4 {
    font-size: 0.85em;
    color: var(--text-primary);
    font-weight: 500;
}

/* Media queries removed - using single-row classes instead */

/*----- Comparison/Why Choose Section
--------------------------------------------------------------*/
.comparison-grid {
    gap: 40px;
    margin-top: 60px;
}
.comparison-item {
    text-align: center;
    padding: 35px 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}
.comparison-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(243, 197, 34, 0.2);
}
/* Default width removed - will be set by single-row class */
.comparison-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.comparison-icon img {
    width: 100%;
    height: auto;
}
.comparison-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--text-primary);
}
.comparison-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Media queries removed - using single-row classes instead */

/*----- Social Proof/Stats Section
--------------------------------------------------------------*/
.stats-grid {
    gap: 40px;
    margin-top: 40px;
}
/* Duplicate removed - using the updated version above */
/* Default width removed - will be set by single-row class */
.stat-number {
    font-size: 3em;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.stat-label {
    font-size: 1em;
    color: var(--text-secondary);
}

/* Media queries removed - using single-row classes instead */

/*----- Security Badges
--------------------------------------------------------------*/
.security-badges {
    gap: 40px;
    margin-top: 50px;
}
.badge-item {
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow-color);
}
.badge-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(243, 197, 34, 0.2);
}
/* Default width removed - will be set by single-row class */
.badge-icon {
    font-size: 3em;
    margin-bottom: 15px;
}
.badge-item h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.badge-item p {
    color: var(--text-secondary);
    font-size: 0.9em;
}

/* Media queries removed - using single-row classes instead */

/*----- FAQ Section
--------------------------------------------------------------*/
.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}
.faq-item {
    background: var(--card-bg);
    margin-bottom: 16px;
    border-radius: 16px;
    box-shadow: 0 2px 8px var(--shadow-color);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}
.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(243, 197, 34, 0.2);
}
.faq-item.active {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(243, 197, 34, 0.3);
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-family: "Jost", Georgia, serif;
}
.faq-question:hover {
    color: var(--accent-color);
}
.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}
.faq-icon {
    font-size: 1.5em;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    line-height: 1;
    min-width: 24px;
    text-align: center;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}
.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    padding-bottom: 20px;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 0;
}

/*----- Quick Start Guide
--------------------------------------------------------------*/
.guide-grid {
    gap: 30px;
    margin-top: 60px;
}
.guide-item {
    padding: 35px 28px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 4px 12px var(--shadow-color);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}
.guide-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(243, 197, 34, 0.2);
}
/* Default width removed - will be set by three-columns class */
.guide-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: var(--accent-color);
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1em;
}
.guide-item h4 {
    font-size: 1.3em;
    margin: 20px 0 15px;
    color: var(--text-primary);
}
.guide-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}
.icon-svg {
    width: 60px;
    height: 60px;
}

/* Media queries removed - using single-row classes instead */

/*----- Enhanced Hero Section
--------------------------------------------------------------*/
.hero-subtitle {
    font-size: 1.4em;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Jost", Georgia, serif;
}
.banner-content .banner-title {
    font-size: 3.8em;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.hero-description {
    font-size: 1.15em;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 45px;
    font-weight: 400;
}
.hero-stats {
    display: flex;
    gap: 50px;
    margin: 50px 0 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.hero-stats .stat-item {
    text-align: left;
    flex: 1;
}
.hero-stats .stat-item strong {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    color: #F3C522 !important;
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: "Jost", Georgia, serif;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-stats .stat-item span {
    display: block;
    font-size: 0.75em;
    color: #ffffff !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-cta {
    margin-top: 0;
}
.hero-cta .btn-wrap {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.hero-cta .btn-wrap a {
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width: 768px) {
  .hero-stats {
      flex-direction: column;
      gap: 25px;
      padding: 30px 0;
  }
  .hero-stats .stat-item {
      text-align: center;
  }
  .banner-content .banner-title {
      font-size: 2.5em;
  }
  .hero-cta .btn-wrap {
      flex-direction: column;
      gap: 15px;
  }
}

/*----- Demo Lightbox
--------------------------------------------------------------*/
.demo-single-row .demo-item {
    width: 32%;
}
.demo-item {
    position: relative;
    cursor: pointer;
}
.demo-lightbox {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
}
.demo-lightbox:focus {
    outline: 2px solid #F3C522;
    outline-offset: 2px;
}
.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}
.demo-lightbox:hover .demo-overlay {
    opacity: 1;
}
.demo-icon {
    font-size: 3em;
    color: #fff;
    margin-bottom: 10px;
}
.demo-overlay p {
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-modal-active {
    opacity: 1;
    visibility: visible;
}
.lightbox-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}
.lightbox-modal-container {
    position: relative;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--shadow-color);
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}
.lightbox-modal-active .lightbox-modal-container {
    transform: scale(1);
}
.lightbox-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    background: var(--card-bg);
}
.lightbox-modal-title {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-family: "Jost", Georgia, serif;
}
.lightbox-modal-close {
    background: transparent;
    border: none;
    font-size: 2.5em;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}
.lightbox-modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transform: rotate(90deg);
}
.lightbox-modal-close span {
    display: block;
    line-height: 1;
}
.lightbox-modal-body {
    padding: 30px;
    overflow: auto;
    max-height: calc(90vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}
.lightbox-modal-image {
    max-width: 100%;
    max-height: calc(90vh - 160px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@media only screen and (max-width: 768px) {
  .lightbox-modal-container {
      max-width: 95%;
      max-height: 95vh;
  }
  .lightbox-modal-header {
      padding: 15px 20px;
  }
  .lightbox-modal-title {
      font-size: 1.2em;
  }
  .lightbox-modal-body {
      padding: 20px;
  }
  .lightbox-modal-image {
      max-height: calc(95vh - 140px);
  }
}

/*----- Single Row Layouts - Higher Specificity
--------------------------------------------------------------*/
.demo-single-row {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
}
.demo-single-row .demo-item {
    width: calc(33.333% - 20px) !important;
    flex: 0 0 calc(33.333% - 20px) !important;
    max-width: calc(33.333% - 20px) !important;
}

.comparison-single-row {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
}
.comparison-single-row .comparison-item {
    width: calc(25% - 30px) !important;
    flex: 0 0 calc(25% - 30px) !important;
    max-width: calc(25% - 30px) !important;
}

.stats-single-row {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
}
.stats-single-row .stat-box {
    width: calc(25% - 30px) !important;
    flex: 0 0 calc(25% - 30px) !important;
    max-width: calc(25% - 30px) !important;
}

.security-single-row {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
}
.security-single-row .badge-item {
    width: calc(25% - 30px) !important;
    flex: 0 0 calc(25% - 30px) !important;
    max-width: calc(25% - 30px) !important;
}

.guide-three-columns {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}
.guide-three-columns .guide-item {
    width: 100% !important;
    flex: none !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
}

@media only screen and (max-width: 1040px) {
  .demo-single-row {
      flex-wrap: wrap !important;
  }
  .demo-single-row .demo-item {
      width: calc(50% - 15px) !important;
      flex: 0 0 calc(50% - 15px) !important;
      max-width: calc(50% - 15px) !important;
      margin-bottom: 30px !important;
  }
  
  .comparison-single-row,
  .stats-single-row,
  .security-single-row {
      flex-wrap: wrap !important;
  }
  .comparison-single-row .comparison-item,
  .stats-single-row .stat-box,
  .security-single-row .badge-item {
      width: calc(50% - 15px) !important;
      flex: 0 0 calc(50% - 15px) !important;
      max-width: calc(50% - 15px) !important;
      margin-bottom: 30px !important;
  }
  
  .guide-three-columns {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 20px !important;
  }
  .guide-three-columns .guide-item {
      width: 100% !important;
      margin-bottom: 0 !important;
  }
}

@media only screen and (max-width: 620px) {
  .demo-single-row .demo-item,
  .comparison-single-row .comparison-item,
  .stats-single-row .stat-box,
  .security-single-row .badge-item,
  .guide-three-columns {
      grid-template-columns: 1fr !important;
      gap: 20px !important;
  }
  .guide-three-columns .guide-item {
      width: 100% !important;
      margin-bottom: 0 !important;
  }
}

/*----- Section Backgrounds and Spacing
--------------------------------------------------------------*/
#demo {
    background-color: var(--bg-secondary);
    padding: 130px 0;
}
#why-choose {
    padding: 130px 0;
}
#social-proof {
    background-color: var(--bg-secondary);
    padding: 100px 0;
}
#security {
    padding: 100px 0;
}
#faq {
    background-color: var(--bg-secondary);
    padding: 80px 0;
}
#quick-start {
    padding: 130px 0;
}
.demo-grid {
    margin-top: 60px;
}
.comparison-grid {
    margin-top: 60px;
}
.stats-grid {
    margin-top: 40px;
}
.security-badges {
    margin-top: 50px;
    justify-content: center;
}
.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}
.guide-grid {
    margin-top: 60px;
}
.btn-wrap.align-center {
    text-align: center;
}
.btn-wrap-spacing {
    margin-top: 60px;
}

/* Modern Styles Applied - Last Updated: Mon  1 Dec 00:09:40 GMT 2025 */
