/*contactus section*/
.inr-cntsc {
    height: 500px;
     position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Overlay */
.inr-cntsc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 92%);
  z-index: 1;
}
.cont-frmsct {
    z-index: 2;
    position: relative;
    padding: 0 90px;
    display: flex;
    align-items: center;
    height: 500px;
}
.inr-cnttitl {
    flex: 0 0 50%;
}
.inr-cnttilt {
    flex: 0 0 50%;
}
.inr-cnttitl h2 {
    color: #10285D;
    font-weight: 600;
}
.inr-cnttitl p {
    font-size: 20px;
    font-weight: 600;
}
.frm-div h3 {
    color: #10285D;
    font-weight: 600;
}
.frm-div {
    background: #FBFBFB;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

        .form-group {
            margin-bottom: 10px;
            animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
            position: relative;
            width: 50%;
        }

        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.15s; }
        .form-group:nth-child(3) { animation-delay: 0.2s; }
        .form-group:nth-child(4) { animation-delay: 0.25s; }
        .form-group:nth-child(5) { animation-delay: 0.3s; }
        .form-group:nth-child(6) { animation-delay: 0.35s; }
        .form-group:nth-child(7) { animation-delay: 0.4s; }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #1a1a1a;
            font-size: 14px;
            letter-spacing: 0.2px;
        }

        .required {
            color: #ff6b6b;
            margin-left: 2px;
        }

        input, select, textarea {
            width: 100%;
            padding: 10px 18px;
            border: 1.5px solid #000;
            border-radius: 50px;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            background: #fafafa;
            color: #1a1a1a;
        }

        input:hover, select:hover, textarea:hover {
            border-color: #d0d0d0;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #ff6b6b;
            background: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(255, 107, 107, 0.12),
                        0 0 0 4px rgba(255, 107, 107, 0.08);
        }

        input::placeholder, textarea::placeholder {
            color: #a0a0a0;
        }

        .form-group .row {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .input-icon {
            position: relative;
        }

        .input-icon::before {
            content: '✉';
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 18px;
            opacity: 0.3;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .input-icon input {
            padding-left: 48px;
        }

        .input-icon input:focus ~ ::before {
            opacity: 0.6;
        }

        .checkbox-group {
           
            background: #fafafa;
            border-radius: 16px;
        }
        .inr-chechbox{
           display: flex;
            align-items: flex-start;
            gap: 3px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            margin-top: 2px;
            accent-color: #ff6b6b;
        }

        .checkbox-group label {
           margin: 0;
            font-weight: 600;
            font-size: 16px;
            color: #000000;
            cursor: pointer;
            line-height: 1.6;
        }

        .submit-btn {
            width: 20%;
            padding: 18px;
            background: #10285D;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            font-family: 'Inter', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(255, 107, 107, 0.35);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .success-message {
            display: none;
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            color: #155724;
            padding: 20px 24px;
            border-radius: 16px;
            margin-top: 24px;
            border: 1.5px solid #b1dfbb;
            font-weight: 500;
        }
        .checkbox-group p {
    margin-top: 4px;
    font-size: 13px;
}
.cnt-sct {
    margin-bottom: 120px;
}