:root {
 --brand: #2E7D32;
  --sub: #FBC02D;
  --body: #516171;
  --border: rgba(0,0,0,0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}


 /* ===== WHY TIMELINE DESIGN ===== */

.icb-why-timeline-section {
    padding: 50px 0;
    background: #ffffff;
}

.icb-why-heading {
    font-size: 34px;
    font-weight: 700;
    color: #222;
}

.icb-why-sub {
    color: #666;
    font-size: 15px;
}

/* Timeline container */
.icb-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

/* Center line */
.icb-timeline::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
}

/* Item */
.icb-timeline-item {
    width: 18%;
    text-align: center;
    position: relative;
    transition: 0.4s ease;
}

/* Icon circle */
.icb-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--brand);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

/* Card text */
.icb-timeline-item h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.icb-timeline-item p {
    font-size: 14px;
    color: #666;
}

/* Hover effect */
.icb-timeline-item:hover .icb-icon {
    background: #000;
    transform: scale(1.1);
}

.icb-timeline-item:hover {
    transform: translateY(-8px);
}

/* Responsive */
@media (max-width: 768px) {
    .icb-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .icb-timeline::before {
        display: none;
    }

    .icb-timeline-item {
        width: 100%;
    }
}


/* ===== CONTACT PROFESSIONAL ===== */

.icb-contact-pro {
    background: #ffffff;
}

/* Heading */
.icb-contact-top h2 {
    font-size: 32px;
    font-weight: 700;
}

.icb-contact-top p {
    color: #666;
    margin-top: 8px;
}

/* Blocks */
.icb-contact-block {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;

    /* NEW */
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.icb-contact-block i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
    font-size: 18px;
    color: #2e7d32;
    border: 2px solid #2e7d32;

    transition: all 0.35s ease;
    margin-bottom: 12px;
}

/* Hover effect */
.icb-contact-block:hover i {
    background: #2e7d32;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

/* Title */
.icb-contact-block h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.icb-contact-block p {
    font-size: 14px;
    color: #555;
}

/* Links */
.icb-contact-block a {
    color: #555;
    text-decoration: none;
}

.icb-contact-block a:hover {
    color: #0d6efd;
}

/* Hover (subtle) */
.icb-contact-block:hover {
    border-color: #ddd;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Map */
.icb-contact-map {
    border-radius: 10px;
    overflow: hidden;
    height: 350px;
}

.icb-contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .icb-contact-map {
        height: 250px;
    }
}

.icb-contact-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: #2e7d32; /* your brand green */
    transition: 0.4s ease;
}

.icb-contact-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: transparent;
}

.icb-contact-block:hover::before {
    width: 100%;
}
.icb-contact-pro {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f9fbf9);
}