/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
 /* ========================================
   CSS CUSTOM PROPERTIES (Variables)
======================================== */
:root {
    /* Colors - Wedding Theme */
    --color-primary: #E91E63;
    --color-primary-dark: #C2185B;
    --color-primary-light: #FF6B9D;
    --color-secondary: #FF6B9D;
    --color-accent: #FFC107;
    --color-success: #4CAF50;
    --color-warning: #FF9800;
    --color-error: #F44336;
    
    /* Neutrals */
    --color-dark: #2C3E50;
    --color-gray: #646970;
    --color-gray-light: #F8F9FA;
    --color-border: #E0E0E0;
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Inter', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Font Sizes - Responsive */
    --font-size-h1: clamp(36px, 5vw, 48px);
    --font-size-h2: clamp(28px, 4vw, 36px);
    --font-size-h3: clamp(22px, 3vw, 28px);
    --font-size-h4: clamp(18px, 2.5vw, 22px);
    --font-size-body: 16px;
    --font-size-small: 14px;
    --font-size-tiny: 12px;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    /* Layout */
    --container-max-width: 1200px;
    --container-padding: 20px;
    --section-padding: 80px 0;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1050;
    --z-tooltip: 1070;
}

#button-contact-vr {
    position: fixed;
    bottom: 100px;
    z-index: 999;
    right: 0;
  }
  
  /*phone*/
  #button-contact-vr .button-contact {
    position: relative;
    margin-top: -5px;
  }
  
  #button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
  }
  
  .phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: #cf203170;
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
  }
  
  .phone-vr-img-circle {
    background-color: #CF2031;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out;
  }
  
  .phone-vr-img-circle a {
    display: block;
    line-height: 37px;
  }
  
  .phone-vr-img-circle img {
    max-height: 25px;
    max-width: 27px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
  }
  
  @-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
  
    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
  
    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
  
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
  
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
  
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
  
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
  }
  
  @-webkit-keyframes zoom {
    0% {
        transform: scale(.9)
    }
  
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }
  
    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
  }
  
  @keyframes zoom {
    0% {
        transform: scale(.9)
    }
  
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }
  
    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
  }
  
  .phone-bar a {
    position: fixed;
    bottom: 25px;
    left: 30px;
    z-index: -1;
    color: #fff;
    font-size: 16px;
    padding: 8px 15px 7px 50px;
    border-radius: 100px;
    white-space: nowrap;
  }
  
  .phone-bar a:hover {
    opacity: 0.8;
    color: #fff;
  }
  
  #zalo-vr .phone-vr-img-circle {
    background-color: #1F5E9D;
  }
  
  #zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #1f5e9da3;
    background-color: #1f5e9d7a;
  }
.img-header{z-index: 9;}
.header-bottom-nav.nav-left{
}
.header-bottom-nav.nav-left>li:first-child{
}
.header-bottom-nav.nav-left>li{margin: 0 20px;}
.header-bottom-nav.nav-left>li>a{
}
.header-bottom-nav.nav-left>li:first-child a{font-size: 0;}
.header-bottom-nav.nav-left>li:first-child a img{filter: brightness(0) invert(1);-webkit-filter: brightness(0) invert(1);}
#main, #wrapper {
    background-color: #e8f2ff;
    position: relative;
}
.row-new-nb{
  /* --tw-bg-opacity: 1; */
  /* background-color: rgb(255 255 255 / var(--tw-bg-opacity)); */
  /* --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1); */
  /* --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); */
  /* box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); */
}
.sec-fff{
      padding-left: 15px !important;
      padding-right: 15px !important;
      border-radius: 10px;
      background: #fff;
}
.blog-left-nb{
}
.blog-left-nb img{
      border-radius: .5rem;
}
.blog-right-nb{
}
.blog-right-nb .post-item{margin-bottom: 5px;}
.blog-right-nb .post-item .box-text{padding: 0;padding-left: 15px;}
.blog-right-nb .post-item .col-inner{
      border-bottom: 1px solid #f1f0f0;
      padding-bottom: 10px;
      padding-top: 5px;
}
.blog-left-nb .box-text{/* padding: 0; */padding-bottom: 0;}
.news-home{margin-top: 20px;padding-top: 10px;padding-bottom: 10px;}
.parent-header{
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 15px;
}
.parent-header h2{
  color:#70195e;
}
.parent-header h2 a{
  color:#70195e;
  text-transform: uppercase;
  font-size: 20px;
}
.parent-header ul{/* text-align: right; */}
.parent-header ul li{float: right;list-style-type: none;margin-bottom: 0px;padding-bottom: 0px;line-height: 35px;}
.parent-header ul li a{color: #70195e;font-size: 14px;}
.news-featured{margin-bottom: 20px;}
.news-featured img{
  border-radius: 5px;
}
.news-featured h3{
      color: #323030;
      font-size: 20px;
      line-height: 25px;
      margin-top: 15px;
}
.news-featured p{
      color: #827c7c;
      margin-bottom: 0;
      font-size: 13px;
}
.news-item{display: block;width: 100%;overflow: hidden;border-bottom: 1px solid #f1f0f0;margin-bottom: 10px;padding-bottom: 10px;}
.news-item .img-new{float: left;width: 114px;height: 68px;}
.news-item .img-new img{height: 100%;border-radius: 5px;}
.news-item .text-new{float: left;width: calc(100% - 120px);padding-left: 10px;}
.news-item .text-new a{
}
.news-item .text-new a h4{
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-height: 20px;
      font-size: 14px;
      /* padding-left: 10px; */
}
.news-item .text-new p{
  color: #827c7c;
      margin-bottom: 0;
      font-size: 13px;
}
.icon-time{background: #fff;padding: 10px;border-radius: 10px;}
.text-chua{
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.blog-right-nb .post-item .box-text h5{
}
.blog-right-nb .post-item .box-text h5 a{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
}
.template-video{
      align-items: center;
      display: flex;
}
.template-video p{
  color: #1e73be;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 0;
  font-weight: 700;
}
.template-video hr{border-color: #70195e;border-width: 1px;opacity: 1;margin: 0 11px;}

.text-video p{font-size: 15px;font-weight: 700;text-align: center;margin-bottom: 0;margin-top: 5px;margin-bottom: 20px;}
.albums-items-us-img-b {
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
      border-radius: 10px;
  }
  .albums-items-us-img-b img {
      width: 100%;
      vertical-align: middle;
      -webkit-transition-duration: 1s;
      transition-duration: 1s;
      transition: 1s all;
      height: 246px;
      object-fit: cover;
  }
  .albums-items-us-img:hover .albums-items-us-img-b img {
      -ms-transform: scale(1.2);
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
  }
  .albums-items-us-content {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
  }
  .albums-items-us-title {
      background: rgba(0, 0, 0, .6);
      padding: 5px 8px;
      width: 100%;
  }
  .albums-items-us-title a {
      color: #fff;
      text-decoration: none;
      overflow: hidden;
      display: block;
      padding: 5px;
  }
.acf-gallery-count{
  color:#ffffff;
  font-size: 14px;
}
.acf-gallery-count svg{margin-right: 5px;}
.blog-archive{margin-top: 0;}
.blog-single{margin-top: 0;margin-bottom: 30px;}
.page-new{background: #fff;padding: 10px;border-radius: 10px;margin-bottom: 15px;}
.page-new .post-item{
}
.page-new .post-item .box-blog-post{border-bottom: 1px dashed #d1d5db;padding-bottom: 10px;padding-top: 10px;}
h1.head_title{color: #70195e;padding-left: 10px;border-left: 5px solid #70195e;line-height: 25px;}
.relate-box{
}
.relate-box h3.relate-post{
  color: #70195e;
  padding-left: 10px;
  border-left: 5px solid #70195e;
  line-height: 25px;
  border-bottom: 2px solid #b5b0b0;
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.postRelate{margin-bottom: 20px;}
.postRelate .postTwoThumb{position: relative;height: 156px;width: 100%;overflow: hidden;}
.postRelate .postTwoThumb img{position: absolute;width: 100%;height: 100%;object-fit: cover;}
.postRelate .postTwoContent{margin-top: 10px;}
.postRelate .postTwoContent .postTwoTitle{
}
.postRelate .postTwoContent .postTwoTitle a{overflow: hidden;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;line-height: 21px;font-weight: 600;text-align: center;}
#comments{
  display:none;
}
.main-content{margin-top: 30px;/* margin-bottom: 30px; */}
.blog-right-nb .post-item .box-blog-post{
  display: table;
        width: 100%;
}
@media(max-width:768px){
  .header-main {
    display: block;
}
  #logo{
    /* display:none; */
  }
}
@media(max-width:549px){
  .blog-right-nb .box-image{
    width: 33% !important;
    direction: ltr;
        display: table-cell;
        vertical-align: middle;
  }
}
.text-new-nb{
}
.text-new-nb p{position: relative;color: #70185f;font-size: 20px;font-weight: 700;margin-bottom: 10px;}
.text-new-nb p:before{
  content:"";
  border: 1px solid #70185f;
  width: 100%;
  position: absolute;
  top: 50%;
}
.text-new-nb p span{background: #fff;position: relative;padding-right: 10px;}
.new-home-nb{
  display:none;
}
.blog-right-nb .new-home-nb{
  display:block;
}
.stuck .img-header{
  display:none;
}
.pageBreamBox {
    background-color: rgb(247 247 247);
    margin-bottom: 30px;
}
.pageBreamBox  .breadcrumb{
   padding: 10px 0;
   /* background: #fff; */
   border-radius: 5px;
}
.lt-image img{max-height:150px}
h3.title{font-size: 20px;margin-top:5px;color: #70195e;}
.fah {
    float: left;
    width: 50px;
    height: 50px;
    color: #2176c3;
    margin-top: 6px;
    margin-right: 14px;
    text-align: center;
    font-size: 60px;
    line-height: 46px;
    background-size: 100% 100%;
}
.sharaholder-us-content {
    float: left;
    position: relative;
    width: 90%;
    padding-bottom: 10px;
    border-bottom: 1px solid #d8d8d8;
}
.sharaholder-us-title {
   
    font-size: 18px;
    color: #000000;
}
.sharaholder-us-date {
  
    font-size: 13px;
    color: #bfbfbf;
}
.fls {list-style:none}
.fls {line-height:20px}
.fls li{margin:10px 0px}
.sharaholder-us-down a {
    position: absolute;
  
    cursor: pointer;
    width: 95px;
   
    font-size: 14px;
    border: 1px solid #d01a1a;
    line-height: 28px;
    text-align: center;
    color: #d01a1a;
    border-radius: 6px;
    height: 28px;
    top: 10px;
    right: 0;
}
.items-file {
    margin-bottom: 15px;
    float: left;
    width: 100%;
    margin-top: 15px;
}
.sharaholder-us-down1 a {
    cursor: pointer;
    width: 140px;
    font-size: 24px;
    border: 1px solid #d01a1a;
    line-height: 40px;
    text-align: center;
    color: #d01a1a;
    border-radius: 6px;
    height: 40px;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
}
.box-blog-post .is-divider {
    height: 2px;
    margin-bottom: .5em;
    margin-top: .5em;
    display: none;
}
.box-blog-post img{
  border-radius: 5px;
}
 .nav > li {
    display: inline-block;
    list-style: none;
    margin: 0 13px;
    padding: 0;
    transition: background-color .3s;
}
.header.show-on-scroll, .stuck .header-main {
    height: 60px !important;
    background: #fff;
}
.header-bg-color {
    background-color: rgba(0, 0, 0, 0) !important;
}
.main-menu { background: var(--main-color); }
.menu a { color: var(--main-color); }
.site-footer { background: var(--main-color); }
.title-right{
}
.title-right p{
      font-size: 20px;
      margin-top: 5px;
      color: #70195e;
      font-weight: 700;
      text-transform: uppercase;
}
.h3-title-footer{
}
.h3-title-footer p{font-weight: 700;font-size: 16px;}
.img-news-featured{position: relative;height: 305px;width: 100%;overflow: hidden;border-radius: 5px;}
.img-news-featured img{position: absolute;width: 100%;height: 100%;object-fit: cover;}
.sub-menu{padding: 0;}
.sub-menu>li>a{margin: 0 !important;padding:  13px !important;font-size: 14px;color: #333;}
.nav  .sub-menu>li>a:hover{background: #1154af;color: #fff !important;}
.page-new .banner{
  border-radius: 5px;
    overflow: hidden;
}
.blog-left-nb a{
}

/* ========================================
   FOOTER
======================================== */
.landing-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}
.nav-dropdown-has-border .nav-dropdown {
    border: 1px solid #1154af;
    border-radius: 5px;
}

.nav-dropdown-has-arrow.nav-dropdown-has-border li.has-dropdown:before {
    border-bottom-color: #1154af;
    bottom: -1px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-description {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright i {
    color: var(--color-primary);
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.payment-label {
    font-size: var(--font-size-small);
    color: rgba(255, 255, 255, 0.6);
}

.payment-methods {
    display: flex;
    gap: var(--spacing-sm);
}

.payment-methods img {
    height: 24px;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.payment-methods img:hover {
    opacity: 1;
}

/* ========================================
   FOOTER - COMPACT VERSION
======================================== */
.landing-footer-compact .footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-footer-compact .footer-brand-section {
    max-width: 420px;
}

.landing-footer-compact .footer-logo {
    margin-bottom: var(--spacing-md);
}

.landing-footer-compact .footer-description {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.landing-footer-compact .footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.landing-footer-compact .footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    font-size: 18px;
}

.landing-footer-compact .footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.landing-footer-compact .footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.landing-footer-compact .footer-column {
    /* Each column of links */
}

.landing-footer-compact .footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

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

.landing-footer-compact .footer-links li {
    margin-bottom: 12px;
}

.landing-footer-compact .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    display: inline-block;
    font-size: 15px;
}

.landing-footer-compact .footer-links a:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.tc-footer {
    background: linear-gradient(135deg, #0f4aa5 0%, #003584 100%);
    color: #E8D5C4;
    margin-top: 0;
}

.tc-footer-main {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.tc-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
}

/* Footer Brand Section */
.tc-footer-brand {
    padding-right: 20px;
}

.tc-footer-logo {
    margin-bottom: 20px;
}

.tc-footer-logo img {
    max-height: 50px;
    width: auto;
}

.tc-footer-logo h3 {
    color: #fff;
    font-size: 1.75rem;
    margin: 0;
    font-weight: 700;
}

.tc-footer-description {
    color: #fff;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.tc-footer-contact {
    margin-bottom: 25px;
}

.tc-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #fff;
}

.tc-footer-contact-item i {
    color: #D4A574;
    width: 18px;
    text-align: center;
    font-size: 0.95rem;
}

.tc-footer-contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tc-footer-contact-item a:hover {
    color: #e91e63;
}

.tc-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.tc-footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.tc-footer-social a:hover {
    background: #D4A574;
    color: #fff;
    transform: translateY(-3px);
    border-color: #D4A574;
}

/* Footer Menu Sections */
.tc-footer-menu {
    padding-left: 10px;
}

.tc-footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(212, 165, 116, 0.2);
}

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

.tc-footer-links li {
    margin-bottom: 12px;
}

.tc-footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.tc-footer-links a:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.tc-footer-links a:hover {
    color: #ffffff !important;
    padding-left: 15px;
}

.tc-footer-links a:hover:before {
    width: 10px;
}

/* Footer Bottom */
.tc-footer-bottom {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.2);
}

.tc-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.tc-footer-copyright {
    color: #fff;
    font-size: 0.9rem;
}

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

.tc-footer-copyright strong {
    color: #fff;
}

.tc-footer-payment {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
}

.tc-payment-label {
    color: #fff;
    font-size: 0.85rem;
    margin-right: 5px;
}

.tc-payment-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tc-payment-icons i {
    font-size: 1.5rem;
    color: #C5B299;
    transition: color 0.3s ease;
}

.tc-payment-icons i:hover {
    color: #D4A574;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .tc-footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px 30px;
    }
    
    .tc-footer-menu:nth-child(4),
    .tc-footer-menu:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .tc-footer-main {
        padding: 50px 0 30px;
    }
    
    .tc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    .tc-footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .tc-footer-social {
        justify-content: center;
    }
    
    .tc-footer-contact-item {
        justify-content: center;
    }
    
    .tc-footer-menu {
        padding-left: 0;
    }
}
@media (max-width: 768px) {
    .landing-footer-compact .footer-links-section {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .landing-footer-compact .footer-heading {
        margin-bottom: var(--spacing-sm);
    }
    
    .landing-footer-compact .footer-links li {
        margin-bottom: 10px;
    }
}
 /* User Menu Wrapper */
            .wi-user-menu-wrapper {
                display: inline-flex;
                align-items: center;
                height: 100%;
                width: 100%;
            }

            /* Guest Menu - Create Button */
            .wi-guest-menu {
                display: flex;
                align-items: center;
            }

            .wi-create-btn {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 10px 20px;
                background: linear-gradient(135deg, #e91e63 0%, #e07a8b 100%);
                color: #ffffff !important;
                border-radius: 25px;
                font-weight: 600;
                font-size: 14px;
                text-decoration: none !important;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            }

            .wi-create-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
                color: #ffffff !important;
            }

            .wi-create-btn svg {
                width: 16px;
                height: 16px;
            }

            /* Logged In User Menu */
            .wi-user-menu {
                position: relative;
                display: inline-block;
            }

            .wi-user-menu-toggle {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 5px 5px;
                background: #ffffff;
                border: 1px solid #e5e7eb;
                border-radius: 25px;
                cursor: pointer;
                transition: all 0.3s ease;
                font-family: inherit;
                font-size: 13px;
            }

            .wi-user-menu-toggle:hover {
                border-color: #667eea;
                box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
            }

            .wi-user-avatar {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 32px;
                height: 32px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: #ffffff;
                border-radius: 50%;
                font-weight: 600;
                font-size: 14px;
            }

            .wi-user-email {
                color: #1f2937;
                font-weight: 500;
                max-width: 100px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .wi-dropdown-icon {
                transition: transform 0.3s ease;
                color: #6b7280;
            }

            .wi-user-menu-toggle.active .wi-dropdown-icon {
                transform: rotate(180deg);
            }

            /* User Dropdown */
            .wi-user-dropdown {
                position: absolute;
                top: calc(100% + 10px);
                right: 0;
                width: 280px;
                background: #ffffff;
                border-radius: 12px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.3s ease;
                z-index: 9999;
            }

            .wi-user-dropdown.show {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .wi-dropdown-header {
                padding: 16px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                border-radius: 12px 12px 0 0;
                color: #ffffff;
            }

            .wi-user-info strong {
                display: block;
                font-size: 15px;
                font-weight: 600;
                margin-bottom: 4px;
                color: #ffffff;
            }

            .wi-user-plan {
                display: inline-block;
                padding: 4px 12px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 12px;
                font-size: 12px;
                font-weight: 500;
                color: #ffffff;
            }

            .wi-dropdown-divider {
                height: 1px;
                background: #e5e7eb;
                margin: 8px 0;
            }

            .wi-dropdown-item {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 12px 16px;
                color: #374151 !important;
                text-decoration: none !important;
                transition: all 0.2s ease;
                font-size: 14px;
                font-weight: 500;
            }

            .wi-dropdown-item:hover {
                background: #f9fafb;
                color: #667eea !important;
            }

            .wi-dropdown-item svg {
                flex-shrink: 0;
                color: #6b7280;
                transition: color 0.2s ease;
            }

            .wi-dropdown-item:hover svg {
                color: #667eea;
            }

            .wi-dropdown-item.wi-logout {
                color: #dc2626 !important;
            }

            .wi-dropdown-item.wi-logout:hover {
                background: #fef2f2;
            }

            .wi-dropdown-item.wi-logout svg {
                color: #dc2626;
            }

            /* Mobile Responsive */
            @media (max-width: 768px) {
                

                .wi-user-menu-toggle {
                    padding: 8px 12px;
                }

                .wi-user-dropdown {
                    right: -10px;
                    width: 260px;
                }

                .wi-create-btn span {
                    display: none;
                }

                .wi-create-btn {
                    padding: 10px 16px;
                    border-radius: 50%;
                    width: 46px;
                    height: 46px;
                    justify-content: center;
                }
            }

            @media (max-width: 480px) {
                .wi-user-dropdown {
                    /* position: relative; */
                    top: 0px;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    /* width: 100%; */
                    border-radius: 20px 20px 0 0;
                    transform: none;
                    opacity: 1;
                    top: 0px;
                    bottom: auto;
                    visibility: unset;
                    width: 100%;
                    min-width: 260px;
                }

                .wi-user-dropdown.show {
                    transform: translateY(0);
                }
            }
            .scroll-to-top{display: none;}
            .header-main .nav > li > a {
    line-height: 30px;
    color: #292929 ;
}
.header-main .nav > li > a:hover {
    background-color: var(--fs-color-primary);
    color: #fff !important;
}
.template-modal-body .form-group{margin-bottom: 0px;}
.feature-card{text-align: center;}
.solutions-content{text-align: center;}
#phu-huynh .problems-grid .problem-icon i{color:#fff}
.nav-box > li.active > a, .nav-pills > li.active > a{color: #fff;}
           .flex-left .header-nav-main.nav li:first-child a{font-size: 0 !important;}
                  .flex-left .header-nav-main.nav ul li:first-child a{font-size: 14px   !important;}
@media(max-width:549px){
.blog-left-nb a {
    font-size: 17px;
}
.tc-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}
.nav-sidebar.nav-vertical > li + li {
    border-top: 1px solid #ececec;
    display: flex;
}
  .text-new-nb {
    margin-top: 25px;
}
}