@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css);
/*google fonts*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap');

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --accent: #ec4899;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --success: #10b981;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-reverse: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
}

body {
    background-color: #f1f5f9;
    color: var(--dark);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}





/* Header & Navigation */
header { height: 81px;line-height: 81px;
    background: var(--gradient);
    color: white;
    /*padding: 15px 0; */
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background: rgba(37, 99, 235, 0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {transform: scale(1);}
    50% {transform: scale(1.05);}
    100% {transform: scale(1);}
}

.logo .imgBox {
  width: 2.2rem;
  height: 2.2rem;
  background: white;
  border-radius: 50%;
  margin-right:.36rem;  
  display: flex; 
  justify-content: center;  
  align-items: center;     
}
.logo img {
  width: 1.8rem;
  
  animation: rotate 8s linear infinite;
}
@keyframes rotate {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 5px 0;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s;
}

nav a:hover:after {
    width: 100%;
}

nav a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.mobile-menu-btn:hover {
    transform: rotate(90deg);
}

/*----------------------------------*\
  # Hero Section                  
\*----------------------------------*/
.hero {    
    color: white;    
    text-align: center;
    position: relative;
    overflow: hidden;
    height: calc(100vh - 81px);
    display: flex;
    align-items: center;
}
.hero .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1;
}
/* 深色漸層遮罩 */
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;    
    background: linear-gradient(rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.96));
    z-index: 0;
}

/*———————————›hero-content*/
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
    from {opacity: 0;transform: translateY(30px);}
    to {opacity: 1;transform: translateY(0);}
}

/*——————————›粒子背景效果*/
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

/*———————————›Hero文字依序出現*/
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: scale(0.8);
  animation: popIn 1s ease forwards;
}
@keyframes popIn {
  to {opacity: 1;transform: scale(1);}
}
.hero p {
  font-size: 1.3rem;
  margin: 0 auto 30px;
  max-width: 700px;
  opacity: 0; /* 一開始隱藏 */
}
.typing-text {
  display: inline-block;
  white-space: pre-wrap;
  border-right: 1px solid #333;
  font-size: 1.2rem;
  overflow: hidden;
}
.hero h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  line-height: 1.2;            
}
.hero h3,
.hero .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.hero h3.show,
.hero .btn.show {
  opacity: 1;
  transform: translateY(0);
}

/*——————————————————————————————————*\
  # Animation                   
\*——————————————————————————————————*/
@keyframes float {
    0%,
    100% {transform: translateY(0px) rotate(0deg);}
    50% {transform: translateY(-20px) rotate(180deg);}
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

@keyframes slideInLeft {
    from {opacity: 0;transform: translateX(-50px);}
    to {opacity: 1;transform: translateX(0);}
}

@keyframes slideInRight {
    from {opacity: 0;transform: translateX(50px);}
    to {opacity: 1;transform: translateX(0);}
}

/*——————————————————————————————————*\
  # btn                   
\*——————————————————————————————————*/
.btn {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
    animation: bounce 2s infinite;
    animation-delay: 3s;
}
.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}
.btn:hover:before {
    left: 100%;
}
.btn:hover {
    background: #e69008;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.btn:active {
    transform: translateY(-1px);
}

/*——————————————————————————————————*\
  # Section Title                    
\*——————————————————————————————————*/
/* Features Section */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
#tech .section-title { /*25-0828*/            
    margin-bottom: 99px;             
}
#clients .section-title { /*25-0828*/            
    margin-bottom: 135px;            
}
.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    animation: slideInLeft 1s ease-out;
}
.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 1.1rem;
    animation: slideInRight 1s ease-out 0.3s both;
}
.error {  
  border: 2px solid #40c4ff;
  border-radius: 50%;
  border-width: medium thin thick 8.1px;  
}

/*——————————————————————————————————*\
  # section                    
\*——————————————————————————————————*/
section {
    padding: 100px 0;
    position: relative;
}

/*——————————————————————————————————*\
  # 視差滾動效果                    
\*——————————————————————————————————*/
.parallax-element {
    transform: translateZ(0);
    will-change: transform;
}


/*----------------------------------*\
  # Fatures                  
\*----------------------------------*/
.features {
    background-color: white; 
    position: relative;
    overflow: hidden;
}
.features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.05;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}
.features::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.05;
    z-index: 0;
    animation: float 10s ease-in-out infinite reverse;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.feature-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
/* 黑色透明遮罩 */
.feature-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    background: linear-gradient(rgba(30, 41, 59, 0.63), rgba(20, 56, 114, 0.72));    
    pointer-events: none; /* 不影響滑鼠操作 */
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-icon {
    background: var(--gradient);
    color: white;
    font-size: 2.2rem;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    position: relative;
    z-index: 1;
    animation: pulseIcon 2s infinite;
}
@keyframes pulseIcon {
    0%,
    100% {transform: scale(1);}
    50% {transform: scale(1.2);}
}

.feature-content {
    padding: 30px;
}

.feature-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    transition: color 0.3s;
}

.feature-card:hover .feature-content h3 {
    color: var(--accent);
}

.feature-content ul {
    list-style: none;
    margin-top: 20px;
}

.feature-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    transition: all 0.3s;
}

.feature-content li:hover {
    transform: translateX(5px);
    color: var(--primary);
}

.feature-content li:before {
    content: '✓';
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
    transition: all 0.3s;
}

.feature-content li:hover:before {
    transform: rotate(360deg);
}
.feature-content li img {
    width: 18px;
}
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;     
  } 
  .feature-image {
    height: 160px; 
  }
  .feature-content {
    padding: 20px; 
  }
  .feature-content li {
    font-size: 0.9rem; 
  }
}

/*----------------------------------*\
  # Technology Section                  
\*----------------------------------*/
.technology {
    background: white;
    position: relative;
    overflow: hidden;
}

.tech-stack {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px; 
    position: relative;
}

.tech-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(30px);
    opacity: 0;
}

.tech-item.visible {
    transform: translateY(0);
    opacity: 1;
}

.tech-item:nth-child(1) {
    transition-delay: 0.1s;
}

.tech-item:nth-child(2) {
    transition-delay: 0.2s;
}

.tech-item:nth-child(3) {
    transition-delay: 0.3s;
}

.tech-item:nth-child(4) {
    transition-delay: 0.4s;
}

.tech-item:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tech-item i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tech-item:hover i {
    transform: rotate(360deg);
    color: var(--accent);
}

.tech-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

/*----------------------------------*\
  # Clients Section                  
\*----------------------------------*/
#clients { 
    padding: 100px 0;            
    position: relative; 
    z-index: 1;  
}
#clients .section-title { 
    position: relative;
    z-index: 2;            
}
#clients::before { 
    position: absolute;
    content: "";
    inset: 0;
    z-index: 0; 
}
.clients {
    background: var(--light);
    position: relative;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 63px; 
}
.client-logo {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.5s ease;
}
.client-logo.visible {
    transform: scale(1);
    opacity: 1;
}
.client-logo:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.client-logo span {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark);
    transition: all 0.3s;
}
.client-logo:hover span {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

/*----------------------------------*\
  # CTA Section                  
\*----------------------------------*/
.cta {
    position: relative;
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta .line-icon {
    width: 54px;
    height: auto;
    position: absolute;
    top: 12%;
    right: 1.8rem;
    z-index: 99;
    transition: all 0.3s;
    animation: pulseIcon 2s infinite;
}
.cta .line-icon:hover {
    transform: translateY(5px);
}
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {opacity: 0;transform: translateY(-30px);}
    to {opacity: 1;transform: translateY(0);}
}

.cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.3s both;
}

.cta .btn {
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    padding: 16px 40px;
    animation: pulseBtn 2s infinite;
}
@keyframes pulseBtn {
    0%,
    100% {transform: scale(1);}
    50% {transform: scale(1.05);}
}

.cta .btn:hover {
    background: #f0f0f0;
}

/*----------------------------------*\
  # Footer                   
\*----------------------------------*/
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;    
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));    
    gap: 24px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-column p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.footer-column li:hover {
    transform: translateX(5px);
}

.footer-column i {
    margin-right: 12px;
    color: var(--secondary); 
    transition: all 0.3s;
}       

.footer-column li:hover i {
    transform: rotate(360deg);
}

.footer-column a {
    color: #cbd5e1; 
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column a:hover {
    color: var(--secondary);
}
.footer-column a:hover i{
    color: var(--dark);
}
/*—————————————›social-links*/
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px) rotate(360deg);
}

/*----------------------------------*\
  # copyright                   
\*----------------------------------*/
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.95rem;
}

/*----------------------------------*\
  # back-to-top                   
\*----------------------------------*/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 98;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/*----------------------------------*\
  # 滾動條樣式                   
\*----------------------------------*/
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.4rem;
    }
    
    #tech .section-title { /*25-0828*/            
        margin-bottom: 180px;             
    }
    #clients .section-title { /*25-0828*/            
        margin-bottom: 225px;            
    }            
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 15px;
    }


    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav li {
        margin: 12px 0;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    nav ul {
        display: none;
        width: 100%;
        background: rgba(37, 99, 235, 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }

    nav ul.show {
        display: flex;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2.1rem;
    }

    section {
        padding: 70px 0;
    }

    .cta h2 {
        font-size: 2.2rem;
    }

    .cta p {
        font-size: 1.1rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }            
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.9rem;
    }

    .feature-content h3 {
        font-size: 1.4rem;
    }

    .tech-item {
        width: 100%;
        max-width: 250px;
    }

    .cta h2 {
        font-size: 1.8rem;
    }
}


/*——————————————————————————————————*\
  # Contact Form                 
\*——————————————————————————————————*/
input::placeholder,
textarea::placeholder {  
  color: #FFF;      
  opacity: .54; 
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  border-radius: 18px;    
  outline: none; 
  width:100%;
  padding: 0 .81rem;
  height: 2.4rem;
  line-height: 2.4rem;
  background: rgba(255, 255, 255, 0.3); 
  border: 1px solid rgba(255, 255, 255, 0.4); 
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%); 
  color: white; 
  font-size: 1.1rem; 
}
textarea { 
  height: auto;
  line-height: 1.53;
  padding: .45rem .54rem;
     
}
option {
  background-color: #fff;
  color: #181818; 
}

form { 
  --p:1.1rem;  
  min-width: 54%;
  max-width: 45rem;
  margin: 0 auto;   
}
.inputBox{  
  display: flex; 
  margin-bottom: .72rem;
}
form .inputBox:last-child{
  margin-bottom: 0;
}

form label {
  font-size: var(--p);
  white-space: nowrap;
  width: calc(var(--p) * 5);
  line-height: 2rem; 
  height: 2rem;
  text-align:right;  
}
.inputBox input,
.inputBox select {  
  width:calc(100% - var(--p) * 5);  
  line-height: 2rem; 
  height: 2rem;
}
.inputBox button {  
  display: block;   
  margin: .9rem auto 0; 
  min-width:8.1rem; 
  text-align: center; 
  font-size: var(--p);
  color: white;
  border-radius: 30px;
  padding: 7.2px 18px; 
  transition: all 0.54s; 
  background: rgba(255, 255, 255, 0.3); 
  border: 1px solid rgba(255, 255, 255, 0.4); 
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%); 
}
.inputBox button:hover{  
  transform: translateY(-3.6px); 
  cursor: pointer; 
}

#peopleBox,
#ratingBox {
  display: none;
}
