/* =============================================
   COLOR VARIABLES — শুধু এখানে বদলালেই সব জায়গায় apply হবে
   ============================================= */
:root {
    --primary:    #0B1570;
    --accent:     #0091B0;
    --highlight:  #00C9E4;
    --bg-section: #F4F8FB;
    --footer-bg:  #0D1B2E;
    --card-icon-bg: #E6F6FA;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", sans-serif !important;
    color: #000000 !important;
}

h4, .h4 {
    font-weight: bold;
}

@media (min-width: 1200px) {
    h4, .h4 {
        font-size: 2rem;
        font-weight: bold;
    }
}


/* ─── Topbar Social Icons — Perfect Center Fix ─── */
.social .btn-square {
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.social .btn-square i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    margin: 0;
    line-height: 1;
}

/* =============================================
   TEXT & UTILITY
   ============================================= */
.text-danger {
    color: var(--accent) !important;
}

/* =============================================
   SERVICE BOX (homepage grid)
   ============================================= */
.services .service-box {
    background: var(--primary);
}

.services .service-box:hover {
    background: #ffffff;
    border: 1.5px solid var(--highlight);
}

.services .service-box:hover p {
    color: var(--accent) !important;
}

.service-box p {
    font-size: 14px;
}

.service_see_more:hover {
    color: #000000 !important;
}




@media (max-width: 991px) {

    /* Center icon ও dot — দুটোই hide */
    .svc-center-icon {
        display: none !important;
    }

    /* "OUR SERVICES" text বড় করা */
    .svc-center-text {
        font-size: 12px !important;
        letter-spacing: 2px !important;
        line-height: 1.5 !important;
    }
}





/* =============================================
   SPINNER
   ============================================= */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square { width: 32px; height: 32px; }
.btn-sm-square { width: 34px; height: 34px; }
.btn-md-square { width: 44px; height: 44px; }
.btn-lg-square { width: 56px; height: 56px; }

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--primary);
}
.btn.btn-kalu {
    box-shadow: #fffff;
}

.btn.btn-kalu:hover {
    box-shadow:#fffff !important;
    color: #0B1570 !important;
}
.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: #0091B0 !important;
}

.btn.btn-light {
    background-color: #ffffff;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}











/* =============================================
   UNIFIED PILL SECTION HEADER — Compact Version
   ============================================= */
.section-pill-header {
    text-align: center;
    margin-bottom: 32px;
}
.section-pill-header .pill-line-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0;
}
.section-pill-header .pill-line {
    height: 2px;
    background-color: #0B1570;
    flex-grow: 1;
    position: relative;
}
.section-pill-header .pill-line.pill-line-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #00C9E4;
    border-radius: 50%;
}
.section-pill-header .pill-line.pill-line-right::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #00C9E4;
    border-radius: 50%;
}
.section-pill-header .pill-box {
    background-color: #0B1570;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    margin: 0 12px;
    box-shadow: 0 3px 10px rgba(11, 21, 112, 0.18);
}
.section-pill-header .pill-box h4,
.section-pill-header .pill-box h2 {
    margin: 0 !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: clamp(0.85rem, 2.5vw, 1.15rem) !important;
    line-height: 1.2;
}
.section-pill-header .pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.section-pill-header .pill-icon svg {
    width: 17px;
    height: 17px;
}
.section-pill-header .pill-desc {
    margin-top: 13px;
    font-size: clamp(0.82rem, 1.8vw, 0.92rem);
    color: #555;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}
.section-pill-header.on-dark .pill-desc {
    color: rgba(255,255,255,0.65);
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .section-pill-header .pill-line {
        display: none;
    }
    .section-pill-header .pill-box {
        margin: 0 auto;
        padding: 7px 18px;
    }
    .section-pill-header .pill-box h4,
    .section-pill-header .pill-box h2 {
        font-size: clamp(0.82rem, 4vw, 1rem) !important;
    }
}












/* =============================================
   TOPBAR
   ============================================= */
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--accent) !important;
}

.topbar a, .topbar a i { transition: 0.5s; }

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

@media (max-width: 576px) {
    .topbar { display: none; }
}

.top-bar {
    background-color: #091261;
}






/* =============================================
   NAVBAR
   ============================================= */
.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}
.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}
@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}
.dropdown .dropdown-menu a:hover {
    background: #0B1570;
    color: #fff;
}
.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}


@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--accent);
        color: var(--accent);
        border-radius: 20px;
    }
    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
        font-size: 16px;
        font-weight: 600;
    }
    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}


@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
        z-index: 999;
    }
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }
    #sticky-header .navbar-nav .nav-link {
        font-family: 'Poppins', sans-serif;
        position: relative;
        border-radius: 6px;
        padding: 8px 14px !important;
        margin-right: 4px;
        font-size: 16px;
        font-weight: 600;
        color: #091261 !important;
        background-color: transparent !important;
        transition: color 0.25s ease, background-color 0.25s ease;
    }
    
/*       #sticky-header .navbar-nav .nav-link {*/
/*    font-family: 'Poppins', sans-serif;*/
/*    position: relative;*/
/*    padding: 8px 16px;*/
/*    margin-right: 6px;*/
/*    font-size: 15.5px;*/
/*    font-weight: 500;*/
/*    color: #0B1570; */
/*    border-radius: 8px;*/
/*    transition: all 0.3s ease;*/
/*}*/
    #sticky-header .navbar-nav .nav-link:hover {
        color: #ffffff !important;
        background-color: #0B1570 !important;
    }
    #sticky-header .navbar-nav .nav-link.active {
        color: #ffffff !important;
        background-color: #0B1570 !important;
    }
}







/* =============================================
   HERO CAROUSEL
   ============================================= */
.header-carousel { position: relative; }

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev { left: 20px; transform: translateY(-50%); }
.header-carousel .owl-nav .owl-next { right: 20px; transform: translateY(-50%); }

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--accent) !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next { top: 630px; }
    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content { width: 95% !important; }
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 0px;
    display: block;
    object-fit: cover;
    transition: 0.5s;
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img { margin-top: 0; }
}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next { margin-top: 50px; }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; 
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
}

.about-mobile-title .second {
    display: block;
}

/* Desktop আবার normal */
@media (min-width: 992px) {
    .about-mobile-title .second {
        display: inline;
    }
}

/* =============================================
   BREADCRUMB
   ============================================= */
.bg-breadcrumb {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../img/slider-image.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
}

.bg-breadcrumb .breadcrumb-item a { color: var(--bs-white) !important; }

.breadcrumb-item.active {
    color: var(--highlight) !important;
    font-weight: bold;
}

/* =============================================
   SERVICE CARDS (blog-style grid) old
   ============================================= */
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img { transition: 0.5s; }

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
}

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(0, 145, 176, .3);
}

.service .service-item .service-img:hover img { transform: scale(1.3); }
.service .service-item .service-content { position: relative; z-index: 2; }

/* =============================================
   SECTIONS BACKGROUND
   ============================================= */
.services {
    background-color: var(--bg-section);
}


/*new*/

.svc-wrapper {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 18px;
}

.svc-card {
    position: relative !important;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    display: block !important;
    text-decoration: none;
}

.svc-card .card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.svc-wrapper:hover .card-photo {
    transform: scale(1.06);
}

.svc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 55%);
    pointer-events: none;
}

.svc-label {
    position: absolute !important;
    bottom: 14px;
    left: 16px;
    z-index: 2;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(6px);
    border-radius: 50px;
    padding: 6px 16px 6px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    color: #222;
    text-transform: uppercase;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.svc-label-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eef0fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* View All Button */
.btn-view-services {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 42px;
    border: 2px solid #0B1570;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.2s ease;
    background: #0B1570;
}
.btn-view-services .sweep-bg {
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    z-index: 0;
    border-radius: 50px;
}
.btn-view-services:hover .sweep-bg {
    transform: translateX(0);
}
.btn-view-services:hover {
    color: #0B1570;
}
.btn-view-services .btn-text {
    position: relative;
    z-index: 1;
}

/* =============================================
   ABOUT IMG
   ============================================= */
.about-img {
    width: 100%;
    position: relative;
    padding: 30px 30px 50px 30px;
    overflow: visible;
}

.about-img img {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* Experience Badge */
.experience {
    position: absolute;
    bottom: 18px;
    right: 0;
    padding: 30px 14px;
    text-align: center;
    border-radius: 10px;
    z-index: 3;
    width: clamp(90px, 14vw, 125px);
    height: auto;
}

.experience h1 {
    font-size: clamp(1.3rem, 3vw, 1.8rem) !important;
    line-height: 1.1;
    margin-bottom: 3px;
    font-weight: 700;
}

.experience h6 {
    font-size: clamp(0.58rem, 1.2vw, 0.75rem);
    line-height: 1.3;
    margin-bottom: 0;
    word-break: break-word;
}

.experience1 {
    position: absolute;
    bottom: 15px;
    left: 0;
    padding: 8px 12px;
    text-align: center;
    border-radius: 10px;
    z-index: 3;
    width: clamp(90px, 14vw, 125px);
    height: auto;
}

.experience1 h1 {
    font-size: clamp(1.3rem, 3vw, 1.8rem) !important;
    line-height: 1.1;
    margin-bottom: 3px;
    font-weight: 700;
}

.experience1 h6 {
    font-size: clamp(0.58rem, 1.2vw, 0.75rem);
    line-height: 1.3;
    margin-bottom: 0;
    word-break: break-word;
}

/* ── Tablet ── */
@media (min-width: 577px) and (max-width: 991px) {
    .about-img img {
        height: 380px;
    }

    .experience,
    .experience1 {
        width: 105px;
        padding: 7px 10px;
        bottom: 10px;
    }

    .experience h1,
    .experience1 h1 {
        font-size: 1.3rem !important;
    }

    .experience h6,
    .experience1 h6 {
        font-size: 0.6rem;
    }
}

/* ── Phone ── */
@media (max-width: 576px) {
    .about-img {
        padding: 20px 20px 45px 20px;
    }

    .about-img img {
        height: 280px;
    }

    .experience {
        width: 95px;
        right: 2px;
        bottom: 8px;
        padding: 22px 10px;
        border-radius: 8px;
    }

    .experience h1 {
        font-size: 1.05rem !important;
        margin-bottom: 2px;
    }

   .experience h6 {
        font-size: 12px;
       
   }

    /*.experience1 {*/
    /*    width: 78px;*/
    /*    left: 2px;*/
    /*    bottom: 8px;*/
    /*    padding: 5px 7px;*/
    /*    border-radius: 8px;*/
    /*}*/

    /*.experience1 h1 {*/
    /*    font-size: 1.05rem !important;*/
    /*    margin-bottom: 2px;*/
    /*}*/

    /*.experience1 h6 {*/
    /*    font-size: 0.5rem;*/
    /*}*/
}







/* =============================================
   FEATURE ITEMS
   ============================================= */
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--accent);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--accent);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon { position: relative; z-index: 2; }

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 { color: var(--bs-dark); }

/* =============================================
   APPOINTMENT
   ============================================= */
.appointment {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form { background: rgba(0, 145, 176, 0.1); }

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--accent);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--accent) !important;
}

/* =============================================
   VIDEO PLAY BUTTON
   ============================================= */
.video { position: relative; }

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0%   { transform: translateX(-50%) translateY(-50%) scale(1); opacity: 1; }
    100% { transform: translateX(-50%) translateY(-50%) scale(1.5); opacity: 0; }
}

#videoModal { z-index: 99999; }

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body { position: relative; padding: 0; }

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

/* =============================================
   TEAM
   ============================================= */
.team .team-item .team-img { position: relative; overflow: hidden; }

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon { margin-bottom: 145px; }

.team .team-item:hover .team-img::before { background: rgba(0, 145, 176, .3); }

.team .team-item .team-content { color: var(--accent); transition: 0.5s; }
.team .team-item .team-content h5 { color: var(--bs-secondary); transition: 0.5s; }
.team .team-item:hover .team-content h5 { color: var(--bs-dark); }
.team .team-item:hover .team-content { background: var(--accent); color: var(--bs-white); }

/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bs-light);
    z-index: 1;
}

.testimonial-content::before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50px;
    bottom: -15px;
    rotate: 45deg;
    z-index: -5;
    background: var(--bs-light);
}

.testimonial-carousel {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 60px;
    height: 40px;
    background: var(--bs-primary);
    color: var(--bs-dark);
    font-size: 22px;
    top: 14%;
    left: 0;
    border-radius: 30px 0 0 30px;
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-nav .owl-next {
    left: auto;
    right: 0;
    border-radius: 0 30px 30px 0;
}

.testimonial-carousel .owl-dots,
.patner_right .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.patner_right .owl-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.testimonial-carousel .owl-dot,
.patner_right .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-secondary);
    border-radius: 15px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dot.active,
.patner_right .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

/* =============================================
   BLOG
   ============================================= */
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img { transition: 0.5s; }
.blog .blog-item .blog-img:hover img { transform: scale(1.3); }

.blog .blog-item:hover .blog-img::after { background: rgba(0, 145, 176, .5); }

.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border: 1px solid var(--accent);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    background-color: #000000;
    color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--accent);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--accent) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label { color: var(--bs-light); }

.contact .section-title { max-width: 900px; text-align: center; margin: 0 auto; }

.contact .section-title .sub-style,
.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--highlight);
}

.contact .section-title .sub-style::before,
.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after,
.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
    background:#070D3A ;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .footer-item a {
    line-height: 30px;
    color: #ffffff;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 2;
    font-size: 15px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--highlight);
}

.copyright {
    background:#070D3A;
}

/* =============================================
   FEATURE LIST (left border animated)
   ============================================= */
.feature-list .feature-item {
    position: relative;
    background: white;
    padding: 6px 15px;
    margin-bottom: 5px;
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0, 114, 255, 0.1);
    font-size: 15px;
    font-weight: 500;
    overflow: hidden;
    z-index: 1;
    color: #000000;
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 6px;
    background: var(--accent);
    z-index: 0;
}

.feature-item:hover::before { width: 100%; }
.feature-item * { position: relative; z-index: 1; }

.feature-item:hover {
    background: var(--accent);
    color: white !important;
}

/* =============================================
   FAQ DIAMOND
   ============================================= */
.diamond {
    width: 200px;
    height: 200px;
    background-color: var(--accent);
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.diamond-text {
    transform: rotate(-45deg);
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .diamond { width: 125px; height: 125px; }
    .diamond-text { font-size: 14px; }
}

.faq-section {
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-section h2 {
    text-align: center;
    color: var(--accent);
    margin-bottom: 3px;
    font-size: 24px;
}

.faq { border-bottom: 1px solid #ddd; }

.faq button {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #2c3e50;
    transition: 0.3s;
}

.faq button:hover { color: var(--accent); }

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9f9f9;
    padding: 0 15px;
}

.faq-content p {
    padding: 10px 0;
    margin: 0;
    color: #555;
    font-size: 16px;
}

.faq.active .faq-content { max-height: 500px; }

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio-filter { text-align: center; margin-bottom: 30px; }

.portfolio-filter button {
    background-color: #eee;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.portfolio-filter button.active {
    background-color: var(--accent);
    color: #fff;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.portfolio-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover { transform: scale(1.03); }

.portfolio-item img { width: 100%; height: auto; display: block; }

.hidden { display: none; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    height: 80vh;
    color: #fff;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 3;
}

#particles-js {
    position: absolute;
    width: 100%; height: 100%;
    z-index: 4;
}

/* =============================================
   CORE VALUE FEATURE CARDS
   ============================================= */
.features-section { background: var(--bg-section); }

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.feature-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.feature-text { font-size: 0.95rem; color: #555; line-height: 1.6; }

.testimonial-item img { width: 170px; }

/* =============================================
   TOOLS SECTION
   ============================================= */
.tools-section { padding: 60px 0; }

.tools-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #FFF;
    text-align: center;
}

.tools-section p.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 40px;
}

.tool-card {
    background: var(--primary);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 201, 228, 0.2);
}

.tool-card:hover {
    border-color: var(--highlight);
    box-shadow: 0 0 0 1px var(--highlight);
}

.tool-icon { font-size: 2rem; margin-bottom: 15px; color: var(--highlight); }
.tool-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; color: #FFF; }
.tool-desc { font-size: 0.9rem; color: #aac4d4; }
.tool-card:hover .tool-desc { color: #fff; }

/* =============================================
   WEBSITE TYPES SECTION
   ============================================= */
.website-types-section {
    padding: 60px 0;
    background-color: var(--bg-section);
}

.card {
    background: var(--primary);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 201, 228, 0.15);
}

.card:hover { border-color: var(--highlight); }

.card-title { color: white; font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.card-icon { font-size: 2rem; margin-bottom: 15px; color: var(--highlight); }
.card-text { font-size: 0.9rem; color: #aac4d4; }
.card:hover .card-text { color: #fff; }

/* =============================================
   WORKFLOW
   ============================================= */
.workflow-section { background: var(--bg-section); padding: 60px 0; }

.workflow-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    color: var(--accent);
}

.workflow-title i { margin-right: 10px; font-size: 1.5rem; }

.workflow-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.workflow-item {
    background: white;
    padding: 20px;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    display: flex;
    align-items: start;
    transition: 0.3s ease;
}

.workflow-item:hover { transform: translateY(-5px); }

.workflow-icon { font-size: 1.3rem; color: #28a745; margin-right: 15px; flex-shrink: 0; }
.workflow-text { font-size: 1.05rem; color: #333; line-height: 1.5; }

/* =============================================
   SERVICE STEPS
   ============================================= */
.service-step {
    background: var(--primary);
    color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 201, 228, 0.15);
}

.service-step:hover { border-color: var(--highlight); }

.service-step i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--highlight);
    transition: 0.3s ease;
    display: block;
}

.service-step h5 { margin: 0; font-weight: 500; font-size: 1.1rem; color: #FFF; }

/* =============================================
   SECTION HIGHLIGHT
   ============================================= */
.section-highlight {
    background: var(--bg-section);
    padding: 60px 0;
}

.highlight-card {
    background-color: white;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 2rem;
}

.highlight-title {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.highlight-title i {
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    padding: 10px;
    font-size: 1.5rem;
    margin-right: 15px;
}

.highlight-card p { font-size: 1.1rem; color: #343a40; line-height: 1.7; }

/* =============================================
   FAQ ACCORDION (service pages)
   ============================================= */
.faq-section { padding: 60px 0; }

.faq-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 40px;
}

.faq-title { font-weight: 700; margin-bottom: 30px; }
.faq-title span { color: #6c757d; font-weight: 400; }

.accordion-button {
    background-color: var(--accent) !important;
    color: #fff !important;
    border-radius: 8px;
    margin-bottom: 10px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.accordion-body {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    font-size: 15px;
    color: #555;
}

.faq-btn {
    display: block;
    margin: 30px auto 0;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
    background: var(--accent);
    border: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

.faq-btn:hover { background: var(--primary); }

.faq-image { position: relative; text-align: center; }
.faq-image img { max-width: 164px; z-index: 2; position: relative; }

.faq-image::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--accent);
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    z-index: 1;
}

/* =============================================
   PRICING
   ============================================= */
.price-item {
    transition: all 0.3s ease-in-out;
    border-radius: 1.5rem;
    border: 1px solid #ddd;
    background: #fff;
    overflow: hidden;
}

.price-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.price-item .price-top {
    background-repeat: no-repeat;
    background-position: top;
    color: #fff;
    padding: 1.5rem;
    min-height: 210px;
}

.price-item .price-top p { margin-bottom: 0.5rem; }
.price-item .price { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.price-item .price span { font-size: 1rem; font-weight: 400; color: var(--highlight); }

.price-item .featuresitem {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: #555;
    background: #fff;
}

.list_item li {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #858686;
    padding-bottom: 10px;
    border-bottom: 1px dashed #d2d2d2;
    margin-bottom: 10px;
    text-align: center;
}

.list_item_img { width: 45px; height: 3px; margin: 0 auto; }

/* =============================================
   BOOTSTRAP PRIMARY OVERRIDE
   ============================================= */
.text-primary,
.btn-primary {
    color: #ffffff !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}


.btn-tanvir {
    color: #091261 !important;
    background-color: #ffffff !important;
    border: 2px solid #091261 !important;   /* default border */

    font-size: 0.875rem !important;          /* font একটু ছোট */
    font-weight: 600;
    letter-spacing: 0.4px;

    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease;
    display: inline-block;
}

.btn-tanvir::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #38C4DF !important;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-tanvir:hover {
    color: #ffffff !important;
    border-color: #38C4DF !important;  /* hover bg এর সাথে match */
}

.btn-tanvir:hover::before {
    left: 0;
}






@media (max-width: 576px){
    .text-primary,
    .btn-primary {
    color: #ffffff !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    font-size:10px;
}
}

/* =============================================
   MOBILE OFFCANVAS / SUBMENU
   ============================================= */
.submenu { transition: all 0.3s ease; }

.toggle-submenu i { transition: transform 0.3s ease; }
.toggle-submenu i.rotate { transform: rotate(180deg); }

.offcanvas-body ul li { background: #f1f1f1; }
.offcanvas-body ul li:hover { background: #f1f1f1; }
.offcanvas-start { width: 300px; }

/* =============================================
   STICKY HEADER
   ============================================= */
#sticky-header {
    width: 100%;
    z-index: 999999999;
    transition: all 0.3s ease-in-out;
}



/* =============================================
   TYPED TEXT
   ============================================= */
#element { color: var(--primary); }

/* =============================================
   PARTICLES & CAROUSEL CAPTION
   ============================================= */
#particles-js {
    position: absolute;
    width: 100%; height: 100%;
    z-index: 3;
}

.header-carousel-item { position: relative; }

.carousel-caption {
    position: absolute;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

/* =============================================
   WHY CHOOSE US CARDS — inline style replace
   এটা home.blade.php এ inline style এর বদলে
   এই class use করো
   ============================================= */
.why-choose-card {
    min-height: 177px;
    background: #0B1570 !important;
    border: 1.5px solid rgba(0, 201, 228, 0.25);
    color: white;
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
}

.why-choose-card h3 { color: var(--highlight); }
.why-choose-card p { color: #aac4d4; }

/* =============================================
   SERVICE TITLE COLOR (inline style replace)
   ============================================= */
.service-title-accent { color: var(--accent) !important; }

/* =============================================
   EXPERIENCE BORDER (home about section)
   ============================================= */
.experience-border { border: 3px solid var(--primary) !important; }





/* =============================================
   RESPONSIVE — Mobile & Tablet Fixes
   এই block টা style.css এর একদম নিচে add করো
   ============================================= */

/* ── Hero ────────────────────────────────────── */
.hero-section { height: auto; min-height: 80vh; }
.hero-content { padding: 120px 16px 60px; }

@media (max-width: 576px) {
.hero-section { height: auto; min-height: 33vh; }
.hero-content { padding: 120px 16px 60px; }
}

@media (max-width: 767px) {
    .hero-content { padding: 100px 16px 50px; }
    /*.hero-content .btn { width: 100%; }*/
}

/* ── About image — phone center ──────────────── */
@media (max-width: 991px) {
    .about-img { padding: 20px; margin: 0 auto; }
}

/* ── Service section title ───────────────────── */
@media (max-width: 576px) {
    .section-title h2,
    .section-title h4 { font-size: 1.3rem; }
}

/* ── Service circle ──────────────────────────── */
.svc-wrap {
    position: relative;
    width: min(340px, 88vw);
    height: min(340px, 88vw);
    margin: 0 auto;
}

/* Circle টা desktop এ right, mobile এ top এ আসবে */
@media (max-width: 991px) {
    .svc-order-circle { order: 1; }
    .svc-order-info   { order: 2; margin-top: 1.5rem; }
    #svc-info-panel   { min-height: auto; }
}

/* ── Why Choose cards ────────────────────────── */
.why-choose-card {
    min-height: 120px;
    padding: 10px 6px !important;
    border-radius: 8px;
}

.why-choose-card h3 { font-size: clamp(1.2rem, 4vw, 1.8rem); }
.why-choose-card p  {
    font-size: clamp(0.72rem, 2vw, 0.85rem);
    padding-top: 4px !important;
    line-height: 1.4;
}

@media (max-width: 576px) {
    /* 3-column grid stays but smaller padding */
    .why-choose-card { min-height: 100px; }
}

/* ── Blog & service cards ────────────────────── */
.service-img img {
    height: 190px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 576px) {
    .service-img img { height: 200px; }
    .service-content { padding: 1rem !important; }
}

/* ── Testimonial cards ───────────────────────── */
.testi-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px 22px;
    border: 0.5px solid #dde8f0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    transition: box-shadow 0.2s;
}
.testi-card:hover { box-shadow: 0 8px 28px rgba(0,145,176,.12); }

/* ── General section spacing ─────────────────── */
@media (max-width: 767px) {
    .container-fluid.py-5 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    .container.py-5        { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
    .section-title.mb-5    { margin-bottom: 1.5rem !important; }
    .row.g-5               { --bs-gutter-x: 1rem; --bs-gutter-y: 1.5rem; }
}

/* ── Footer columns ──────────────────────────── */
@media (max-width: 576px) {
    .footer .col-6 { width: 100%; }
    .footer .footer-item { margin-bottom: 1rem; }
    .footer .footer-item a { line-height: 2; }
}

/* ── Breadcrumb ──────────────────────────────── */
@media (max-width: 576px) {
    .bg-breadcrumb { padding: 40px 0; }
}



/* ══════════════════════════════════════
   GET IN TOUCH SECTION
   Light + Premium Combined Design
   ══════════════════════════════════════ */

.git-section {
    background: linear-gradient(135deg, #F4FAFF 0%, #EAF7FC 45%, #DFF4FA 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* orbs */
.git-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.git-orb-1 {
    width: 350px;
    height: 350px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(0, 145, 176, 0.12) 0%, transparent 70%);
    animation: gitPulse 7s ease-in-out infinite;
}

.git-orb-2 {
    width: 250px;
    height: 250px;
    bottom: -70px;
    left: -60px;
    background: radial-gradient(circle, rgba(11, 21, 112, 0.08) 0%, transparent 70%);
    animation: gitPulse 9s ease-in-out infinite 2s;
}

/* floating shapes */
.git-shape {
    position: absolute;
    pointer-events: none;
    border-radius: 10px;
}

.git-shape-1 {
    width: 50px;
    height: 50px;
    top: 12%;
    left: 5%;
    border: 1.5px solid rgba(0, 145, 176, 0.18);
    animation: gitFloat 7s ease-in-out infinite;
    transform: rotate(20deg);
}

.git-shape-2 {
    width: 35px;
    height: 35px;
    bottom: 20%;
    right: 6%;
    border: 1.5px solid rgba(0, 201, 228, 0.18);
    border-radius: 50%;
    animation: gitFloat 5s ease-in-out infinite 1s;
}

.git-shape-3 {
    width: 60px;
    height: 60px;
    bottom: 12%;
    left: 18%;
    border: 1px solid rgba(11, 21, 112, 0.10);
    animation: gitFloat 9s ease-in-out infinite 2s;
    transform: rotate(45deg);
}

@keyframes gitPulse {
    0%, 100% {
        opacity: .5;
        transform: scale(1);
    }

    50% {
        opacity: .9;
        transform: scale(1.1);
    }
}

@keyframes gitFloat {
    0%, 100% {
        transform: translateY(0) rotate(20deg);
    }

    50% {
        transform: translateY(-16px) rotate(28deg);
    }
}

.git-inner {
    position: relative;
    z-index: 2;
}

/* image */
.git-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 21, 112, 0.08);
}

.git-img-wrap img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.git-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 145, 176, 0.18);
    pointer-events: none;
}

.git-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 201, 228, 0.18);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.git-badge-title {
    font-size: 17px;
    font-weight: 800;
    color: #0B1570;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.git-badge-sub {
    font-size: 11px;
    color: #5D6A85;
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
}

/* form */
.git-form-wrap {
    background: #FFFFFF;
    border: 1px solid rgba(11, 21, 112, 0.06);
    border-radius: 20px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 21, 112, 0.06);
}

.git-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #0B1570, #0091B0, #00C9E4);
}

.git-form-title {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 800;
    color: #0B1570;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.git-form-sub {
    font-size: 12px;
    color: #6C7890;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.git-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #5D6A85;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.git-input {
    width: 100%;
    background: #F8FCFF;
    border: 1.5px solid rgba(11, 21, 112, 0.08);
    border-radius: 10px;
    padding: 10px 13px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: #0B1570;
    outline: none;
    transition: 0.25s;
}

.git-input::placeholder {
    color: #9AA5B8;
}

.git-input:focus {
    border-color: #00C9E4;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 201, 228, 0.08);
}

.git-textarea {
    resize: vertical;
    min-height: 100px;
}

.git-btn {
    width: 100%;
    margin-top: 6px;
    background: linear-gradient(135deg, #0B1570, #0091B0, #00C9E4);
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 13px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.25s;
    box-shadow: 0 8px 24px rgba(0, 145, 176, 0.20);
}

.git-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 201, 228, 0.28);
}

.git-btn svg {
    transition: 0.25s;
}

.git-btn:hover svg {
    transform: translateX(3px);
}

/* mobile */
@media (max-width: 991px) {
    .git-section {
        padding: 50px 0;
    }

    .git-form-wrap {
        padding: 24px 18px;
    }
}


/* ══════════════════════════════════════
   FAQ PAGE SECTION
   ══════════════════════════════════════ */
.faqp-section {
    background: #fff;
    padding: 70px 0;
}

/* header */
.faqp-head {
    text-align: center;
    margin-bottom: 40px;
}
.faqp-head h1 {
    font-size: clamp(1.3rem, 4vw, 2rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}
.faqp-head h1 span {
    color: #0091B0;
}
.faqp-head p {
    font-size: clamp(0.82rem, 2vw, 0.9rem);
    color: #666;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
    font-family: 'Poppins', sans-serif;
}

/* list */
.faqp-list {
    max-width: 720px;
    margin: 0 auto 40px;
}

/* item */
.faqp-item {
    background: #EBF5FB;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #d0eaf5;
    transition: box-shadow 0.2s;
}
.faqp-item:hover {
    box-shadow: 0 4px 16px rgba(0,145,176,0.1);
}

/* question button */
.faqp-q {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
}
.faqp-q-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0091B0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faqp-q-text {
    flex: 1;
    font-size: clamp(0.82rem, 2vw, 0.88rem);
    font-weight: 600;
    color: #0B1570;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}
.faqp-toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0091B0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.faqp-toggle svg {
    transition: transform 0.3s;
}
.faqp-item.open .faqp-toggle {
    background: #0B1570;
    color:#fff;
}
.faqp-item.open .faqp-toggle svg {
    transform: rotate(45deg);
}

/* answer */
.faqp-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faqp-ans-inner {
    padding: 0 18px 14px 58px;
    font-size: clamp(0.8rem, 2vw, 0.87rem);
    color: #555;
    line-height: 1.75;
    font-family: 'Poppins', sans-serif;
}
.faqp-item.open .faqp-ans {
    max-height: 300px;
}

/* CTA box */
.faqp-cta {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(135deg, #EBF5FB, #D6EEF8);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    border: 1px solid #c0e0f0;
}
.faqp-cta-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0091B0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.faqp-cta h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 800;
    color: #0B1570;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}
.faqp-cta p {
    font-size: clamp(0.8rem, 2vw, 0.88rem);
    color: #555;
    max-width: 320px;
    margin: 0 auto 20px;
    line-height: 1.65;
    font-family: 'Poppins', sans-serif;
}
.faqp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0091B0;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 5px 16px rgba(0,145,176,0.3);
}
.faqp-cta-btn:hover {
    background: #0B1570;
    color: #fff;
    transform: translateY(-2px);
}

/* mobile */
@media (max-width: 576px) {
    .faqp-section { padding: 44px 0; }
    .faqp-ans-inner { padding-left: 42px; }
    .faqp-cta { padding: 24px 16px; }
}



/* =============================================
   OUR SERVICES — STATIC SECTION
   ============================================= */
.osvc-section {
    padding: 15px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.osvc-section::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(47, 111, 237, .07) 0%, rgba(47, 111, 237, 0) 70%);
    pointer-events: none;
}

.osvc-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eaf1ff;
    color: #2f6fed;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
}

.osvc-title {
    font-weight: 800;
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    line-height: 1.2;
    color: #0f1b33;
    font-family: 'Poppins', sans-serif;
}

.osvc-title .osvc-accent {
    color: #2f6fed;
}

.osvc-subtitle {
    color: #6b7385;
    font-size: 1.02rem;
    max-width: 640px;
    margin: 16px auto 0;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

.osvc-card {
    display: flex;
    gap: 20px;
    padding: 14px;
    border-radius: 18px;
    transition: background .35s ease, transform .35s ease, box-shadow .35s ease;
}

.osvc-icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #eaf1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #2f6fed;
    transition: background .35s ease, color .35s ease, transform .45s cubic-bezier(.34, 1.56, .64, 1);
}

.osvc-card-title {
    font-weight: 700;
    font-size: 1.08rem;
    color: #0f1b33;
    margin-bottom: 8px;
    transition: color .3s ease;
    font-family: 'Poppins', sans-serif;
}

.osvc-desc {
    color: #6b7385;
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.osvc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #2f6fed;
    text-decoration: none;
    position: relative;
}

.osvc-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #1e4fc4;
    transition: width .3s ease;
}

.osvc-link i { transition: transform .25s ease; }
.osvc-link:hover { color: #1e4fc4; }
.osvc-link:hover::after { width: 100%; }
.osvc-link:hover i { transform: translateX(5px); }

.osvc-row {
    border-bottom: 1px solid #e7ebf3;
    padding: 20px 0;
}

.osvc-row:last-of-type { border-bottom: none; }

.osvc-row:hover .osvc-card {
    background: #fff;
    box-shadow: 0 22px 44px -20px rgba(15, 27, 51, .16);
    transform: translateY(-4px);
}

.osvc-row:hover .osvc-icon {
    background: #2f6fed;
    color: #fff;
    transform: rotate(-6deg) scale(1.06);
}

.osvc-row:hover .osvc-card-title { color: #1e4fc4; }
.osvc-row:hover .osvc-media img { transform: scale(1.08); }

.osvc-media {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #dbe6ff, #f2f6ff);
    box-shadow: 0 16px 34px -18px rgba(15, 27, 51, .28);
}

.osvc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.osvc-cta-banner {
    margin-top: 56px;
    background: radial-gradient(120% 160% at 0% 0%, #16244a 0%, #0f1b33 55%, #0a1226 100%);
    border-radius: 22px;
    padding: 38px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -28px rgba(15, 27, 51, .55);
}

.osvc-cta-banner::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 111, 237, .35) 0%, rgba(47, 111, 237, 0) 70%);
}

.osvc-cta-banner h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 4px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.osvc-cta-banner p {
    color: #a9b2c7;
    font-size: .94rem;
    margin: 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.osvc-cta-btn {
    background: #2f6fed;
    color: #fff;
    font-weight: 600;
    font-size: .92rem;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.osvc-cta-btn:hover {
    background: #1e4fc4;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -12px rgba(47, 111, 237, .55);
}

.osvc-cta-btn i { transition: transform .25s ease; }
.osvc-cta-btn:hover i { transform: translateX(4px); }

@media (max-width: 991.98px) {
    .osvc-cta-banner { padding: 28px; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .osvc-media { height: 190px; }
}

@media (max-width: 767.98px) {
    .osvc-section { padding: 30px 0; }
    .osvc-card { gap: 16px; }
    .osvc-icon { width: 46px; height: 46px; font-size: 1.15rem; border-radius: 12px; }
    .osvc-media { height: 200px; }
    .osvc-row { padding: 26px 0; }
    .osvc-cta-banner { flex-direction: column; align-items: flex-start; text-align: left; }
    .osvc-cta-btn { width: 100%; justify-content: center; }
}

@media (min-width: 1600px) {
    .osvc-section { padding: 110px 0; }
    .osvc-title { font-size: 3.1rem; }
    .osvc-media { height: 210px; }
}


/* ══════════ OUR SERVICES CARD STYLES (UPDATED) ══════════ */

.osvc-card{
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    height: 100%;
}

.osvc-card-body{
    width: 100%;
}

/* Card title underline */
.osvc-card-title{
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 14px;
}
.osvc-card-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #2f6fed, #6a9bff);
}

/* Description: exactly 3 lines */
.osvc-desc{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.65;
    min-height: calc(1.65em * 3);
    color: #6b7385;
    margin-bottom: 16px;
}

/* Media (image) box — bigger, more professional */
.osvc-media{
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 38px -18px rgba(15, 27, 51, .30);
}
.osvc-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}
.osvc-row:hover .osvc-media img{
    transform: scale(1.06);
}

/* Desktop — bigger image */
@media (min-width: 1200px){
    .col-7 { width: 55%; }
    .col-5 { width: 45%; }
    .osvc-media{
        aspect-ratio: 4 / 3.4;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px){
    .osvc-media{
        aspect-ratio: 4 / 3.4;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px){
    .osvc-media{
        aspect-ratio: 4 / 3.2;
    }
}

/* Mobile: image + text side-by-side, 1 item per row */
@media (max-width: 767.98px){
    .col-7 { width: 56%; }
    .col-5 { width: 44%; }
    .osvc-row{
        margin-bottom: 22px;
    }
    .osvc-media{
        aspect-ratio: 4 / 3.6;
        max-height: 170px;
    }
    .osvc-card-title{
        font-size: 1.02rem;
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
    .osvc-desc{
        font-size: 0.82rem;
        line-height: 1.45;
        min-height: calc(1.45em * 3);
        margin-bottom: 10px;
    }
    .osvc-link{
        font-size: 0.85rem;
    }
}



