.icon-size-1-techi {
    width: 34px;
    height: 34px;
    fill: #fff;
}

.text-content-p1-techi {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.text-content-p2-techi {
    font-size: 15px;
    font-weight: 500;
    color: #d8d6d6;
}


.text-content-p4-techi {}


/* Product Status Badge */

/* Product Status Badge Comming Soon */

.product-status-badge-comming-soon {
    position: absolute;
    top: 20px;
    right: -48px;
    width: 180px;
    text-align: center;
    background: #db8708;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    transform: rotate(45deg);
    z-index: 99;
    box-shadow: 0 8px 20px rgba(255, 152, 0, .35);
    overflow: hidden;
}

/* Shine Effect */

.product-status-badge-comming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);
    transform: skewX(-25deg);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% {
        left: -120%;
    }

    35% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.product-status-badge-avaliable {
    position: absolute;
    top: 20px;
    right: -48px;
    width: 180px;
    text-align: center;
    background: #1db80c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    transform: rotate(45deg);
    z-index: 99;
    box-shadow: 0 8px 20px rgba(21, 255, 0, 0.35);
    overflow: hidden;
}

/* Shine Effect */

.product-status-badge-avaliable::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);
    transform: skewX(-25deg);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% {
        left: -120%;
    }

    35% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.coming-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    margin-right: 6px;
    animation: comingPulse 1.8s infinite;
}

@keyframes comingPulse {

    0% {
        opacity: .4;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: .4;
        transform: scale(.8);
    }

}




.product-live-btn {
    position: relative;
    overflow: hidden;
}

.product-live-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid #4a81d3;
    border-radius: inherit;
    animation: liveBorder 2.5s infinite;
}

@keyframes liveBorder {

    0% {
        opacity: .25;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .25;
    }

}


.process-section {
    padding: 90px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #6c757d;
}

.process-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

/* Center Line */

.process-wrapper::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 42px;
    height: 3px;
    background: #E7EEF8;
    z-index: 0;
}

.process-item {
    width: 16.66%;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: .35s;
    padding: 0 10px;
}

.process-icon {
    width: 84px;
    height: 84px;
    margin: auto;
    border-radius: 50%;
    background: #2c3066;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    position: relative;
    transition: .35s;
    animation: pulse 2.5s infinite;
}

.process-icon::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed #377DB9;
    animation: spin 12s linear infinite;
    opacity: .3;
}

.process-item h4 {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 600;
}

.process-item p {
    color: #777;
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
}

.process-item:hover {
    transform: translateY(-8px);
}

.process-item:hover .process-icon {
    background: #1F5D91;
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(55, 125, 185, .25);
}

/* Number */

.process-item::before {
    content: attr(data-step);
    position: absolute;
    top: 27px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    color: #377DB9;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #377DB9;
}

/* Pulse */

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(55, 125, 185, .4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(55, 125, 185, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(55, 125, 185, 0);
    }

}

/* Spin */

@keyframes spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@media(max-width:991px) {

    .process-wrapper::before {
        display: none;
    }

    .process-item {
        width: 50%;
        margin-bottom: 50px;
    }

}

@media(max-width:576px) {

    .process-item {
        width: 100%;
    }

}




.feature-box {
    position: relative;
    background: #1f2243;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    overflow: hidden;
    transition: all .35s ease;
    text-align: center;
}

.feature-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: #4D76FF;
    transition: .4s ease;
}

.feature-box::after {
    content: "";
    position: absolute;
    left: 32px;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #4D76FF;
    transition: .4s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: #4D76FF;
    background: #191b36;
    box-shadow: 0 15px 35px rgba(77, 118, 255, .15);
}

.feature-box:hover::before {
    height: 100%;
}

.feature-box:hover::after {
    width: 70%;
}

.feature-no {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #4D76FF;
    letter-spacing: 2px;
}

.feature-box h4 {
    color: #fff;
    transition: .3s;
}

.feature-box p {
    color: #a7a7a7;
    line-height: 1.7;
}

.feature-link {
    display: inline-block;
    color: #4D76FF;
    font-weight: 600;
    transition: .3s;
}

.feature-box:hover .feature-link {
    transform: translateX(8px);
}

.feature-box:hover h4 {
    color: #4D76FF;
}



/* Team CSS */

.team-card {
    position: relative;
    background: #fff;
    transition: .45s;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.team-bg {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #377DB9, #625ef3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    z-index: 5;
    transition: .4s;
}

.team-card:hover .team-avatar {
    transform: rotate(10deg) scale(1.08);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: .18;
}

.blob-1 {
    width: 220px;
    height: 220px;
    background: #fff;
    top: -60px;
    left: -70px;
    animation: floatOne 8s linear infinite;
}

.blob-2 {
    width: 180px;
    height: 180px;
    background: #fff;
    bottom: -70px;
    right: -60px;
    animation: floatTwo 10s linear infinite;
}

.team-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, .15) 2px, transparent 3px);
    background-size: 120px 120px;
    animation: moveDots 12s linear infinite;
}

.team-card:hover .team-bg {
    background: linear-gradient(135deg, #625ef3, #377DB9);
}

.social-icons a {
    transition: .35s;
}

.social-icons a:hover {
    transform: translateY(-4px);
}

@keyframes floatOne {

    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, 25px) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }

}

@keyframes floatTwo {

    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-25px, -20px);
    }

    100% {
        transform: translate(0, 0);
    }

}

@keyframes moveDots {

    from {
        background-position: 0 0, 0 0, 0 0;
    }

    to {
        background-position: 120px 120px, -120px 120px, 120px -120px;
    }

}



/* video css */

/* ==========================================
   Hero Background Video
========================================== */

.jarallax {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -3;
    pointer-events: none;
}

/* Overlay மேலேயே இருக்கட்டும் */
.sw-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
}

/* Content */
.jarallax .container {
    position: relative;
    z-index: 5;
}

/* Mobile Support */

@media(max-width:768px) {

    .hero-video {
        width: auto;
        height: 100%;
        min-width: 100%;
    }

}



/* Icon Animation CSS */

.icon svg {
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

/* Background Image Section Css */

.hero-video-section {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #07111f url("images/background/1.webp") center/cover no-repeat;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

.hero-video-section .sw-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video-section .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .hero-video-section {
        min-height: 80vh;
        padding: 80px 0;
    }
}


/* Contact Form CSS */

.contact-section-light {
    background-color: #f8fafc;
    color: #1e293b;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* Ambient Accent Glow (Light) */
.contact-section-light::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.contact-section-light::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.contact-section-light .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.contact-section-light .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.contact-section-light .col-12 {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.contact-section-light .col-lg-5 {
    width: 41.666%;
    padding: 0 15px;
    box-sizing: border-box;
}

.contact-section-light .col-lg-7 {
    width: 58.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.contact-section-light .col-md-6 {
    width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
}

@media (max-width: 992px) {

    .contact-section-light .col-lg-5,
    .contact-section-light .col-lg-7 {
        width: 100%;
    }

    .contact-section-light .info-panel {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .contact-section-light .col-md-6 {
        width: 100%;
        padding: 0;
    }
}

/* Section Header */
.contact-section-light .header-box {
    text-align: center;
    margin-bottom: 60px;
}

.contact-section-light .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-section-light .contact-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin: 0 0 16px;
}

.contact-section-light .contact-lead {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 920px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Left Column: White Info Panel */
.contact-section-light .info-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 44px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.contact-section-light .info-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}

.contact-section-light .info-header p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 40px;
}

.contact-section-light .info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-section-light .info-card-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-section-light .info-card-item:hover {
    background: rgba(37, 99, 235, 0.04);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateX(6px);
}

.contact-section-light .icon-glow {
    width: 52px;
    height: 52px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.contact-section-light .info-card-item:hover .icon-glow {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.contact-section-light .info-text span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 0px;
}

.contact-section-light .info-text a,
.contact-section-light .info-text p {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-section-light .info-text a:hover {
    color: #2563eb;
}

/* Right Column: White Form Panel */
.contact-section-light .form-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.contact-section-light .input-row {
    display: flex;
    margin: 0 -18px;
}

.contact-section-light .field-group {
    position: relative;
    margin-bottom: 24px;
}

/* Inputs & Textarea */
.contact-section-light .form-input {
    width: 100%;
    padding: 16px 18px 16px 48px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    color: #0f172a;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-section-light .form-input::placeholder {
    color: #94a3b8;
}

.contact-section-light .form-input:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-section-light .field-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    transition: color 0.3s ease;
    pointer-events: none;
}

.contact-section-light .form-input:focus~.field-icon {
    color: #2563eb;
}

.contact-section-light textarea.form-input {
    min-height: 140px;
    resize: vertical;
    padding-top: 16px;
}

.contact-section-light textarea.form-input~.field-icon {
    top: 20px;
    transform: none;
}

/* Primary Submit Button */
.contact-section-light .btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.35);
}

.contact-section-light .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -4px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.contact-section-light .btn-submit i {
    transition: transform 0.3s ease;
}

.contact-section-light .btn-submit:hover i {
    transform: translateX(4px) translateY(-2px);
}

/* reCAPTCHA Layout */
.contact-section-light .recaptcha-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-start;
}

/* Alert Messages */
.contact-section-light .alert-box {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-top: 20px;
    display: none;
    align-items: center;
    gap: 10px;
}

.contact-section-light .alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.contact-section-light .alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

