/* Import font if not already present */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
    --gws-bg: #f6f8fc;
    --gws-accent: #5b61ff;
    --gws-text: #111827;
    --gws-text-dim: #5f6b7a;
}

.gws-hero {
    background-color: var(--gws-bg);
    color: var(--gws-text);
    font-family: 'Inter', sans-serif;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.gws-hero {
    background: linear-gradient(135deg, #f6f8fc 0%, #eef2ff 100%);
    color: var(--gws-text);
}

.gws-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

/* Left Content Styles */
.gws-main-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gws-highlight {
    background-color: var(--gws-accent);
    color: #ffffff;
    padding: 0 10px;
    display: inline-block;
    border-radius: 8px;
}

.gws-description {
    font-size: 1.1rem;
    color: var(--gws-text-dim);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 40px;
}

.gws-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #5b61ff 0%, #7b61ff 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 12px 30px rgba(91, 97, 255, 0.22);
    transition: all 0.3s ease;
    margin-bottom: 60px;
}

.gws-cta-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Stats Styles */
.gws-stats-grid {
    display: flex;
    gap: 50px;
}

.gws-stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #777;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.gws-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

/* Right Side: The Stepped Image Effect */
.gws-image-side {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.gws-image-stepped-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    /* This creates the unique stepped "notched" corners look */
    clip-path: polygon(
        15% 0, 100% 0, 
        100% 85%, 85% 85%, 
        85% 100%, 0 100%, 
        0 15%, 15% 15%
    );
}

.gws-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Decorative Elements */
.gws-decor {
    position: absolute;
    color: #d8e8a5; /* Slightly darker than bg */
    font-weight: bold;
    user-select: none;
    pointer-events: none;
}
.gws-decor {
    color: #d9ddff;
}
.gws-decor-plus-top {
    top: 10%;
    left: 20%;
    font-size: 2.5rem;
}

.gws-decor-star-bottom {
    bottom: 10%;
    left: 5%;
    font-size: 3rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .gws-hero { padding: 60px 0; }
    .gws-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .gws-content-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .gws-description { margin-left: auto; margin-right: auto; }
    .gws-image-side { justify-content: center; margin-top: 40px; }
    .gws-stats-grid { 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 30px;
    }
}

/* Section Base */
.ids-services-section {
    background: #ffffff;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    color: #000000;
}

.ids-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Badge */
.ids-badge {
    background: #E8E8E8;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: inline-block;
    margin-bottom: 20px;
}

.ids-badge {
    background: #eef2ff;
    color: #3f46d8;
}

.ids-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.ids-main-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
}

.ids-highlight {
    background-color: #5b61ff;
    color: #ffffff;
    padding: 2px 10px;
    border-radius: 8px;
}

.ids-see-more {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.ids-see-more:hover {
    gap: 12px;
    opacity: 0.7;
}

/* Grid Layout */
.ids-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card Styling */
.ids-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid #edf1f7;
    box-shadow: 0 12px 40px rgba(17, 24, 39, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ids-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.10);
}

.ids-tag {
    background-color: #eef2ff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #3f46d8;
}

.ids-image-box {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid #F0F0F0;
}

.ids-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.ids-card-body {
    padding: 0 10px 10px;
}

.ids-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ids-card-text {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Tags Styles */
.ids-tag-group {
    display: flex;
    gap: 10px;
}

.ids-tag {
    background-color: #F1F9D4; /* Lighter version for tag background */
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .ids-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .ids-grid {
        grid-template-columns: 1fr;
    }
    .ids-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .ids-main-title {
        font-size: 32px;
    }
}


/* =========================
   Extra Professional Sections
========================= */

.rta-tech-section,
.rta-support-section,
.rta-promise-section,
.rta-final-section {
    font-family: 'Inter', sans-serif;
}

.rta-tech-section {
    background: #f8faff;
    padding: 90px 20px;
}

.rta-tech-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rta-tech-header {
    max-width: 760px;
    margin-bottom: 40px;
}

.rta-tech-badge,
.rta-support-badge,
.rta-promise-badge,
.rta-final-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.rta-tech-title,
.rta-support-title,
.rta-promise-title,
.rta-final-title {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: #111827;
    margin: 0 0 16px;
}

.rta-tech-title span,
.rta-support-title span,
.rta-promise-title span {
    color: #5b61ff;
}

.rta-tech-desc,
.rta-support-desc,
.rta-promise-desc,
.rta-final-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #5f6b7a;
    margin: 0;
}

.rta-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rta-tech-card {
    background: #ffffff;
    border: 1px solid #e9eef8;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.rta-tech-card h3 {
    font-size: 20px;
    margin: 0 0 10px;
    color: #111827;
    font-weight: 700;
}

.rta-tech-card p {
    margin: 0;
    color: #5f6b7a;
    line-height: 1.6;
    font-size: 15px;
}

.rta-support-section {
    background: #ffffff;
    padding: 90px 20px;
}

.rta-support-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

.rta-support-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.rta-support-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #374151;
    font-size: 16px;
    line-height: 1.6;
}

.rta-support-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #5b61ff;
    font-weight: 800;
}

.rta-support-box {
    display: grid;
    gap: 20px;
}

.rta-support-mini-card {
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
    border: 1px solid #e5eaf7;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(17, 24, 39, 0.05);
}

.rta-support-mini-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #111827;
    font-weight: 700;
}

.rta-support-mini-card p {
    margin: 0;
    color: #5f6b7a;
    line-height: 1.6;
    font-size: 15px;
}

.rta-promise-section {
    background: #f8faff;
    padding: 90px 20px;
}

.rta-promise-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rta-promise-header {
    max-width: 760px;
    margin-bottom: 40px;
}

.rta-promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.rta-promise-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 24px;
    border: 1px solid #e8edf7;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.rta-promise-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.rta-promise-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #5f6b7a;
}

.rta-final-section {
    background: #ffffff;
    padding: 30px 20px 100px;
}

.rta-final-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rta-final-box {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(17, 24, 39, 0.16);
}

.rta-final-title {
    color: #ffffff;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.rta-final-desc {
    color: rgba(255,255,255,0.78);
    max-width: 760px;
    margin: 0 auto;
}

.rta-final-actions {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.rta-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 15px 28px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.rta-final-btn-primary {
    background: linear-gradient(135deg, #5b61ff 0%, #7b61ff 100%);
    color: #ffffff;
}

.rta-final-btn-outline {
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff;
    background: transparent;
}

.rta-final-btn:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .rta-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rta-support-container {
        grid-template-columns: 1fr;
    }

    .rta-promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rta-tech-title,
    .rta-support-title,
    .rta-promise-title,
    .rta-final-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .rta-tech-grid,
    .rta-promise-grid {
        grid-template-columns: 1fr;
    }

    .rta-final-box {
        padding: 36px 24px;
    }

    .rta-tech-title,
    .rta-support-title,
    .rta-promise-title,
    .rta-final-title {
        font-size: 28px;
    }
}