html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0 !important;
}
/* General Page Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

section {
    padding: 80px 0;
}

h1, h2, h3 {
    font-weight: 700;
}

p {
    line-height: 1.7;
}
.tu-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f0c29; /* Dark blue background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.tu-preloader_holder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tu-loader {
    width: 80px;
    height: 20px; /* Rectangle shape */
    background-color: #fff; /* White color */
    animation: loaderAnimation 1s linear infinite;
    border-radius: 4px;
}

@keyframes loaderAnimation {
    0% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(1.5);
    }

    100% {
        transform: scaleX(1);
    }
}
.credits {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on small screens */
    align-items: center;
    justify-content: center;
    gap: 180px; /* Space between paragraph and list */
}

    .credits p {
        margin: 0;
        white-space: nowrap; /* Prevent line breaks on larger screens */
    }

.tu-footercopyright_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allow links to wrap on small screens */
}

    .tu-footercopyright_list li a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
    }

        .tu-footercopyright_list li a:hover {
            color: #1DA1F2;
        }

.tu-footer {
    background: linear-gradient(90deg, #0f0c29, #302b63, #24243e);
    padding: 20px 0;
}

.tu-footer-contact i {
    margin-right: 8px;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .credits {
        flex-direction: column; /* Stack paragraph and list vertically */
        gap: 15px; /* Smaller gap on mobile */
    }

        .credits p {
            white-space: normal; /* Allow line breaks */
            text-align: center;
        }

    .tu-footercopyright_list {
        justify-content: center; /* Center the links */
    }
}

.footer-social-inline {
    display: flex;
    justify-content: center;
    gap: 25px; /* space between icons */
    padding: 0;
    margin: 10px 0;
}

    .footer-social-inline li {
        list-style: none;
    }

        .footer-social-inline li a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px; /* circle size */
            height: 40px; /* circle size */
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2); /* circle background */
            color: #fff;
            font-size: 18px;
            transition: 0.3s;
        }

            /* Hover Effect */
            .footer-social-inline li a:hover {
                background: #1DA1F2; /* blue highlight on hover */
                color: #fff;
            }

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: left;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}

.hero-bg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(60%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero span {
    color: #47aeff;
}

.btn-get-started {
    background: #47aeff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}

    .btn-get-started:hover {
        background: #0056b3;
    }

.btn-watch-video {
    font-weight: 500;
    color: #fff;
}

    .btn-watch-video i {
        font-size: 1.8rem;
        margin-right: 8px;
        color: #47aeff;
    }

/* About Section */
.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.icon-box {
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: radial-gradient(circle, #ee0979, #8e2de2, #4a00e0);
}

    .icon-box:hover {
        transform: translateY(-6px);
        box-shadow: 0px 6px 18px rgba(0,0,0,0.12);
    }

    .icon-box i {
        font-size: 2rem;
        color: #47aeff;
        margin-bottom: 12px;
        display: block;
    }

/* Features Section */
.features-item {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

    .features-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }

    .features-item i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

/* Details Section */
.details h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.details ul {
    list-style: none;
    padding: 0;
}

.details li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

    .details li i {
        color: #47aeff;
        margin-right: 8px;
        font-size: 1.3rem;
    }

.details img {
    border-radius: 15px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.12);
}

.page-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #4e73df 0%, #1cc88a 100%);
    background-attachment: fixed;
    padding: 30px;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.btn {
    border-radius: 25px;
    transition: all 0.2s ease-in-out;
}

    .btn:hover {
        transform: scale(1.05);
    }

.demo {
    background: #F2F2F2;
}

.form-container {
    background: #ecf0f3;
    font-family: 'Nunito', sans-serif;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 14px 14px 20px #cbced1, -14px -14px 20px white;
}

    .form-container .form-icon {
        color: #ac40ab;
        font-size: 55px;
        text-align: center;
        line-height: 100px;
        width: 100px;
        height: 100px;
        margin: 0 auto 15px;
        border-radius: 50px;
        box-shadow: 7px 7px 10px #cbced1, -7px -7px 10px #fff;
    }

    .form-container .title {
        color: #ac40ab;
        font-size: 25px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
        margin: 0 0 20px;
    }

    .form-container .form-horizontal .form-group {
        margin: 0 0 25px 0;
    }

        .form-container .form-horizontal .form-group label {
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
        }

    .form-container .form-horizontal .form-control {
        color: #333;
        background: #ecf0f3;
        font-size: 15px;
        height: 50px;
        padding: 20px;
        letter-spacing: 1px;
        border: none;
        border-radius: 50px;
        box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px #fff;
        display: inline-block;
        transition: all 0.3s ease 0s;
    }

        .form-container .form-horizontal .form-control:focus {
            box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px #fff;
            outline: none;
        }

        .form-container .form-horizontal .form-control::placeholder {
            color: #808080;
            font-size: 14px;
        }

    .form-container .form-horizontal .btn {
        color: #000;
        background-color: #ac40ab;
        font-size: 15px;
        font-weight: bold;
        text-transform: uppercase;
        width: 100%;
        padding: 12px 15px 11px;
        border-radius: 20px;
        box-shadow: 6px 6px 6px #cbced1, -6px -6px 6px #fff;
        border: none;
        transition: all 0.5s ease 0s;
    }

        .form-container .form-horizontal .btn:hover,
        .form-container .form-horizontal .btn:focus {
            color: #fff;
            letter-spacing: 3px;
            box-shadow: none;
            outline: none;
        }

.responsive-table {
    width: 100%;
    table-layout: fixed;
    font-size: 0.9rem;
}

    .responsive-table th,
    .responsive-table td {
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        vertical-align: middle;
    }

@media (max-width: 576px) {
    .responsive-table {
        font-size: 0.8rem;
    }

        .responsive-table td a {
            display: block;
            margin-bottom: 4px;
        }
}

/* Prevent email text from wrapping */
.email-col {
    white-space: nowrap;
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Give action column enough width and prevent wrapping */
.action-col {
    width: 240px;
    white-space: nowrap;
}

    /* Ensure buttons stay inline */
    .action-col .btn {
        min-width: 70px;
    }

.tu-menu {
    border: none;
    background: none;
    font-size: 28px;
    color: #333;
}

.nav-link {
    font-weight: 500;
    color: #333;
    padding: 8px 15px;
}

    .nav-link:hover {
        color: black;
    }
/* Make offcanvas slide in from left and take half screen width */
.offcanvas-start {
    width: 50% !important; /* take half screen width */
    max-width: 400px; /* optional for large screens */
    background-color: #fff;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.2);
}

/* Align items nicely on left side */
.offcanvas-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

    /* Style navigation links */
    .offcanvas-body .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: uppercase;
        color: #333;
        padding: 10px 0;
        width: 100%;
        text-align: left;
        transition: color 0.3s ease;
    }

        .offcanvas-body .nav-link:hover {
            color: #007bff;
        }

.tu-menu {
    margin-left: auto; /* push hamburger to right */
}

.features.section {
    position: relative;
    overflow: hidden;
}

.social-feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px 10px;
    transition: all 0.4s ease;
    cursor: pointer;
}

    .social-feature-item:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.1);
    }

.gradient-icon {
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.social-feature-item:hover .gradient-icon {
    transform: scale(1.2);
}

/* Platform color themes */
.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.facebook {
    color: #1877f2;
}

.twitter {
    color: #1da1f2;
}

.youtube {
    color: #ff0000;
}

.linkedin {
    color: #0077b5;
}

.gradient-icon {
    animation: glow 2s infinite ease-in-out;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255,255,255,0.2);
    }

    50% {
        text-shadow: 0 0 20px rgba(255,255,255,0.5);
    }
}

.impact-box {
    background-color: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

    .impact-box:hover {
        transform: translateY(-8px);
        background-color: rgba(255, 255, 255, 0.15);
    }
