﻿/* ================= QUOTE PAGE ================= */
.quote-section {
    background: #f8fafc;
}

.quote-form-box {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.quote-text {
    color: #6b7280;
}

/* INPUT */
.custom-input {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    padding-left: 15px;
    box-shadow: none !important;
}

textarea.custom-input {
    height: auto;
    padding-top: 15px;
}

/* BUTTON */
.quote-btn {
    border-radius: 40px;
    font-weight: 700;
    transition: 0.3s;
}

.quote-btn:hover {
    transform: translateY(-3px);
}

/* MOBILE */
@media(max-width:991px){

    .quote-form-box{
        padding:30px;
    }

}

    /* ================= SERVICE PAGE ================= */
.service-details-section {
    background: #fff;
}

.service-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-text {
    color: #6b7280;
    line-height: 1.9;
    font-size: 17px;
}

/* FEATURES */
.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0b1c2c;
}

.service-feature i {
    color: #f59e0b;
}

.service-btn {
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
}

/* ================= BENEFITS ================= */
.service-benefits-section {
    background: #f8fafc;
}

.benefit-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

/* ================= PROCESS ================= */
.service-process-section {
    background: #fff;
}

.process-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: 0.3s;
}

.process-card:hover {
    transform: translateY(-8px);
}

.process-number {
    width: 70px;
    height: 70px;
    background: #f59e0b;
    color: #fff;
    margin: auto;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.process-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b1c2c;
}

.process-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* ================= MOBILE ================= */
@media(max-width:991px)
{

    .service-text{
        font-size:16px;
    }
                 }


/* ================= THANK YOU ================= */
.thankyou-section {
    background: #f8fafc;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thankyou-box {
    background: #fff;
    padding: 70px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: auto;
}

.thank-icon {
    font-size: 90px;
    color: #22c55e;
}

.thankyou-box h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0b1c2c;
}

.thankyou-box p {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.9;
}

/* ================= CONTACT PAGE ================= */
.contact-section {
    background: #fff;
}

.contact-text {
    color: #6b7280;
    line-height: 1.9;
    font-size: 17px;
}

/* CONTACT INFO */
.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* ICON */
.contact-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* TEXT */
.contact-info-item h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #0b1c2c;
}

.contact-info-item p {
    margin: 0;
    color: #6b7280;
    line-height: 1.8;
}

/* FORM */
.contact-form-box {
    background: #f8fafc;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-form-box h3 {
    font-weight: 800;
    color: #0b1c2c;
}

/* INPUT */
.custom-input {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    padding-left: 15px;
    box-shadow: none !important;
}

textarea.custom-input {
    height: auto;
    padding-top: 15px;
}

/* BUTTON */
.contact-btn {
    border-radius: 40px;
    font-weight: 700;
    transition: 0.3s;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

/* MAP */
.map-section iframe {
    display: block;
}

/* MOBILE */
@media(max-width:991px){

    .contact-form-box{
        padding:30px;
    }

}

    .quote-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.quote-box {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.quote-title {
    font-size: 42px;
    font-weight: 800;
    color: #0b1c2c;
}

.custom-input {
    height: 58px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    padding-left: 15px;
}

textarea.custom-input {
    height: 140px;
    padding-top: 15px;
}

.service-box {
    margin-bottom: 12px;
}

.submit-btn {
    background: #f4a000;
    color: #fff;
    padding: 15px 45px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
}

.submit-btn:hover {
    background: #d88c00;
}

.text-danger {
    font-size: 13px;
}


.preview-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    border:1px solid #eee;
}

.preview-card:hover{
    transform:translateY(-5px);
}

.preview-image{
    width:100%;
    object-fit:cover;
}

.preview-text{
    padding:10px;
    font-size:13px;
    margin:0;
    text-align:center;
    color:#555;
    font-weight:600;
    word-break:break-word;
}


.blog-section{
    background:#f5f7fb;
}

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.blog-content{
    padding:25px;
}

.blog-content h4{
    font-weight:700;
    margin-bottom:15px;
    color:#0b1c2c;
}

.blog-content p{
    color:#666;
    line-height:1.8;
}

.read-btn{
    display:inline-block;
    margin-top:10px;
    color:#f59e0b;
    font-weight:700;
    text-decoration:none;
}

@media(max-width:768px){

    .navbar-nav{
        padding-top:15px;
    }

    .navbar .btn{
        margin-top:10px;
        width:100%;
    }

    .top-bar .row{
        text-align:center;
        gap:10px;
    }

    .social-icons{
        margin-top:5px;
    }
}

    .navbar-nav .nav-link{
    padding:12px 15px;
    font-weight:500;
}

@media(max-width:991px){

    .navbar-collapse{
        background:#fff;
        padding:20px;
        margin-top:15px;
        border-radius:10px;
    }

    .navbar-nav{
        text-align:center;
    }

   /* DESKTOP DROPDOWN */
@media (min-width: 992px) {

    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

}

/* MOBILE DROPDOWN */
@media (max-width: 991px) {

    .dropdown-menu {
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

}
    .btn{
        width:100%;
    }
}