.elementor-554 .elementor-element.elementor-element-6586865{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-3970237 *//* =========================================================
   TECHNOLOGY PAGE GLOBAL STYLES
   ========================================================= */
.technology-page-wrapper {
    background-color: #011032; /* Deep Navy Theme */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.tech-container { max-width: 1200px !important; margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }

/* Buttons */
.bold-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 1px; text-decoration: none !important; transition: all 0.3s ease; border-radius: 8px; cursor: pointer; border: none; }
.btn-neon-massive { padding: 20px 45px; font-size: 18px; font-weight: 700; background-color: #00f2ff; color: #011032 !important; box-shadow: 0 0 20px rgba(0, 242, 255, 0.4); margin-top: 20px;}
.btn-neon-massive:hover { background-color: transparent !important; color: #00f2ff !important; border: 2px solid #00f2ff; box-shadow: 0 0 30px rgba(0, 242, 255, 0.6); transform: translateY(-3px); }

/* --- HERO SECTION --- */
.tech-hero-section { padding: 120px 0 60px; text-align: center; background: radial-gradient(circle at top, #011a4a 0%, #011032 90%); }
.neon-subtitle { color: #00f2ff; letter-spacing: 3px; font-size: 15px; font-weight: 600; margin-bottom: 15px; text-transform: uppercase; }
.main-tech-title { font-size: 56px; font-weight: 900; color: #ffffff !important; line-height: 1.2; margin-bottom: 25px; text-shadow: 0 0 25px rgba(0, 242, 255, 0.3); }
.tech-lead-text { color: #ccd6f6; font-size: 18px; line-height: 1.8; max-width: 850px; margin: 0 auto 50px; }

/* --- TECH STACK GRID --- */
.tech-stack-section { padding: 40px 0 100px; background-color: #010a1c; border-top: 1px solid rgba(0,242,255,0.05); }
.tech-stack-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

.tech-stack-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

/* Glassmorphism Hover Effect */
.tech-stack-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.4);
    background: rgba(0, 242, 255, 0.03);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.15);
}

/* Subtle background glow element inside card */
.tech-stack-card::before {
    content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(0,242,255,0.1) 0%, transparent 70%);
    border-radius: 50%; opacity: 0; transition: 0.5s;
}
.tech-stack-card:hover::before { opacity: 1; }

.tech-icon-wrapper { width: 70px; height: 70px; background: rgba(0, 242, 255, 0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; transition: 0.4s; border: 1px solid rgba(0,242,255,0.2); }
.tech-main-icon { font-size: 32px; color: #00f2ff; transition: 0.4s; }
.tech-stack-card:hover .tech-icon-wrapper { background: #00f2ff; transform: scale(1.1) rotate(5deg); }
.tech-stack-card:hover .tech-main-icon { color: #011032; }

.tech-card-title { color: #fff; font-size: 26px; font-weight: 700; margin-bottom: 15px; font-family: 'Poppins', sans-serif; }
.tech-card-desc { color: #8892b0; font-size: 16px; line-height: 1.8; margin-bottom: 30px; }

/* Tech Tags (Pills) */
.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-badge { background: rgba(255, 255, 255, 0.05); color: #ccd6f6; font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.1); transition: 0.3s; }
.tech-stack-card:hover .tech-badge { border-color: rgba(0, 242, 255, 0.3); color: #00f2ff; background: rgba(0, 242, 255, 0.05); }

/* --- CTA SECTION --- */
.tech-cta-section { padding: 80px 0 100px; background: #011032; border-top: 1px solid rgba(0,242,255,0.1); }
.cta-title { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 15px; }
.cta-subtitle { color: #8892b0; font-size: 18px; margin-bottom: 30px; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .tech-stack-grid { grid-template-columns: 1fr; gap: 30px; }
    .main-tech-title { font-size: 46px; }
}
@media (max-width: 768px) {
    .tech-container { padding: 0 20px !important; }
    .main-tech-title { font-size: 38px; }
    .tech-stack-card { padding: 35px 25px; }
    .tech-card-title { font-size: 22px; }
    .cta-title { font-size: 28px; }
}/* End custom CSS */