.navbar {
    background: linear-gradient(rgba(0, 0, 0, 0.897),
            rgb(0, 0, 0));

}
.before_footer a, .before_footer h5{
    color: white !important;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff !important;
}

.nav-link {
    color: #ffffff !important;
    margin-left: 20px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #0d6efd !important;
}

* {
    box-sizing: border-box;
}



.typing-wrapper {
    font-size: 32px;
    font-weight: 700;
    color: #2B0000;
    white-space: nowrap;
    overflow: hidden;
    animation: moveText 10s ease-in-out infinite alternate;
}


@keyframes moveText {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(60px);
    }
}


.cursor {
    display: inline-block;
    width: 3px;
    height: 1.3em;
    background: #0d6efd;
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.site {
    color: rgb(12, 36, 97) !important;
}

.site:hover {
    color: cornflowerblue !important;
    text-decoration: none;
}

a {
    text-decoration: none !important;
}

/* text */
.hero-section p {
    color: black;
    line-height: 1.8;
    font-size: 14px;


}

/* links primary */
.hero-section a {

    text-decoration: none;
}

.hero-section a:hover {
    text-decoration: underline;
}

/* buttons */
.hero-btn {
    background: rgb(12, 36, 97);
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: .3s;
}

.hero-btn:hover {
    background: transparent;
    border: 1px solid rgb(12, 36, 97);
    color: rgb(12, 36, 97);
}

/* image */
.hero-img img {
    border-radius: 15px;


    box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
}

.about-section {

    color: #fff;
    /* Text color on background */
    padding: 80px 20px;
}

.about-section .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    /* Example color for title */
}

.about-section .about-text {
    font-size: 1rem;
    line-height: 1.8;
}

.about-section .skill {
    margin-bottom: 30px;
}

.about-section .skill-title {
    font-size: 1.5rem;
    color: rgb(12, 36, 97);
    margin-bottom: 10px;
    font-weight: 700;
}

/* footer {
    background-color: #2B0000;
    color: #F5F5F5;
    padding: 40px 20px;
} */
.about-section p {
    color: black;
}

.border-top-white {
    border-top: 1px solid rgba(0, 0, 0, 0.776);
}

.b-des {

    border-top: 1px solid rgba(0, 0, 0, 0.776);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section .row {
        flex-direction: column;
    }

    .about-section {
        padding: 50px 15px;
    }

    .about-section .section-title {
        font-size: 1.8rem;
    }

    .about-section .skill-title {
        font-size: 1.3rem;
    }
}

/* Footer container */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px 20px 20px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 220px;
}


.footer-section h3 {
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1.2px;
    font-size: 18px;
}

/* Lists styling */
.footer-section ol,
.footer-section ul {
    padding-left: 20px;
    margin: 0;
    list-style-position: inside;
}

.footer-section ol {
    list-style-type: decimal;
}

.footer-section ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

/* Links styling */
.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00acee;
    /* Light blue hover */
    text-decoration: underline;
}

/* Paragraph spacing */
.footer-section p {
    margin-bottom: 15px;
}

/* Horizontal line */
.footer-section hr {
    border: 0;
    border-top: 1px solid #f0efef;
    margin: 20px 0;
}

/* Social icons container */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* Make images for social icons 30x30 */
.social-icons img {
    width: 30px;
    height: 30px;
    object-fit: contain;

    transition: filter 0.3s ease;
}


/* Footer bottom section */
.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: #bbb;
}

.footer-bottom p {
    margin: 5px 10px;
}


@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-section {
        min-width: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom p {
        margin: 5px 0;
    }
}

@media (min-width: 768px) {
    .container {
        width: 100%;
    }
}

/* Base settings */
.services-section {
    background: #f8f9fa;
}

.card-body {
    background-color: #009688;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    border-radius: 10px;
}

.service-card {
    border-radius: 15px;
    color: rgb(12, 36, 97);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card .card-title {
    font-weight: 600;
    font-size: 20px;
    color: white;
}

.service-card .card-text {
    font-size: 15px;
    margin-bottom: 15px;
    color: white;
}

/* Icon wrapper */
.icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-icon {
    font-size: 30px;
    color: #fff;
}


/* Payment Card */
.payment-card {
    background-color: rgb(12, 36, 97);
}

.payment-card .icon-wrap {
    background: rgba(255, 255, 255, 0.25);
}

/* SMS Card */
.sms-card {
    background-color: rgb(12, 36, 97);
}

.sms-card .icon-wrap {
    background: rgba(255, 255, 255, 0.25);
}

/* Hosting Card */
.hosting-card {
    background-color: rgb(12, 36, 97);
}

.hosting-card .icon-wrap {
    background: rgba(255, 255, 255, 0.25);
}

/* Buttons */
.service-card .btn {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Row Box ===== */
.software-row {
    border: 1px solid #1e5bff;
    margin-bottom: 20px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

/* ===== Columns ===== */
.software-col {
    padding: 20px;
    border-right: 1px solid #1e5affbb;
    align-items: center;
}

/* Remove last border */
.software-col:last-child {
    border-right: none;
}

/* ===== Icon ===== */
.software-icon {
    justify-content: center;
}

.software-icon img {
    width: 80px;
}

/* ===== Info ===== */
.software-title {
    font-size: 20px;
    font-weight: bold;
}

.software-meta {
    font-size: 14px;
    margin-top: 5px;
}

.software-meta span {
    font-weight: bold;
    margin-right: 10px;
}

/* ===== Price ===== */
.software-price {
    font-size: 22px;
    font-weight: bold;
    justify-content: center;
}


@media(max-width:768px) {

    .software-row {
        flex-direction: column;
    }

    .software-col {
        width: 100% !important;
        border-right: none;
        border-bottom: 1px solid #1e5bff;
        justify-content: center;
        text-align: center;
    }

    .software-col:last-child {
        border-bottom: none;
    }

    .software-meta {
        margin-top: 8px;
    }

    .download-btn a {
        width: 100%;
        max-width: 280px;
    }
}

.about-text {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
}

.one-des {
    text-align: justify !important;


    color: black;
}

.tittle-1 {
    color: #0C2461;
}











@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 15px;
        border-radius: 10px;
    }
}

.custom-toggler {
    border: none;
    background: none;
}

.menu-icon {
    font-size: 28px;
    color: #fff;
    line-height: 1;
}

 .custom-pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin: 50px 0;
    }

    .custom-pagination a,
    .custom-pagination span {
        min-width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.25s ease;
        border: 1px solid #dee2e6;
        color: #0d6efd;
        background: #fff;
    }

    .custom-pagination a:hover {
        background: #0d6efd;
        color: #fff;
        transform: translateY(-2px);
    }

    .custom-pagination .active {
        background: #0d6efd;
        color: #fff;
        border-color: #0d6efd;
        pointer-events: none;
        box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
    }

    .custom-pagination .dots {
        pointer-events: none;
        color: #6c757d;
        border: none;
    }

    .lesson-card {
        border-radius: 14px;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border-left: 5px solid #0d6efd;
    }

    .lesson-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

    .lesson-question {
        font-size: 1.1rem;
        font-weight: 600;
        color: #0d6efd;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .lesson-question i {
        transition: transform 0.3s ease;
    }

    .lesson-question.collapsed i {
        transform: rotate(0deg);
    }

    .lesson-question:not(.collapsed) i {
        transform: rotate(180deg);
    }

    .lesson-answer {
        font-size: 1rem;
        color: #333;
        line-height: 1.7;
        white-space: pre-line;
        padding-top: 15px;
    }

    .lesson-index {
        font-size: 0.85rem;
        font-weight: 500;
        color: #6c757d;
    }