
:root {
            --primary: #015fb3;
            --primary-dark: #015fb3;
            --secondary: #F0F4FF;
            --accent: #FF6B35;
            --text-dark: #1F2937;
            --text-light: #212529;
            --success: #10B981;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        /* ===== HERO SECTION ===== */
        .gsibanner {
            background: url(../images/herobanner-gis.jpg) no-repeat center center/cover;
            overflow: hidden;
            padding: 80px 0;;
        }

       

        .btn-primary-lg {
            background: var(--primary);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            animation: slideInUp 0.8s ease 0.4s both;
        }

        .btn-primary-lg:hover {
            background: var(--primary-dark);
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 82, 204, 0.4);
            color: white;
        }

        .hero-image {
            position: relative;
            z-index: 2;
            animation: slideInRight 0.8s ease 0.2s both;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ===== BENEFITS SECTION ===== */
        .benefits-section {
            padding: 60px 0;
            background: #f9fafb;
        }

        .section-title {
          
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--text-light);
        }
        ul.listy li {
    margin: 0;
    font-size: 0.9rem;
     color: var(--text-light);
        
}

        .benefit-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            margin-bottom: 2rem;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .benefit-card:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0, 82, 204, 0.1);
            transform: translateY(-5px);
        }

        .benefit-icon {
            min-width: 30px;
            width: 30px;
            height: 30px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }

        .benefit-content h4 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .benefit-content p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin: 0;
        }
        img{max-width: 100%; height: auto;}

        .benefit-image {
overflow: hidden;
            border-radius: 16px;
        }

        /* ===== CAPABILITIES SECTION ===== */
        .capabilities-section {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--secondary) 0%, #ffffff 100%);
        }

        .capabilities-container {
            text-align: center;
        }

        .capability-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .capability-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 82, 204, 0.15);
        }
        .capability-content {
            padding: 2rem;
            text-align: left;
        }

        .capability-content h5 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .capability-content p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        /* ===== PROGRAM EXCELLENCE SECTION ===== */
        .program-section {
            padding: 60px 0;
            background: #ffffff;
        }

        .program-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .program-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .program-feature-icon {
            width: 24px;
            height: 24px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }

        .program-feature p {
            margin: 0;
            color: var(--text-dark);
            font-weight: 500;
        }

        .program-image {
            width: 100%;
            height: 350px;
            background: linear-gradient(135deg, #E0E7FF 0%, #F0F4FF 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== INDUSTRY SOLUTIONS ===== */
        .solutions-section {
            padding: 60px 0;
            background: #f9fafb;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .solution-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 82, 204, 0.15);
        }

        .solution-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .solution-content {
            padding: 2rem;
        }

        .solution-content h5 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .solution-content p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .solution-list {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .solution-list li {
            color: var(--text-light);
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .solution-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }

        .btn-learn-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-learn-more:hover {
            color: var(--primary-dark);
            gap: 0.5rem;
        }

        /* ===== DIFFERENTIATORS SECTION ===== */
        .differentiators-section {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--secondary) 0%, #ffffff 100%);
        }

        .differentiator-item {
            padding: 2rem;
            background: white;
            border-left: 4px solid var(--primary);
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .differentiator-item:hover {
            box-shadow: 0 10px 30px rgba(0, 82, 204, 0.1);
            transform: translateX(10px);
        }

        .differentiator-icon {
            width: 40px;
            height: 40px;
            background: var(--secondary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .differentiator-item h5 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .differentiator-item p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin: 0;
        }
        .contact_blok {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
        .studies {
    background: #fff;
}
.form-group {
    position: relative;
}
.contactForm .form-control {
    border: 1px solid #CBCBCB;
    border-radius: 27px;
    font-size: 13px;
}
.contactForm label.error {
    top: 95%;
}
label.error {
    color: red;
    font-size: 12px;
    position: absolute;
    top: 80%;
}
button.btn.blue-btn {
    background: #106CA8;
    color: #fff;
    border-radius: 45px;
    padding: 9px 37px;
}
label.consent-checkbox {
    position: relative;
}
.zinn{z-index: 5;}
.studies{padding-top: 0px !important;}
.studies h2{display: none;}

