
/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.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-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
    border: none;
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
}
/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary);
}
/*** Topbar End ***/

/*** Navbar ***/
/* =========================
   PREMIUM RESPONSIVE NAVBAR
========================= */

.sticky-top {
    top: 0;
    z-index: 999;
    transition: all 0.5s ease;
    backdrop-filter: blur(12px);
}

/* NAVBAR CONTAINER */
.navbar {
    background: rgba(255,255,255,0.95) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

/* LOGO + TITLE */
.navbar h1 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.navbar h1 img {
    border-radius: 12px;
    transition: 0.4s;
}

.navbar h1:hover img {
    transform: scale(1.05);
}

/* NAV LINKS */
.navbar .navbar-nav .nav-link {
    position: relative;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 18px;
    margin: 0 4px;
    border-radius: 12px;
    transition: all 0.4s ease;
    font-family: "Playfair Display", serif;
    overflow: hidden;
    z-index: 1;
}

/* HOVER BACKGROUND */
.navbar .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0%;
    height: 100%;
    background: rgba(255, 84, 0, 0.08);
    border-radius: 12px;
    transform: translate(-50%, -50%);
    transition: 0.4s ease;
    z-index: -1;
}

.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .nav-link.active::before {
    width: 100%;
}

/* LINK HOVER */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
    transform: translateY(-2px);
}

/* PREMIUM LINE EFFECT */
.navbar .navbar-nav .nav-item {
    position: relative;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--bs-secondary);
    transition: 0.4s ease;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 50%;
}

.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 50%;
}

.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::before {
    width: 100%;
    left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item.active::after {
    width: 100%;
    right: 0;
}

/* GET QUOTE BUTTON */
.navbar .btn-secondary {
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 28px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: none;
}

.navbar .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* =========================
   TOGGLER BUTTON
========================= */

.navbar .navbar-toggler {
    background: var(--bs-secondary) !important;
    border: none;
    color: #fff !important;
    border-radius: 10px;
    padding: 10px 14px;
    transition: 0.4s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.navbar .navbar-toggler .fa-bars {
    color: #fff !important;
    font-size: 20px;
}

.navbar .navbar-toggler:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* =========================
   DROPDOWN
========================= */

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

.navbar .dropdown-menu {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    padding: 10px;
    background: var(--bs-light);
}

.navbar .dropdown-item {
    border-radius: 10px;
    padding: 10px 15px;
    transition: 0.3s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/* =========================
   DESKTOP DROPDOWN EFFECT
========================= */

@media (min-width: 992px) {

    .navbar {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        top: 120%;
        margin-top: 0;
        transform: translateY(15px);
        transition: all 0.4s ease;
    }

    .navbar .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 991px) {

    .navbar {
        padding: 15px !important;
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 15px;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .navbar .navbar-nav .nav-link {
        margin: 6px 0;
        padding: 14px 18px;
    }

    .navbar .navbar-nav .nav-item::before,
    .navbar .navbar-nav .nav-item::after {
        display: none;
    }

    .navbar .btn-secondary {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .navbar h1 {
        font-size: 26px;
    }

    .navbar h1 img {
        height: 50px;
    }
}
/*** Navbar End ***/
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

/* Hover effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Tooltip */
.wa-tooltip {
    position: absolute;
    left: 75px;
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    opacity: 0;
    white-space: nowrap;
    transition: 0.3s;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    left: 70px;
}

/* Notification dot */
.wa-notification {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 12px;
    height: 12px;
    background: red;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* Bounce animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Notification pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}
/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url(../img/kanda.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Carousel Start ***/
/* ========================================
   PREMIUM HERO CAROUSEL
======================================== */

/* MAIN CAROUSEL */
.carousel {
    position: relative;
}

.carousel .carousel-inner {
    overflow: hidden;
}

/* SLIDES */
.carousel .carousel-inner .carousel-item {
    position: relative;
    overflow: hidden;
    height: 100vh;
    transition: opacity 1.5s ease-in-out !important;
}

/* IMAGE STYLING */
.carousel .carousel-inner .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease;
}

/* SLOW ZOOM EFFECT */
.carousel .carousel-inner .carousel-item.active img {
    transform: scale(1.08);
}

/* DARK PREMIUM OVERLAY */
.carousel .carousel-inner .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.65)
    );
    z-index: 1;
}

/* LIGHT GLOW EFFECT */
.carousel .carousel-inner .carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 70%);
    z-index: 1;
}

/* CAPTION */
.carousel .carousel-caption {
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: 850px;
    padding-bottom: 80px;
}

/* SMALL TEXT */
.carousel .carousel-caption p.text-uppercase {
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 15px !important;
    animation: fadeInUp 1s ease;
}

/* MAIN HEADING */
.carousel .carousel-caption h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 10px 25px rgba(0,0,0,0.35);
    animation: fadeInUp 1.2s ease;
}

/* PARAGRAPH */
.carousel .carousel-caption p.fs-5 {
    max-width: 700px;
    line-height: 1.8;
    font-size: 18px !important;
    color: rgba(255,255,255,0.9);
    animation: fadeInUp 1.4s ease;
}

/* BUTTONS */
.carousel .carousel-caption .btn {
    border-radius: 50px;
    padding: 14px 35px !important;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* BUTTON HOVER */
.carousel .carousel-caption .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.28);
}

/* PRIMARY BUTTON */
.carousel .btn-primary {
    backdrop-filter: blur(10px);
}

/* SECONDARY BUTTON */
.carousel .btn-secondary {
    backdrop-filter: blur(10px);
}

/* ========================================
   PREMIUM INDICATORS
======================================== */

.carousel .carousel-indicators {
    margin-bottom: 40px;
    z-index: 10;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--bs-secondary);
    background: rgba(255,255,255,0.5);
    margin: 0 8px;
    transition: all 0.4s ease;
}

.carousel .carousel-indicators .active {
    width: 40px;
    border-radius: 20px;
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

/* ========================================
   PREMIUM NAVIGATION ARROWS
======================================== */

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.carousel-control-prev-icon i,
.carousel-control-next-icon i {
    color: #fff;
    font-size: 22px;
}

/* ARROW HOVER */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background: var(--bs-secondary);
    transform: scale(1.1);
}

/* ========================================
   FADE EFFECT INSTEAD OF SLIDE
======================================== */

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none !important;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

/* ========================================
   TEXT ANIMATIONS
======================================== */

.carousel-caption h1,
.carousel-caption p,
.carousel-caption .btn {
    opacity: 0;
}

.carousel-item.active .carousel-caption p.text-uppercase {
    animation: fadeInUp 1s ease forwards;
}

.carousel-item.active .carousel-caption h1 {
    animation: fadeInUp 1.2s ease forwards;
}

.carousel-item.active .carousel-caption p.fs-5 {
    animation: fadeInUp 1.4s ease forwards;
}

.carousel-item.active .carousel-caption .btn {
    animation: fadeInUp 1.6s ease forwards;
}

/* CUSTOM KEYFRAMES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   TABLET RESPONSIVE
======================================== */

@media (max-width: 991px) {

    .carousel .carousel-inner .carousel-item {
        height: 750px;
    }

    .carousel .carousel-caption {
        text-align: center;
        align-items: center;
        padding: 0 20px;
    }

    .carousel .carousel-caption h1 {
        font-size: 3.5rem;
    }

    .carousel .carousel-caption p.fs-5 {
        font-size: 16px !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 55px;
        height: 55px;
    }
}

/* ========================================
   MOBILE RESPONSIVE
======================================== */

@media (max-width: 576px) {

    .carousel .carousel-inner .carousel-item {
        height: 100vh;
        min-height: 650px;
    }

    .carousel .carousel-caption {
        padding: 0 15px;
        padding-bottom: 50px;
    }

    .carousel .carousel-caption h1 {
        font-size: 2.3rem;
        line-height: 1.3;
    }

    .carousel .carousel-caption p.fs-5 {
        font-size: 15px !important;
        line-height: 1.7;
    }

    .carousel .carousel-caption .btn {
        padding: 12px 24px !important;
        font-size: 14px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 48px;
        height: 48px;
    }

    .carousel-control-prev-icon i,
    .carousel-control-next-icon i {
        font-size: 18px;
    }

    .carousel .carousel-indicators {
        margin-bottom: 20px;
    }
}
/*** Carousel End ***/


/*** About Start ***/

.about-section{
    background: linear-gradient(135deg,#f8fafc,#ffffff);
    position: relative;
}

/* IMAGE */
.about-image-wrapper{
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.about-image-main{
    overflow: hidden;
}

.about-image-main img{
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img{
    transform: scale(1.05);
}

/* EXPERIENCE BADGE */
.experience-badge{
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    padding: 15px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    animation: floating 3s ease-in-out infinite;
}

.exp-circle{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--bs-primary),var(--bs-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-circle h2{
    color: #fff;
    margin: 0;
    font-weight: 800;
}

.exp-text h6{
    margin: 0;
    font-weight: 700;
}

.exp-text p{
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* FLOATING CARD */
.floating-card{
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.92);
    padding: 16px 20px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    animation: floating 4s ease-in-out infinite;
}

.floating-card i{
    font-size: 30px;
    color: var(--bs-primary);
}

.floating-card h5{
    margin: 0;
    font-weight: 700;
}

.floating-card span{
    font-size: 13px;
    color: #666;
}

/* CONTENT */
.about-content{
    padding-left: 20px;
}

.about-subtitle{
    color: var(--bs-secondary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-title{
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin: 18px 0;
    color: #111;
}

.about-text{
    font-size: 17px;
    line-height: 1.9;
    color: #555;
}

/* FEATURES */
.about-features{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature{
    background: #fff;
    padding: 15px;
    border-radius: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.feature:hover{
    transform: translateY(-5px);
}

.feature i{
    color: #28a745;
}

/* STATS */
.stats-wrapper{
    display: flex;
    gap: 20px;
    margin-top: 35px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stat-box{
    flex: 1;
    min-width: 160px;
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.stat-box:hover{
    transform: translateY(-6px);
}

.stat-box h2{
    font-size: 42px;
    font-weight: 800;
    color: var(--bs-primary);
    margin-bottom: 5px;
}

/* BUTTON */
.btn-about{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 60px;
    background: linear-gradient(135deg,var(--bs-primary),var(--bs-secondary));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.btn-about:hover{
    transform: translateY(-5px);
    color: #fff;
}

/* FLOATING EFFECT */
@keyframes floating{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* MOBILE */
@media(max-width:991px){

    .about-title{
        font-size: 38px;
    }

    .about-image-main img{
        height: 500px;
    }

    .about-features{
        grid-template-columns: 1fr;
    }

    .stats-wrapper{
        flex-direction: column;
    }

}

/*** About End ***/
/* user about */
/*** ABOUT SECTION (ISOLATED - NO CONFLICTS) ***/

.about-sec{
    background: #f4f6f8;
}

/* IMAGE WRAPPER */
.about-sec-img-wrap{
    position: relative;
    border-radius: 25px;
    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* IMAGE */
.about-sec-img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.about-sec-img-wrap:hover .about-sec-img{
    transform: scale(1.05);
}

/* CONTENT */
.about-sec-content{
    padding: 10px;
}

/* SUBTITLE */
.about-sec-subtitle{
    font-size: 14px;
    letter-spacing: 2px;
}

/* TITLE */
.about-sec-title{
    font-size: 38px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}

/* TEXT */
.about-sec-text{
    font-size: 16px;
    line-height: 1.9;
    color: #666;
}

/* FEATURE ROW */
.about-sec-feature{
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    font-size: 15.5px;
    color: #333;
}

/* ICON */
.about-sec-feature i{
    color: var(--bs-secondary);
    font-size: 18px;
}

/* BUTTON */
.about-sec-btn{
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 28px;
}

/* RESPONSIVE */
@media(max-width: 991px){

    .about-sec-title{
        font-size: 30px;
    }

}
/* user about end */

/* =========================
   QUOTE MODAL
========================= */

.quote-modal{
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

/* DARK BACKDROP */
.quote-modal-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* BOX */
.quote-modal-box{
    position: relative;

    width: 90%;
    max-width: 450px;

    background: #fff;
    border-radius: 20px;

    padding: 30px;

    text-align: center;

    box-shadow: 0 25px 80px rgba(0,0,0,0.3);

    animation: popIn 0.25s ease;
}

/* TITLE */
.quote-modal-box h3{
    font-weight: 800;
    margin-bottom: 10px;
}

/* OPTIONS GRID */
.quote-options{
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-top: 20px;
}

/* OPTION BUTTONS */
.quote-option{
    display: block;

    padding: 12px 15px;

    border-radius: 12px;

    background: #f4f6f8;

    color: #111;
    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

.quote-option:hover{
    background: var(--bs-primary);
    color: #fff;
    transform: translateX(5px);
}

/* CLOSE BUTTON */
.quote-close{
    position: absolute;
    top: 10px;
    right: 12px;

    border: none;
    background: transparent;

    font-size: 18px;

    cursor: pointer;
}

/* ANIMATION */
@keyframes popIn{
    from{
        transform: scale(0.8);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}
/* quote modal end */

/*CONTACT START */
  .contact-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 45px 35px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transition: 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 65px;
            height: 65px;
            min-width: 65px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0d6efd, #0dcaf0);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            margin-right: 20px;
        }

        .contact-text h5 {
            font-weight: 700;
            margin-bottom: 5px;
        }

        .contact-text a,
        .contact-text p {
            margin: 0;
            color: #555;
            font-size: 15px;
            text-decoration: none;
        }

        .contact-text a:hover {
            color: #0d6efd;
        }

        .contact-divider {
            height: 1px;
            background: #eee;
            margin: 20px 0;
        }
/* CONTACT END */

/* FAQ */
  .faq-card {
                background: #fff;
                border-radius: 15px;
                padding: 18px 20px;
                margin-bottom: 15px;
                box-shadow: 0 10px 25px rgba(0,0,0,0.05);
                transition: 0.3s;
                overflow: hidden;
            }

            .faq-card:hover {
                box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            }

            .faq-question {
                cursor: pointer;
                font-weight: 600;
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-size: 17px;
            }

            .faq-answer {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, opacity 0.3s ease;
                opacity: 0;
                color: #555;
                font-size: 15px;
            }

            .faq-card.active .faq-answer {
                max-height: 200px;
                margin-top: 10px;
                opacity: 1;
            }

            .faq-icon {
                transition: 0.3s;
            }

            .faq-card.active .faq-icon {
                transform: rotate(180deg);
            }

            .hidden {
                display: none !important;
            }

/* FAQ END */

/* SUCCESS */
 .success-section {
        background: linear-gradient(135deg, #FFFFFF, #D1D1D1);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    .success-card {
        background: #ffffff;
        color: #333;
        border-radius: 20px;
        padding: 50px 30px;
        max-width: 600px;
        width: 100%;
        text-align: center;
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        animation: fadeInUp 0.8s ease;
    }

    .success-icon {
        font-size: 70px;
        color: #28a745;
        margin-bottom: 20px;
    }

    .success-card h2 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .success-card p {
        font-size: 16px;
        color: #666;
        margin-bottom: 25px;
    }

    .btn-custom {
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: 600;
        margin: 5px;
        transition: 0.3s;
    }

    .btn-primary-custom {
        background: #0d6efd;
        color: #fff;
        border: none;
    }

    .btn-primary-custom:hover {
        background: #084298;
    }

    .btn-outline-custom {
        border: 2px solid #0d6efd;
        color: #0d6efd;
        background: transparent;
    }

    .btn-outline-custom:hover {
        background: #0d6efd;
        color: #fff;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
/* SUCCESS END */
/*** Service list ***/
.service-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.service-item.active {
    border: 1px solid #198754;
    background: linear-gradient(145deg, #f8fff9, #ffffff);
    box-shadow: 0 6px 20px rgba(25, 135, 84, 0.15);
}

.service-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 4px;
    border-radius: 4px;
    background: #198754;
}

.service-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
}

.service-check {
    transform: scale(1.2);
    cursor: pointer;
}

.service-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.price {
    font-weight: 600;
    color: #198754;
    background: rgba(25, 135, 84, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.qty-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 4px;
    gap: 4px;
}

.qty-box input {
    width: 50px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 600;
    outline: none;
}

.qty-box button {
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bs-secondary);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.qty-box button:hover {
    transform: scale(1.1);
    opacity: 0.9;
}
/*** Service list end ***/
/*** Features Start ***/
/*** FEATURE / QUOTE SECTION ***/

.feature{
    position: relative;
    background: #f4f6f8; /* premium soft grey */
    overflow: hidden;
}

/* =========================
   SECTION HEADER
========================= */

.feature h2{
    font-weight: 800;
    letter-spacing: 1px;
    color: #111;
}

.feature .text-center p{
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/* =========================
   FEATURE CARD
========================= */

.feature .feature-item{
    position: relative;

    background: #ffffff;

    border-radius: 22px;

    border: 1px solid rgba(0,0,0,0.05);

    padding: 35px 25px;

    height: 100%;

    transition: all 0.4s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    overflow: hidden;
}

/* PREMIUM HOVER LIFT */
.feature .feature-item:hover{
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: rgba(0,0,0,0.08);
}

/* =========================
   ICON CIRCLE
========================= */

.feature .feature-img{
    width: 90px;
    height: 90px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;

    background: linear-gradient(
        135deg,
        var(--bs-secondary),
        var(--bs-primary)
    );

    box-shadow: 0 15px 35px rgba(0,0,0,0.12);

    transition: all 0.4s ease;
}

/* ICON STYLE */
.feature .feature-img i{
    color: #fff;
}

/* ICON HOVER EFFECT */
.feature .feature-item:hover .feature-img{
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

/* =========================
   TITLE
========================= */

.feature .feature-item a.h5{
    display: block;

    font-size: 20px;
    font-weight: 700;

    color: #111;

    margin-top: 18px;
    margin-bottom: 12px;

    text-decoration: none;

    transition: 0.3s ease;
}

/* TITLE HOVER */
.feature .feature-item:hover a.h5{
    color: var(--bs-primary);
}

/* =========================
   TEXT
========================= */

.feature .feature-item p{
    font-size: 15.5px;
    color: #666;
    line-height: 1.8;
}

/* =========================
   BUTTON
========================= */

.feature .feature-item .btn{
    margin-top: 10px;

    border-radius: 50px;

    padding: 10px 22px;

    font-weight: 600;

    border: none;

    color: #fff;

    background: linear-gradient(
        135deg,
        var(--bs-primary),
        var(--bs-secondary)
    );

    box-shadow: 0 10px 25px rgba(0,0,0,0.12);

    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.feature .feature-item .btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* =========================
   SOFT BACKGROUND GLOW EFFECT
========================= */

.feature .feature-item::before{
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;

    width: 160px;
    height: 160px;

    background: rgba(0,0,0,0.03);

    border-radius: 50%;

    z-index: 0;
}

/* CONTENT ABOVE EFFECT */
.feature .feature-item *{
    position: relative;
    z-index: 2;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px){

    .feature .feature-item{
        padding: 30px 20px;
    }

    .feature .feature-img{
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px){

    .feature .feature-item{
        text-align: center;
    }
} 
/*** Features End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.service .service-item .service-content {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%; 
    left: 0; 
    transform: translateY(-50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.service .service-item:hover .service-content {
    opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
    color: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover .service-content a.fs-4:hover {
    color: var(--bs-secondary);
}

.service .service-item .service-title {
    position: absolute;
    width: 100%;
    height: 80px; 
    bottom: 0; 
    right: 0;
    background: var(--bs-light);
    display: flex;
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-title {
    margin-right: -100%;
}
/*** Services End ***/

/*** Blog Start ***/
/* =========================================
   PREMIUM SERVICES SECTION
========================================= */

.blog{
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* =========================================
   FADED BACKGROUND IMAGE
========================================= */

.blog::before{
  content: "";
    position: absolute;
    inset: 0;

    background: url("../img/bg.jpg") center/cover no-repeat;

    opacity: 0.25;

    z-index: -1;
}

/* SOFT OVERLAY */
.blog::after{
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.94),
        rgba(248,250,252,0.97)
    );

    z-index: -1;
}

/* =========================================
   SECTION TITLE
========================================= */

.blog h2{
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
}

.blog .text-center p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}

/* =========================================
   SERVICE CARD
========================================= */

.blog .blog-item{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,0.95);

    backdrop-filter: blur(10px);

    height: 100%;

    transition: all 0.45s ease;

    box-shadow: 0 10px 35px rgba(0,0,0,0.06);

    border: 1px solid rgba(255,255,255,0.5);
}

/* HOVER EFFECT */
.blog .blog-item:hover{
    transform: translateY(-14px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.14);
}

/* =========================================
   IMAGE WRAPPER
========================================= */

.blog .blog-item .blog-img{
    position: relative;
    overflow: hidden;
    height: 280px;
}

/* IMAGE */
.blog .blog-item .blog-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* IMAGE ZOOM */
.blog .blog-item:hover .blog-img img{
    transform: scale(1.12);
}

/* DARK OVERLAY */
.blog .blog-item .blog-img::before{
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.05)
    );

    z-index: 1;

    opacity: 0;

    transition: 0.4s ease;
}

/* SHOW OVERLAY ON HOVER */
.blog .blog-item:hover .blog-img::before{
    opacity: 1;
}

/* =========================================
   TOP GRADIENT BORDER
========================================= */

.blog .blog-item::before{
    content: "";
    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        var(--bs-primary),
        var(--bs-secondary)
    );

    transition: 0.5s ease;

    z-index: 2;
}

.blog .blog-item:hover::before{
    left: 0;
}

/* =========================================
   GLASS DECORATION
========================================= */

.blog .blog-item::after{
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    background: rgba(255,255,255,0.08);

    border-radius: 50%;

    top: -60px;
    right: -60px;

    z-index: 1;
}

/* =========================================
   CONTENT
========================================= */

.blog .blog-item .blog-content{
    position: relative;
    padding: 32px;
    z-index: 2;
}

/* TITLE */
.blog .blog-item .blog-content a.h4{
    display: block;

    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;

    color: #111;

    text-decoration: none;

    margin-bottom: 18px;

    transition: all 0.3s ease;
}

/* TITLE HOVER */
.blog .blog-item:hover .blog-content a.h4{
    color: var(--bs-primary);
}

/* DESCRIPTION */
.blog .blog-item .blog-content p{
    color: #666;
    font-size: 15.5px;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* =========================================
   BUTTON
========================================= */

.blog .blog-item .btn{
    position: relative;
    overflow: hidden;

    border: none;

    border-radius: 50px;

    padding: 13px 28px;

    font-weight: 600;

    letter-spacing: 0.5px;

    background: linear-gradient(
        135deg,
        var(--bs-primary),
        var(--bs-secondary)
    );

    color: #fff;

    transition: all 0.4s ease;

    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* BUTTON SHINE EFFECT */
.blog .blog-item .btn::before{
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80px;
    height: 100%;

    background: rgba(255,255,255,0.25);

    transform: skewX(-20deg);

    transition: 0.7s;
}

/* SHINE ANIMATION */
.blog .blog-item .btn:hover::before{
    left: 140%;
}

/* BUTTON HOVER */
.blog .blog-item .btn:hover{
    transform: translateY(-3px);

    color: #fff;

    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px){

    .blog{
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .blog .blog-item .blog-img{
        height: 240px;
    }

    .blog .blog-item .blog-content{
        padding: 25px;
    }

    .blog .blog-item .blog-content a.h4{
        font-size: 22px;
    }

}

/* MOBILE */
@media (max-width: 576px){

    .blog .blog-item{
        border-radius: 22px;
    }

    .blog .blog-item .blog-img{
        height: 220px;
    }

    .blog .blog-item .blog-content{
        padding: 22px;
    }

    .blog .text-center p{
        font-size: 15px;
    }

}
/*** Blog End ***/

/*** Contact Start ***/
.contact .contact-map {
    position: relative;
    overflow: hidden;
    padding: 20px;
    z-index: 1;
}

.contact .contact-map::before {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    z-index: -1;
}

.contact .contact-map::after {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bs-secondary);
    z-index: -1;
}
/*** Contact End ***/

/*** Footer Start ***/
/*** PREMIUM FOOTER ***/

.footer{
    position: relative;

    /* keep your original image + upgrade overlay */
    background: linear-gradient(
        135deg,
        rgba(0, 18, 72, 0.92),
        rgba(0, 18, 72, 0.98)
    ),
    url("../img/footer-img.jpg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    padding-top: 90px;
    padding-bottom: 60px;

    overflow: hidden;
}

/* =========================
   SOFT GLOW EFFECT
========================= */

.footer::before{
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;

    width: 300px;
    height: 300px;

    background: rgba(255,255,255,0.06);

    border-radius: 50%;

    filter: blur(40px);

    z-index: 0;
}

/* CONTENT ABOVE EFFECT */
.footer .container{
    position: relative;
    z-index: 2;
}

/* =========================
   FOOTER TITLE
========================= */

.footer h4{
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* =========================
   TEXT
========================= */

.footer .footer-item p{
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    font-size: 15.5px;
}

/* =========================
   LINKS
========================= */

.footer .footer-item a{
    display: block;

    line-height: 38px;

    color: rgba(255,255,255,0.75);

    text-decoration: none;

    transition: all 0.35s ease;

    font-size: 15px;
}

/* HOVER EFFECT */
.footer .footer-item a:hover{
    color: var(--bs-secondary);
    transform: translateX(6px);
}

/* =========================
   SOCIAL LINKS (PREMIUM BUTTON STYLE)
========================= */

.footer .footer-item a i{
    margin-right: 8px;
    transition: 0.3s ease;
}

.footer .footer-item a:hover i{
    color: var(--bs-secondary);
}

/* =========================
   CONTACT INFO SPECIAL STYLE
========================= */

.footer .footer-item a[href*="mailto"],
.footer .footer-item a[href*="tel"]{
    font-weight: 500;
}

/* =========================
   OPTIONAL CARD FEEL (SUBTLE)
========================= */

.footer .footer-item{
    padding: 10px;
}

/* =========================
   HOVER ANIMATION GLOW
========================= */

.footer .footer-item a:hover{
    text-shadow: 0 0 10px rgba(255,255,255,0.15);
}

/* =========================
   COPYRIGHT SECTION
========================= */

.copyright{
    background: #070b1f;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;

    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.copyright a{
    color: var(--bs-secondary);
    text-decoration: none;
}

.copyright a:hover{
    text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 991px){

    .footer{
        padding-top: 70px;
    }

    .footer h4{
        font-size: 18px;
    }
}

@media(max-width: 576px){

    .footer .footer-item a{
        line-height: 32px;
    }
}
/*** copyright end ***/


