* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f9;
    color: #333;
    line-height: 1.6;
}


/* HOME SECTION */
.home-section {
    background: linear-gradient(135deg, #f8fbff, #eef3ff);
}

.home-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.home-section h2 {
    color: #0d6efd;
    font-size: 28px;
    margin-bottom: 12px;
}

.home-text {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
}

/* FEATURES */
.home-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: #0d6efd;
    border: 1px solid #dce3ff;
    font-weight: 600;
}

/* CTA */
.home-cta a {
    font-size: 20px;
    font-weight: bold;
}

/* MOBILE */
@media (max-width: 480px) {
    .home-section h2 {
        font-size: 22px;
    }

    .home-text {
        font-size: 14px;
    }

    .home-cta a {
        font-size: 17px;
    }
}

/* NAVBAR */
nav {
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    flex-wrap: wrap;
}

/* BACK BUTTON */
.back-btn {
    background: #fff;
    color: #0d6efd;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.back-btn:hover {
    background: #e6e6e6;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 12px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* HEADER */
header {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 35px 15px;
}

header h1 {
    font-size: 30px;
}

header p {
    margin-top: 10px;
    font-size: 16px;
}

/* SECTIONS */
.box {
    background: #fff;
    max-width: 1100px;
    margin: 20px auto;
    padding: 30px;
    border-radius: 8px;
}

h2 {
    color: #0d6efd;
    margin-bottom: 12px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* CTA */
.cta {
    background: #0d6efd;
    text-align: center;
    padding: 18px;
    border-radius: 6px;
    margin-top: 25px;
}

.cta a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

/* FOOTER */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 15px;
    margin-top: 30px;
}

.footer-links {
    margin-top: 8px;
}

.footer-links a {
    color: #0d6efd;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* TABLET */
@media (max-width: 768px) {
    header h1 {
        font-size: 24px;
    }

    .box {
        margin: 15px;
        padding: 20px;
    }

    .cta a {
        font-size: 18px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 8px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    header h1 {
        font-size: 22px;
    }

    .cta a {
        font-size: 16px;
    }
}
/* CONTACT STANDALONE SECTION */
.contact-standalone {
    padding: 80px 15px;
    background: #f6f9ff;
}

/* WRAP */
.contact-wrap {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 28px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

/* LEFT */
.contact-left h2 {
    font-size: 32px;
    font-weight: 900;
    color: #0d6efd;
    margin-bottom: 10px;
}

.contact-left p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item span {
    font-size: 26px;
}

.info-item strong {
    display: block;
    font-size: 14px;
    color: #111;
}

.info-item p {
    font-size: 14px;
    color: #555;
}

/* RIGHT */
.contact-right {
    background: linear-gradient(135deg, #0d6efd, #6ea8fe);
    color: #ffffff;
    border-radius: 24px;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-right h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-right p {
    font-size: 14px;
    opacity: .95;
    margin-bottom: 20px;
}

/* CALL BUTTON */
.contact-call-btn {
    display: inline-block;
    background: #ffffff;
    color: #0d6efd;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-wrap {
        grid-template-columns: 1fr;
        padding: 35px 25px;
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }

    .contact-left h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .contact-left h2 {
        font-size: 24px;
    }
}
/* SERVICE GUARANTEE SECTION */
.guarantee-section {
    padding: 80px 15px;
    background: #ffffff;
}

/* WRAP */
.guarantee-wrap {
    max-width: 1100px;
    margin: auto;
    background: linear-gradient(135deg, #f8fbff, #eef3ff);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

/* HEADER */
.guarantee-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.guarantee-header h2 {
    font-size: 32px;
    font-weight: 900;
    color: #0d6efd;
    margin-bottom: 10px;
}

.guarantee-header p {
    font-size: 15px;
    color: #555;
}

/* GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ITEM */
.guarantee-item {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0,0,0,0.15);
}

.guarantee-item span {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.guarantee-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.guarantee-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* CTA */
.guarantee-cta {
    text-align: center;
    margin-top: 45px;
}

.guarantee-cta a {
    display: inline-block;
    background: #0d6efd;
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(13,110,253,0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .guarantee-wrap {
        padding: 40px 25px;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-header h2 {
        font-size: 26px;
    }
}
.cp-direct{
    padding:70px 15px;
    background:#f7faff;
}
.cp-grid{
    max-width:1000px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}
.cp-box{
    background:#fff;
    border-radius:22px;
    padding:30px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,.1);
}
.cp-box span{
    font-size:38px;
    display:block;
    margin-bottom:10px;
}
@media(max-width:768px){
    .cp-grid{grid-template-columns:1fr;}
}
