/* Modern Services Section Redesign */
.services-modern-section {
    background: linear-gradient(120deg, #fff6e0 60%, #ffefc1 100%);
    padding: 60px 0 40px 0;
}
.services-modern-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #243d71;
    margin-bottom: 38px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ff7300 60%, #ffee00 100%);
    border-radius: 14px;
    display: inline-block;
    padding: 12px 38px;
    box-shadow: 0 2px 16px rgba(255,115,0,0.10);
}
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 38px;
    max-width: 1200px;
    margin: 0 auto 32px auto;
    padding: 0 18px;
}
.service-modern-card {
    background: linear-gradient(120deg, #fff 60%, #ffefc1 100%);
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(36,61,113,0.10);
    padding: 32px 18px 24px 18px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}
.service-modern-card:hover {
    box-shadow: 0 10px 32px rgba(255,115,0,0.18);
    transform: translateY(-6px) scale(1.04);
}
.service-modern-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(255,115,0,0.10);
}
.service-modern-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff7300;
    margin-bottom: 10px;
    letter-spacing: 0.7px;
    text-shadow: 0 2px 8px rgba(255,115,0,0.10);
}
.service-modern-card p {
    font-size: 1.08rem;
    color: #243d71;
    margin-bottom: 0;
    line-height: 1.6;
}
.services-modern-readmore {
    margin-top: 18px;
}
.services-modern-readmore .btn-modern {
    background: linear-gradient(90deg, #ff7300 60%, #ffee00 100%);
    color: #fff;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255,115,0,0.12);
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.services-modern-readmore .btn-modern:hover {
    background: #243d71;
    color: #fff;
}
@media (max-width: 900px) {
    .services-modern-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 22px;
        padding: 0 4vw;
    }
    .service-modern-card {
        min-height: 260px;
        padding: 22px 8px 16px 8px;
    }
    .services-modern-title {
        font-size: 1.7rem;
        padding: 8px 18px;
    }
}
@media (max-width: 600px) {
    .services-modern-section {
        padding: 32px 0 18px 0;
    }
    .services-modern-title {
        font-size: 1.2rem;
        padding: 6px 8px;
        margin-bottom: 18px;
    }
    .services-modern-grid {
        gap: 12px;
        padding: 0 2vw;
    }
    .service-modern-card {
        min-height: 180px;
        padding: 12px 2px 8px 2px;
    }
    .service-modern-card img {
        width: 54px;
        height: 54px;
        margin-bottom: 10px;
    }
    .service-modern-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .service-modern-card p {
        font-size: 0.98rem;
    }
    .services-modern-readmore .btn-modern {
        padding: 10px 16px;
        font-size: 0.98rem;
    }
}
/* Colorful About US heading */
.colourful-about {
     background: linear-gradient(135deg, #ffb347 0%, #ffcc80 100%);
    color: #fff !important;
    padding: 10px 32px;
    border-radius: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 2.2rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.10);
    display: inline-block;
    box-shadow: 0 2px 16px rgba(0,114,255,0.10);
}
/* Icon Group-1 Card Design */
.icon-card {
    background: linear-gradient(135deg, #ffb347 0%, #ffcc80 100%);
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    padding: 28px 14px 18px 14px;
    margin: 16px 0;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s, background 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}
.icon-card:nth-child(1) { background: linear-gradient(135deg, #ff6a00 0%, #ffd800 100%); }
.icon-card:nth-child(2) { background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%); }
.icon-card:nth-child(3) { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.icon-card:nth-child(4) { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.icon-card:nth-child(5) { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.icon-card:hover {
    box-shadow: 0 10px 32px rgba(0,0,0,0.18);
    transform: translateY(-6px) scale(1.06);
    background: linear-gradient(135deg, #fff 0%, #ffe082 100%);
}
.icon-card-img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 14px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    padding: 8px;
}
.icon-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
    letter-spacing: 0.7px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
/* Collaborate Modal Custom Styles */
.collaborate-modal-content {
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(36,61,113,0.18);
    overflow: hidden;
    border: none;
}
.collaborate-modal-content .modal-header {
    border-bottom: none;
    padding: 24px 32px 16px 32px;
}
.collaborate-modal-content .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.collaborate-modal-content .close {
    font-size: 2rem;
    opacity: 1;
    outline: none;
    border: none;
    background: none;
    transition: color 0.2s;
}
.collaborate-modal-content .close:hover {
    color: #243d71;
}
.collaborate-modal-content .modal-body {
    background: #fff;
    padding: 32px 32px 24px 32px;
}
.collaborate-modal-content .form-group label {
    font-weight: 600;
    color: #243d71;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.collaborate-modal-content .form-control {
    border-radius: 8px;
    border: 1px solid #eee;
    font-size: 1rem;
    margin-bottom: 10px;
    box-shadow: none;
    transition: border-color 0.2s;
}
.collaborate-modal-content .form-control:focus {
    border-color: #ff7300;
    box-shadow: 0 0 0 2px #ffee0033;
}
.collaborate-modal-content .btn-modern {
    background: linear-gradient(120deg, #ff7300 60%, #ffee00 100%);
    color: #fff;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(36,61,113,0.10);
    transition: background 0.3s, color 0.3s;
    border: none;
    cursor: pointer;
}
.collaborate-modal-content .btn-modern:hover {
    background: #243d71;
    color: #fff;
}
@media (max-width: 600px) {
    .collaborate-modal-content .modal-header,
    .collaborate-modal-content .modal-body {
        padding: 16px 8px;
    }
    .collaborate-modal-content .modal-title {
        font-size: 1.1rem;
    }
    .collaborate-modal-content .btn-modern {
        padding: 10px 16px;
        font-size: 0.98rem;
    }
}
.client-card-row-scroll {
    display: flex;
    flex-direction: row;
    gap: 32px;
    overflow-x: auto;
    padding: 16px 32px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.client-card-row-scroll::-webkit-scrollbar {
    height: 8px;
    background: #f3e9e0;
}
.client-card-row-scroll::-webkit-scrollbar-thumb {
    background: #ff7300;
    border-radius: 8px;
}
.client-card {
    min-width: 220px;
    max-width: 220px;
    flex: 0 0 auto;
}
@media (max-width: 600px) {
    .client-card-row-scroll {
        gap: 16px;
        padding: 12px 10px;
    }
    .client-card {
        min-width: 140px;
        max-width: 140px;
    }
}
.client-card-icon {
    font-size: 2.8rem;
    color: #ff7300;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(36,61,113,0.08);
}
/* Our Client Card Section */
.client-card-section {
    margin: 48px 0 32px 0;
    padding: 0 12px;
}
.client-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    justify-items: center;
    align-items: stretch;
    margin: 32px auto 0 auto;
    max-width: 1100px;
}
.client-card {
    background: linear-gradient(120deg, #fff6e0 60%, #ff7300 100%);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(36,61,113,0.10);
    padding: 24px 12px 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    min-height: 180px;
    width: 100%;
    max-width: 220px;
}
.client-card:hover {
    box-shadow: 0 8px 32px rgba(36,61,113,0.18);
    transform: translateY(-6px) scale(1.04);
}
.client-card-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 14px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(36,61,113,0.08);
}
.client-card-name {
    font-size: 1.08rem;
    font-weight: 600;
    color: #243d71;
    margin-top: 6px;
    text-align: center;
    letter-spacing: 0.5px;
}
@media (max-width: 600px) {
    .client-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .client-card {
        padding: 16px 4px 10px 4px;
        min-height: 120px;
        max-width: 140px;
    }
    .client-card-img {
        width: 54px;
        height: 54px;
    }
    .client-card-name {
        font-size: 0.98rem;
    }
}
/* Redesigned Get Started Block */
.get-started-modern-block {
    background: linear-gradient(135deg, #ff7300 60%, #ffee00 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(36,61,113,0.18);
    padding: 48px 24px;
    margin: 40px auto 32px auto;
    max-width: auto;
    width: 90vw;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.get-started-modern-block:hover {
    box-shadow: 0 12px 40px rgba(36,61,113,0.25);
}
.get-started-modern-overlay {
    text-align: center;
    color: #fff;
}
.get-started-modern-icon {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.13);
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    box-shadow: 0 2px 12px rgba(36,61,113,0.13);
}
.get-started-modern-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 1px;
    line-height: 1.2;
}
.get-started-modern-desc {
    font-size: 1.13rem;
    margin-bottom: 28px;
    color: #f3e9e0;
}
.get-started-modern-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}
.get-started-modern-btn {
    background: #fff;
    color: #ff7300;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(36,61,113,0.10);
    transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}
.get-started-modern-btn:hover {
    background: #243d71;
    color: #fff;
}
@media (max-width: 900px) {
    .get-started-modern-block {
        max-width: 98vw;
        padding: 32px 8px;
    }
}
@media (max-width: 600px) {
    .get-started-modern-block {
        padding: 20px 2vw;
        max-width: 100vw;
        width: 99vw;
    }
    .get-started-modern-title {
        font-size: 1.2rem;
    }
    .get-started-modern-desc {
        font-size: 1rem;
    }
    .get-started-modern-btn {
        padding: 10px 16px;
        font-size: 0.98rem;
    }
}
/* Modern Project Block Styles */
.modern-project-block {
    background: linear-gradient(135deg, #ff7300 60%, #ffee00 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(36,61,113,0.18);
    padding: 48px 24px;
    margin: 40px auto 32px auto;
    max-width: auto;
    width: 90vw;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.modern-overlay {
    text-align: center;
    color: #fff;
}
.modern-icon {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    box-shadow: 0 2px 12px rgba(36,61,113,0.12);
}
.modern-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.modern-desc {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #e0e0e0;
}
.modern-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.btn-modern {
    background: #fff;
    color: #243d71;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(36,61,113,0.10);
    transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-modern:hover {
    background: #243d71;
    color: #fff;
}
@media (max-width: 600px) {
    .modern-project-block {
        padding: 24px 8px;
        max-width: 98vw;
    }
    .modern-title {
        font-size: 1.3rem;
    }
    .modern-desc {
        font-size: 1rem;
    }
}
