body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8f9fc;
}

p {
    font-size: 18.5px;
    line-height: 32px;
}
.custom-navbar {
    background: linear-gradient(90deg, #06142f, #0a2350);
    padding: 12px 0;
}

.logo-box {
    font-size: 28px;
    color: #f6b93b;
}

.hero-section {
    padding: 80px 0;
    background: #fffdf8;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title span {
    color: #007bff;
}

.hero-text {
    margin: 25px 0;
    font-size: 18px;
}

.custom-btn {
    background: #007bff;
    border: none;
    padding: 12px 30px;
}

.hero-mockup {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
}

.section {
    padding: 70px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: #007bff;
}

.about-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #efe7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #007bff;
}

.stat-card,
.service-card,
.why-card,
.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

.stat-card h3 {
    color: #007bff;
    font-weight: 700;
}

.service-card i,
.why-card i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 15px;
}

.portfolio-card {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

.portfolio-card img {
    border-radius: 10px;
    height: 180px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}




footer {
    background: #06142f;
    color: white;
    padding: 25px;
    text-align: center;
}

@media(max-width:991px) {

    .hero-title {
        font-size: 2.4rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-section {
        text-align: center;
    }

    .about-box {
        flex-direction: column;
    }

}

@media(max-width:768px) {

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 50px 0;
    }

}







/* ===== HERO SLIDER ===== */

.service-slide {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.service-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(5, 15, 40, .92),
            rgba(5, 15, 40, .55));
    color: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-badge {
    background: #007bff;
    width: max-content;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.slide-overlay h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.slide-overlay p {
    max-width: 450px;
    margin-bottom: 20px;
    font-size: 17px;
}

.slide-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slide-overlay ul li {
    margin-bottom: 12px;
    font-size: 16px;
}

.slide-overlay ul li::before {
    content: "✓";
    color: #007bff;
    font-weight: bold;
    margin-right: 10px;
}

.carousel-fade .carousel-item {
    transition: opacity 1s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 70%;
}

@media (max-width: 992px) {

    .service-slide {
        height: 450px;
    }

    .slide-overlay {
        padding: 35px;
    }

    .slide-overlay h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

    .service-slide {
        height: 380px;
    }

    .slide-overlay {
        padding: 25px;
    }

    .slide-overlay h2 {
        font-size: 28px;
    }

    .slide-overlay p {
        font-size: 14px;
    }

    .slide-overlay ul li {
        font-size: 14px;
    }
}





.profile-image{
    width:120px;
    height:120px;
    flex-shrink:0;
}

.profile-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #007bff;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}




.testimonial-card {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}













.service-nav {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    scrollbar-width: none;
}

.service-nav::-webkit-scrollbar {
    display: none;
}

.service-nav .nav-item {
    flex: 1;
    min-width: 0;
}

.service-tab {
    width: 100%;
    white-space: nowrap;
    border: 2px solid #0d6efd;
    border-radius: 50px;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.service-tab i {
    margin-right: 6px;
}


/* Tablet */
@media (max-width: 768px) {

    .service-tab {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .service-tab i {
        margin-right: 4px;
    }
}

/* Small Phones */
@media (max-width: 576px) {

    .service-tab {
        padding: 8px 10px;
        font-size: 0.72rem;
    }

    .service-tab i {
        display: none;
    }
}






.service-list details {
    margin-bottom: 10px;
}

.service-list summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
}

.service-list ul {
    margin-top: 10px;
}




.service-image{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:20px;
    transition:.3s ease;
}

.service-image:hover{
    transform:scale(1.02);
}



.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-list li::before {
    content: "✓";

    position: absolute;
    left: 10px;
    top: 2px;

    width: 22px;
    height: 22px;

    background: #0d6efd;
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: bold;
}



















.portfolio-sidebar {
    top: 100px;
}

.filter-btn {
    display: block;
    width: 100%;
    text-align: left;

    border: none;
    background: transparent;

    padding: 12px 20px;
    margin-bottom: 10px;

    border-radius: 10px;

    transition: .3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0d6efd;
    color: #fff;
}

.portfolio-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,.08);
    transition: .3s;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

@media only screen and (max-width: 650px){
    .portfolio-card img {
        height: 405px;
    }
}





.portfolio-card video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}



.d-none {
    display: none;
}

.tab-btn {
    padding: 10px 20px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    margin: 5px;
}

.tab-btn.active {
    background: #000;
    color: #fff;
}





.portfolio-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-btn {
    padding: 10px;
    border: none;
    background: #f5f5f5;
    text-align: left;
    border-radius: 6px;
    cursor: pointer;
}

.filter-btn.active {
    background: #000;
    color: #fff;
}













/* =========================================
   FLOATING SOCIAL MEDIA BUTTONS
========================================= */

.floating-social {
    position: fixed;
    right: 15px;
    bottom: 15px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    z-index: 9999;
}


/* Individual buttons */
.social-btn {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;
    text-decoration: none;

    font-size: 22px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    transition: all 0.3s ease;
    margin: 4px 0;
}


/* TikTok */
.tiktok-btn {
    background: #000;
}


/* WhatsApp */
.whatsapp-btn {
    background: #25D366;
}


/* Hover effect */
.social-btn:hover {
    transform: scale(1.12);
    color: white;
}


/* Mobile */
@media (max-width: 576px) {

    .floating-social {
        right: 12px;
    }

    .social-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

}



















/* ================================
   OBINTUS LANDING MODAL
================================ */

.obintus-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(10, 15, 25, 0.72);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.obintus-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Modal Box */

.obintus-modal {
    position: relative;

    width: 100%;
    max-width: 390px;

    padding: 32px 28px 28px;

    background: #ffffff;
    border-radius: 20px;

    text-align: center;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);

    transform: translateY(20px) scale(0.96);

    transition: transform 0.35s ease;
}

.obintus-modal-overlay.active .obintus-modal {
    transform: translateY(0) scale(1);
}


/* Icon */

.obintus-modal-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: linear-gradient(135deg, #111827, #374151);
    color: #ffffff;

    font-size: 22px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* Heading */

.obintus-modal h3 {
    margin: 0 0 8px;

    font-size: 24px;
    font-weight: 700;

    color: #111827;
}

.obintus-modal p {
    margin: 0 0 24px;

    font-size: 15px;
    line-height: 1.6;

    color: #6b7280;
}


/* Close Button */

.obintus-modal-close {
    position: absolute;

    top: 12px;
    right: 14px;

    width: 34px;
    height: 34px;

    border: none;
    border-radius: 50%;

    background: #f3f4f6;
    color: #6b7280;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    transition: all 0.2s ease;
}

.obintus-modal-close:hover {
    background: #e5e7eb;
    color: #111827;
}


/* Buttons */

.obintus-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.obintus-btn {
    width: 100%;

    min-height: 48px;

    padding: 12px 18px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


/* Primary */

.obintus-btn-primary {
    background: #111827;
    color: #ffffff;
    border: 1px solid #111827;
}

.obintus-btn-primary:hover {
    background: #000000;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}


/* Continue */

.obintus-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.obintus-btn-secondary:hover {
    background: #e5e7eb;

    transform: translateY(-2px);
}


/* Mobile */

@media (max-width: 480px) {

    .obintus-modal {
        max-width: 350px;
        padding: 28px 22px 22px;
        border-radius: 18px;
    }

    .obintus-modal h3 {
        font-size: 21px;
    }

    .obintus-modal p {
        font-size: 14px;
    }

}