:root{
--primary-color:#2a5298;
--secondary-color:#FE7214;
--gray:#4c4a4a;
--wp-blue-dark:#1F5F8B;
--wp-blue:#2F7EA8;
--wp-blue-light:#4FA3C7;
/* Accent – Color grading */
--wp-accent-yellow:#FFC700;
--wp-accent-cyan:#1EC9FF;
--wp-accent-red: #FF3B30;
--wp-accent-green: #32E132;
/* Background */
--wp-bg-dark:#0B0F14; 
--wp-bg-section:#0E1A22; 
--wp-bg-light: #FFFFFF;
/* Text */
--wp-text-main:#FFFFFF;
--wp-text-muted:#B6C2CC;
--wp-text-dark:#1C1C1C;	
}
.home-reason__list {
    display: flex;
    flex-direction: column;
    gap: 16px; 
}
.home-reason__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}
.item__icon svg {
    width: 48px;
    height: 48px;
}
.item__content-title {
  font-weight: 700;
  margin-bottom: 12px;
	color: #333 !important;
}
.item__content-desc {
    color: #333 !important; 
}
.home-promotion__link {
    display: inline-block;
    padding: 12px 28px;
    background-color: #fe7214;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid transparent;
    animation: blinkColorBorder 1.3s infinite ease-in-out;
}

@keyframes blinkColorBorder {
    0% {
        background-color: #fe7214;
        color: #fff;
        border-color: transparent;
    }
    50% {
        background-color: transparent;
        color: #fff;
        border-color: #ffffff;
    }
    100% {
        background-color: #fe7214;
        color: #fff;
        border-color: transparent;
    }
}
/*.home-process {
  position: relative;
  padding: 100px 0;
  background:
  linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
  background: linear-gradient(135deg, 
  #3e6bbf 0%, 
  #4f83d8 100%);
  overflow: hidden;
  min-height: 100vh;
}
.home-promotion__link:hover {
  background-color: #ef6509;
  border-color: transparent;
}*/
/* Video background */
/*.home-process video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}*/

/* Overlay để làm tối video */
/*.home-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}*/
/* Container */
/*.home-process .container {
    position: relative;
    z-index: 2;
}*/
/* SVG Container */
/*.home-process svg {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}*/
/* Animation cho các icons */
/*.home-process svg circle[fill="#FE7214"],
.home-process svg path[fill="#FE7214"] {
  animation: pulse 2s ease-in-out infinite;
}*/
/* Animation cho arrows */
/*.home-process svg path[fill="white"] {
  animation: slideArrow 1.5s ease-in-out infinite;
}
@keyframes slideArrow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}*/
/* Animation cho cloud */
/*.home-process svg path[fill="#0EA4F0"] {
   animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}*/
/* Hover effects cho server boxes */
/*.home-process svg rect[fill="#FE7214"]:hover {
  fill: #ff8533;
  cursor: pointer;
  transition: fill 0.3s ease;
}
*/
/* WOW Animation classes */
/*.wow {
  visibility: hidden;
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}*/
/*home-process 2*/
.home-process {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.home-process video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.home-process .container {
    position: relative;
    z-index: 1;
}

.home-process .section__title {
    color: white;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
}

/* Workflow SVG Styling */
.home-process svg {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Icon Circles */
.home-process svg circle {
    transition: all 0.3s ease;
}

.home-process svg circle:hover {
    filter: brightness(1.2);
}

/* Connection Lines */
.home-process svg path[stroke="white"],
.home-process svg line[stroke="white"] {
    stroke-dasharray: 5, 5;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

/* Text Labels */
.home-process svg text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    fill: white;
}

/* Orange Server Icon */
.home-process svg rect[fill="#FE7214"] {
    transition: transform 0.3s ease;
}

.home-process svg:hover rect[fill="#FE7214"] {
    transform: scale(1.05);
}

/* Cloud Icon Animation */
.home-process svg path[fill="#0EA4F0"] {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Arrows Animation */
.home-process svg path[d*="L"],
.home-process svg path[stroke="white"] {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 2s ease-in-out forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Person Icons */
.home-process svg path[fill="#1A80C1"],
.home-process svg circle[fill="#FE7214"] {
    transition: all 0.3s ease;
}

.home-process svg path[fill="#1A80C1"]:hover,
.home-process svg circle[fill="#FE7214"]:hover {
    filter: drop-shadow(0 5px 15px rgba(254, 114, 20, 0.5));
}

/* Responsive */
@media (max-width: 992px) {
    .home-process {
        padding: 60px 0;
    }
    
    .home-process .section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .home-process svg {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .home-process {
        padding: 40px 0;
    }
    
    .home-process .section__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .home-process svg text {
        font-size: 12px;
    }
}

/* WOW Animation Integration */
.home-process .wow {
    visibility: hidden;
}

.home-process .wow.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
/* Responsive */
@media (max-width: 992px) {
.section__title {
 font-size: 2.5rem;
 margin-bottom: 3rem;
}   
.home-process {
  padding: 60px 0;
}    
.home-process svg {
  padding: 0 20px;
}
}
@media (max-width: 768px) {
.section__title {
   font-size: 2rem;
   margin-bottom: 2rem;
}    
.home-process {
   padding: 40px 0;
}   
.home-process svg text {
  font-size: 10px;
}
}
@media (max-width: 576px) {
.section__title {
 font-size: 1.75rem;
}    
.home-process svg {
 padding: 0 10px;
 }
}
/* Decorative elements */
.home-process::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 100px;
 background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
 z-index: 1;
}

/* Loading animation cho SVG */
.home-process svg {
  opacity: 0;
  animation: fadeInSVG 1s ease-in 0.5s forwards;
}

@keyframes fadeInSVG {
from {
   opacity: 0;
   transform: translateY(20px);
 }
to {
   opacity: 1;
   transform: translateY(0);
}
}
/* Glow effect cho các icon quan trọng */
.home-process svg circle[r="33"] {
 filter: drop-shadow(0 0 10px rgba(254, 114, 20, 0.5));
}
/* Interactive states */
.home-process svg g:hover {
 cursor: pointer;
 opacity: 0.9;
 transition: opacity 0.3s ease;
}
.home-faq {
   padding: 100px 20px;
   background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   position: relative;
   overflow: hidden;
}
.home-faq::before {
	content: '';
	position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 123, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
.home-faq::after {
    content: '';
	position: absolute;
	bottom: -50%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(0, 168, 255, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite reverse;
}
.container {
   max-width: 1200px;
   margin: 0 auto;
   position: relative;
   z-index: 1;}
/* Section Title */
.section__title {
   font-size: 3.5rem;
   font-weight: 700;
   text-align: center;
   margin-bottom: 20px;
   color: #2c3e50;
   text-transform: uppercase;
   letter-spacing: 2px;
   position: relative;
   animation: fadeInDown 1s ease;
}
.section__title::after {
   content: '';
   position: absolute;
   bottom: -15px;
   left: 50%;
   transform: translateX(-50%);
   width: 80px;
   height: 4px;
   background: linear-gradient(90deg, #ff7b00, #ff9500);
   border-radius: 2px;
}
/* Section Description */
.section__desc {
   text-align: center;
   font-size: 1.1rem;
   color: #7f8c8d;
   margin-bottom: 60px;
   animation: fadeInUp 1s ease;
   animation-delay: 0.2s;
   animation-fill-mode: both;
}
.home-faq__list {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 40px;
 margin-top: 50px;
}
 /* FAQ Item */
.home-faq__item {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease;
  animation-fill-mode: both;
}
.home-faq__item:nth-child(1) { animation-delay: 0.3s; }
.home-faq__item:nth-child(2) { animation-delay: 0.4s; }
.home-faq__item:nth-child(3) { animation-delay: 0.5s; }
.home-faq__item:nth-child(4) { animation-delay: 0.6s; }
.home-faq__item:nth-child(5) { animation-delay: 0.7s; }
.home-faq__item:nth-child(6) { animation-delay: 0.8s; }
.home-faq__item:nth-child(7) { animation-delay: 0.9s; }
.home-faq__item:nth-child(8) { animation-delay: 1s; }
.home-faq__item::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255, 123, 0, 0.1), transparent);
 transition: left 0.5s ease;
}
.home-faq__item:hover::before {
 left: 100%;
}
.home-faq__item:hover {
 transform: translateY(-5px);
 box-shadow: 0 15px 35px rgba(255, 123, 0, 0.15);
}
.home-faq__item.active {
 border-left: 4px solid #ff7b00;}
@media (max-width: 992px) {
.home-faq__list {
  grid-template-columns: 1fr;
  gap: 25px;
}
.section__title {
  font-size: 2.8rem;
}
}
@media (max-width: 768px) {
.home-faq {
padding: 60px 15px;
}
.section__title {
  font-size: 2.2rem;
}
.section__desc {
  font-size: 1rem;
  margin-bottom: 40px;
}
.home-faq__item {
  padding: 20px;
}
.item__head {
  font-size: 1rem;
}
.item__content {
 font-size: 0.95rem;
 padding-left: 0;
}
}
@media (max-width: 480px) {
.section__title {
   font-size: 1.8rem;
}
.home-faq__item {
  padding: 15px;
}
.item__head {
  font-size: 0.95rem;
}
}
/*ss about*/
.home-reason-item li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}
.home-reason-row {
    display: flex !important;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
	margin-bottom:15px;
}
/* icon */
.item1_img {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item1_img img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}
.home-reason-row:hover{
    background: rgba(31, 95, 139, 0.03);
    transform: translateY(-2px);
    transition: all 0.3s ease;
	border-radius:4px;
	box-shadow:0 6px 16px rgba(0, 0, 0, 0.18);
}

.col_bg_drak.col1,.col_bg_drak.col1 h2,.col_bg_drak.col1 h3,.col_bg_drak.col1 p{
	color:#fff;
}
.cs_btn_seemore{
	display:flex;
	justify-content:end;
	align-items:center;
	padding: 20px;
    margin-top: -12px;
}
.cs_btn_seemore a{
	color:var(--primary-color);
	display:flex;
}
.cs_btn_seemore a::after {
    content: "";
    width: 35px;
    height: 2px;
    background-color: var(--primary-color);
    margin-left: 10px;
    transform-origin: left center;
    transform: scaleX(1);
    transition: transform 0.3s;
	margin-top: 10px;
}
.home_about_item_img {
    position: relative;
    display: inline-block;
	margin-left:-20px;
}
.home_about_item_img img {
    transform: translate(-6px, -6px);
    box-shadow: 22px 24px 48px rgba(0, 0, 0, 0.38);
}

@media (max-width: 767px) {
    .home-reason-row {
        gap: 12px;
    }
    .item2_title {
        font-size: 16px;
    }
    .item2_desc {
        font-size: 14px;
    }
}
