@import url(fonts.css);

:root {
    --bg: #080d18;
    --card: rgba(255, 255, 255, .08);
    --text: #fff;
    --accent: #00d9ff;
    --nav-text: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

.glass-nav {
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    margin: 10px auto;
    width: 95%;
}

.hero-section {
    height: 100vh;
}

.hero-img {
    height: 100vh;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.carousel-caption {
    bottom: 35%;
}

.section-padding {
    padding: 100px 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(157, 77, 224, 1);
    padding: 30px;
    border-radius: 20px;
    transition: .4s;
}

.feature-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 210, 0, 1);
    padding: 30px;
    border-radius: 20px;
    transition: .4s;
    text-align: center;
}


.testimonial-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 30px;
    border-radius: 20px;
    transition: .4s;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 217, 255, .4);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 217, 255, .4);
}

.timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.timeline-item {
    padding: 20px 30px;
    background: #111827;
    border-radius: 15px;
    color: #ffffff !important;
}

body.light-mode .timeline-item {
    background: #ffffff !important;
    color: #111827 !important;
    border: 1px solid #e5e7eb;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.tech-grid span {
    padding: 15px;
    background: #111827;
    text-align: center;
    border-radius: 12px;
    color: #ffffff !important;
}

body.light-mode .tech-grid span {
    background: #ffffff !important;
    color: #111827 !important;
    border: 1px solid #e5e7eb;
}

/* Force all child text/icons to inherit the correct color */
body.light-mode .timeline-item *,
body.light-mode .tech-grid span * {
    color: #111827 !important;
}

.footer {
    background: #030712;
    padding: 70px 0;
}

.back-to-top,
.whatsapp-btn {
    position: fixed;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.back-to-top {
    bottom: 90px;
    background: #00d9ff;
}

.whatsapp-btn {
    bottom: 20px;
    background: #25d366;
}

#loader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Light Mode */
body.light-mode {
    --bg: #f5f7fb;
    --text: #111827;
    --nav-text: #111827;
}

body.light-mode .glass-card,
body.light-mode .feature-card,
body.light-mode .testimonial-card {
    background: rgba(255, 255, 255, .8);
    color: #111827;
}

body.light-mode .footer {
    background: #e5e7eb;
    color: #111827;
}

body.light-mode .glass-nav {
    background: rgba(255, 255, 255, .75);
}

/*body.light-mode *{
    color:white;
}*/

/* Dark Mode */
body:not(.light-mode) {
    --nav-text: #ffffff;
}

.navbar .nav-link,
.navbar-brand {
    color: var(--nav-text) !important;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #00d9ff !important;
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 90px;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #00d9ff;
    color: #000;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;

    /* Visibility */
    box-shadow:
        0 0 15px rgba(37, 211, 102, .8),
        0 0 30px rgba(37, 211, 102, .5);

    border: 3px solid #ffffff;

    transition: all .3s ease;
}

.whatsapp-btn i {
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.whatsapp-btn:hover {
    transform: scale(1.12);
    color: #ffffff;
    box-shadow:
        0 0 20px rgba(37, 211, 102, 1),
        0 0 40px rgba(37, 211, 102, .8);
}

/* ====================================
   SECTION BACKGROUNDS
==================================== */

#home {
    background: linear-gradient(135deg,
            #050816 0%,
            #0f172a 50%,
            #111827 100%);
}

#about {
    background: linear-gradient(135deg,
            #30CFD0 0%,
            #330867 100%);
}

#services {
    background: linear-gradient(135deg, #0F0C29 0%, #302B63 50%, #0F0C29 100%);
}

#why {
    background: linear-gradient(135deg, #084742 0%, #1a6e3a 100%);
}

#process {
    background: linear-gradient(135deg, #022058 0%, #005BEA 100%);
}

#tech {
    background: linear-gradient(135deg,
            #082f49 0%,
            #0f172a 100%);
}

#industries {
    background: linear-gradient(135deg, #141E30 0%, #243B55 100%);
}

#portfolio {
    background: linear-gradient(135deg, #1E130C 0%, #9A8478 100%);
}

.portfolio-card {
    transition: .5s ease;
}

.portfolio-card:hover {
    transform:
        translateY(-10px) scale(1.05);

    box-shadow:
        0 0 25px rgba(0, 217, 255, .4);
}

#testimonials {
    background: linear-gradient(135deg, #ED213A 0%, #93291E 100%);
}

#faq {
    background: linear-gradient(135deg,
            #0f172a 0%,
            #1e3a8a 100%);
}

#contact {
    background: linear-gradient(135deg, #1A2980 0%, #26D0CE 100%);
}

.newsletter {
    background: linear-gradient(135deg,
            #164e63 0%,
            #0f172a 100%);
}

.footer {
    background: linear-gradient(135deg, #000000 0%, #434343 50%, #FFD700 100%);
}

body.light-mode #about {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
}

body.light-mode #services {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

body.light-mode #why {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
}

body.light-mode #process {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
}

body.light-mode #tech {
    background: linear-gradient(135deg, #ecfeff, #cffafe);
}

body.light-mode #industries {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

body.light-mode #portfolio {
    background: linear-gradient(135deg, #f0f9ff, #dbeafe);
}

body.light-mode #testimonials {
    background: linear-gradient(135deg, #faf5ff, #ede9fe);
}

body.light-mode #faq {
    background: linear-gradient(135deg, #eff6ff, #bfdbfe);
}

body.light-mode #contact {
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}

body.light-mode .newsletter {
    background: linear-gradient(135deg, #ecfeff, #cffafe);
}

body.light-mode .footer {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 217, 255, .08);
    filter: blur(120px);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(139, 92, 246, .08);
    filter: blur(120px);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

.glass-card,
.feature-card,
.portfolio-card,
.testimonial-card {
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.glass-card:hover,
.feature-card:hover,
.portfolio-card:hover,
.testimonial-card:hover {
    transform:
        translateY(-12px) scale(1.03);

    box-shadow:
        0 0 30px rgba(0, 217, 255, .35);
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(0, 217, 255, .2);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 217, 255, .6);
    }

    100% {
        box-shadow: 0 0 10px rgba(0, 217, 255, .2);
    }
}

.glass-card,
.feature-card {
    animation: glowPulse 3s infinite ease-in-out;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.glass-card,
.feature-card,
.tech-grid span {
    animation: floating 4s ease-in-out infinite;
}

.about-span {
    font-family: 'AlexandriaFLF', sans-serif;
}

.ser1-span {
    font-family: 'TimeRoman', sans-serif;
    font-size: 20px;
}

.ser2-span {
    font-family: 'TrajanProBold', sans-serif;
    font-size: 20px;
    font-weight: 100;
    font-style: normal;
    color: #ffd200;
}

.ser3-span {
    font-family: 'AlexandriaFLF', sans-serif;
    font-weight: 100;
    font-style: normal;
}

/*==============================
        PROCESS SECTION
==============================*/

.process-wrapper {

    position: relative;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 35px;

    margin-top: 60px;

}

.process-wrapper::before {

    content: "";

    position: absolute;

    top: 35px;

    left: 5%;

    width: 90%;

    height: 2px;

    background: linear-gradient(90deg,
            #00d9ff,
            #3b82f6,
            #8b5cf6);

    z-index: 0;

}

.process-step {

    position: relative;

    z-index: 1;

    background: rgba(255, 255, 255, .05);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 22px;

    padding: 35px;

    text-align: center;

    transition: .4s;

}

.process-step:hover {

    transform: translateY(-12px);

    border-color: #ffd200;

    box-shadow:

        0 15px 40px rgba(0, 217, 255, .20);

}

.step-number {

    position: absolute;

    top: 20px;

    right: 20px;

    font-size: 34px;

    font-weight: 700;

    color: rgba(255, 255, 255, .08);

}

.step-icon {

    width: 85px;

    height: 85px;

    margin: auto;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #00d9ff,
            #2563eb);

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 25px;

    box-shadow:

        0 10px 30px rgba(0, 217, 255, .30);

}

.step-icon i {

    color: #fff;

    font-size: 34px;

}

.process-step h4 {

    color: #fff;

    margin-bottom: 15px;

}

.process-step p {

    color: #cbd5e1;

    line-height: 1.8;

}

/* Hover */

.process-step:hover .step-icon {

    transform: rotate(8deg) scale(1.08);

    transition: .4s;

}

/* Light Mode */

body.light-mode .process-step {

    background: rgba(255, 255, 255, .85);

    border: 1px solid rgba(0, 0, 0, .08);

}

body.light-mode .process-step h4 {

    color: #111827;

}

body.light-mode .process-step p {

    color: #4b5563;

}

body.light-mode .step-number {

    color: rgba(17, 24, 39, .10);

}

/* Mobile */

@media(max-width:991px) {

    .process-wrapper::before {

        display: none;

    }

}

/*=====================================
 TECHNOLOGY SECTION
======================================*/

.technology-section {

    position: relative;

    overflow: hidden;

}

.section-tag {

    display: inline-block;

    padding: 10px 25px;

    border-radius: 50px;

    background: rgba(0, 217, 255, .12);

    border: 1px solid rgba(0, 217, 255, .25);

    color: #00d9ff;

    letter-spacing: 2px;

    font-size: 14px;

    font-weight: 600;

}

.section-title {

    font-size: 48px;

    font-weight: 700;

    color: #fff;

    line-height: 1.3;

}

.section-title span {
    background: linear-gradient(90deg, #00d9ff, #7c3aed);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section-description {

    color: #cbd5e1;

    font-size: 18px;

    max-width: 850px;

    margin: auto;

    line-height: 1.9;

}

/*========================*/

.technology-card {

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 25px;

    backdrop-filter: blur(20px);

    padding: 45px;

    transition: .4s;

    overflow: hidden;

}

.technology-card:hover {

    transform: translateY(-10px);

    border-color: #00d9ff;

    box-shadow:

        0 20px 50px rgba(0, 217, 255, .15);

}

/*========================*/

.technology-icon {

    width: 100px;

    height: 100px;

    border-radius: 20px;

    background: linear-gradient(135deg, #00d9ff, #2563eb);

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 30px;

}

.technology-icon i {

    color: #fff;

    font-size: 42px;

}

/*========================*/

.technology-heading {

    color: #fff;

    font-size: 32px;

    margin-bottom: 20px;

}

.technology-text {

    color: #cbd5e1;

    line-height: 1.9;

}

/*========================*/

.tech-badges {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    justify-content: center;

}

.tech-badge {

    background: rgba(255, 255, 255, .06);

    border: 1px solid rgba(255, 255, 255, .08);

    color: #fff;

    border-radius: 50px;

    padding: 15px 28px;

    font-size: 16px;

    font-weight: 500;

    transition: .35s;

}

.tech-badge i {

    color: #00d9ff;

    margin-right: 10px;

    font-size: 20px;

}

.tech-badge:hover {

    transform: translateY(-5px);

    background: #00d9ff;

    color: #fff;

    border-color: #00d9ff;

    box-shadow: 0 15px 30px rgba(0, 217, 255, .25);

}

.tech-badge:hover i {

    color: #fff;

}

/*=========================
 LIGHT MODE
==========================*/

body.light-mode .technology-card {

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, .08);

}

body.light-mode .technology-heading {

    color: #111827;

}

body.light-mode .technology-text {

    color: #475569;

}

body.light-mode .section-title {

    color: #111827;

}

body.light-mode .section-description {

    color: #475569;

}

body.light-mode .tech-badge {

    background: #f8fafc;

    color: #111827;

    border: 1px solid #dbeafe;

}

/*========================*/

@media(max-width:992px) {

    .section-title {

        font-size: 36px;

    }

    .technology-card {

        padding: 30px;

    }

    .tech-badge {

        width: 100%;

        justify-content: center;

        text-align: center;

    }

}

.technology-section {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(0, 217, 255, .12);
    color: #00d9ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.section-desc {
    max-width: 850px;
    margin: auto;
    color: #cbd5e1;
    line-height: 1.8;
}

.tech-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: .3s;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: #00d9ff;
}

.tech-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tech-header i {
    font-size: 28px;
    color: #00d9ff;
    margin-right: 15px;
}

.tech-header h4 {
    margin: 0;
    color: #fff;
}

.tech-card p {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-list span {
    padding: 8px 14px;
    border-radius: 30px;
    background: rgba(0, 217, 255, .08);
    border: 1px solid rgba(0, 217, 255, .15);
    color: #fff;
    font-size: 14px;
}

body.light-mode .section-title,
body.light-mode .tech-header h4 {
    color: #111827;
}

body.light-mode .section-desc,
body.light-mode .tech-card p {
    color: #475569;
}

body.light-mode .tech-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

body.light-mode .tech-list span {
    background: #f1f5f9;
    color: #111827;
    border: 1px solid #dbeafe;
}


/*=========================
 INDUSTRIES SECTION
==========================*/

.industries {
    padding: 100px 8%;
    background:
        radial-gradient(circle at top right, #143a72 0%, transparent 30%),
        radial-gradient(circle at bottom left, #0f3c5a 0%, transparent 30%),
        #071320;
    overflow: hidden;
}

.container {
    max-width: 1250px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/*.section-title span{
    color:#00d4ff;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:15px;
}*/

.section-title {
    font-size: 48px;
    margin: 15px 0;
    font-weight: 700;
    line-height: 1.2;
}

.section-title p {
    max-width: 760px;
    margin: auto;
    color: #b6c8d8;
    line-height: 1.8;
    font-size: 17px;
}

/* Cards */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    position: relative;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 35px;
    transition: .4s;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #00d4ff, #3b82f6);
}

.card:hover {
    transform: translateY(-12px);
    border-color: #00d4ff;
    box-shadow: 0 18px 40px rgba(0, 212, 255, .18);
}

.icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    background: linear-gradient(135deg, #00d4ff, #1d4ed8);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 212, 255, .25);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffd200;
}

.card p {
    color: #c6d3df;
    line-height: 1.8;
    font-size: 15px;
}

/* Decorative */

.card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 120px;
    height: 120px;
    background: rgba(0, 212, 255, .08);
    border-radius: 50%;
}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 34px;
    }

    .section-title p {
        font-size: 16px;
    }

}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.55);
    background-size: 55% 55%;
    border: 2px solid #d4af37;
    transition: .3s;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #d4af37;
    transform: scale(1.1);
}


.contact-section {
    background: #08111f;
}

.contact-card,
.contact-info {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.contact-card h4,
.contact-info h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-info p {
    color: #cfd8dc;
}

.contact-card .form-control {
    background: #101c2c;
    border: 1px solid #2d3d55;
    color: #fff;
    border-radius: 10px;
    padding: 14px;
}

.contact-card .form-control:focus {
    background: #101c2c;
    color: #fff;
    border-color: #ffc107;
    box-shadow: none;
}

.contact-card .form-control::placeholder {
    color: #adb5bd;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item strong {
    color: #fff;
}

.contact-item div {
    color: #cfd8dc;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #ffc107;
}

.btn-warning {
    font-weight: 600;
    border-radius: 10px;
}

.btn-success,
.btn-outline-warning {
    border-radius: 8px;
}

.contact-section {
    background: var(--bg);
}

.contact-card,
.contact-info {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
}

.contact-card h4,
.contact-info h4,
.contact-item strong,
.contact-item a {
    color: var(--text);
}

.contact-info p,
.contact-item div {
    color: var(--text-light);
}

.contact-card .form-control {
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border);
}

.contact-card .form-control::placeholder {
    color: var(--text-light);
}


/* Light Theme */
body.light-mode.contact-section {
    background: #f8f9fa;
}

body.light-mode.contact-card,
body.light-mode.contact-info {
    background: #ffffff;
    border: 1px solid #e9ecef;
}

body.light-mode.contact-card h4,
body.light-mode.contact-info h4,
body.light-mode.contact-item strong,
body.light-mode.contact-item a {
    color: #212529;
}

body.light-mode.contact-info p,
body.light-mode.contact-item div {
    color: #6c757d;
}

body.light-mode.contact-card .form-control {
    background: #fff;
    color: #212529;
    border: 1px solid #ced4da;
}

body.light-mode.contact-card .form-control::placeholder {
    color: #6c757d;
}